From d4f98923b9be7f3e6805573085bf9fedfaff836c Mon Sep 17 00:00:00 2001 From: herbrechtsmeier Date: Sat, 23 Feb 2013 12:58:06 +0100 Subject: [PATCH 001/135] Overwrite host and webroot when forcessl is enabled This patch enables the use of forcessl together with a multiple domains reverse SSL proxy (owncloud/core#1099) which have different hostname and webroot for http and https access. The code assumes that the ssl proxy (https) hostname and webroot is configured via overwritehost and overwritewebroot. --- lib/request.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/request.php b/lib/request.php index 9f74cf9beb5..859276a12a3 100755 --- a/lib/request.php +++ b/lib/request.php @@ -11,9 +11,10 @@ class OC_Request { * @brief Check overwrite condition * @returns true/false */ - private static function isOverwriteCondition() { + private static function isOverwriteCondition($type = '') { $regex = '/' . OC_Config::getValue('overwritecondaddr', '') . '/'; - return $regex === '//' or preg_match($regex, $_SERVER['REMOTE_ADDR']) === 1; + return $regex === '//' or preg_match($regex, $_SERVER['REMOTE_ADDR']) === 1 + or ($type <> 'protocol' and OC_Config::getValue('forcessl', false)); } /** @@ -52,7 +53,7 @@ class OC_Request { * Returns the server protocol. It respects reverse proxy servers and load balancers */ public static function serverProtocol() { - if(OC_Config::getValue('overwriteprotocol', '')<>'' and self::isOverwriteCondition()) { + if(OC_Config::getValue('overwriteprotocol', '')<>'' and self::isOverwriteCondition('protocol')) { return OC_Config::getValue('overwriteprotocol'); } if (isset($_SERVER['HTTP_X_FORWARDED_PROTO'])) { -- GitLab From ecb9d37b55f5c55545a2c0ec475e22d71bd4dcc8 Mon Sep 17 00:00:00 2001 From: herbrechtsmeier Date: Sat, 9 Mar 2013 11:39:20 +0100 Subject: [PATCH 002/135] request.php: add type check to the not empty check of a string The not equal comparison (<>) of a variable with an empty string could lead to false positive results as the compare do not check the type and thereby could not make sure that the checked variable is a string. The usage of the not identical comparison operator (!==) make sure that the variable is a string and not empty. --- lib/request.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/request.php b/lib/request.php index 859276a12a3..4d8380eb9ac 100755 --- a/lib/request.php +++ b/lib/request.php @@ -14,7 +14,7 @@ class OC_Request { private static function isOverwriteCondition($type = '') { $regex = '/' . OC_Config::getValue('overwritecondaddr', '') . '/'; return $regex === '//' or preg_match($regex, $_SERVER['REMOTE_ADDR']) === 1 - or ($type <> 'protocol' and OC_Config::getValue('forcessl', false)); + or ($type !== 'protocol' and OC_Config::getValue('forcessl', false)); } /** @@ -28,7 +28,7 @@ class OC_Request { if(OC::$CLI) { return 'localhost'; } - if(OC_Config::getValue('overwritehost', '')<>'' and self::isOverwriteCondition()) { + if(OC_Config::getValue('overwritehost', '') !== '' and self::isOverwriteCondition()) { return OC_Config::getValue('overwritehost'); } if (isset($_SERVER['HTTP_X_FORWARDED_HOST'])) { @@ -53,7 +53,7 @@ class OC_Request { * Returns the server protocol. It respects reverse proxy servers and load balancers */ public static function serverProtocol() { - if(OC_Config::getValue('overwriteprotocol', '')<>'' and self::isOverwriteCondition('protocol')) { + if(OC_Config::getValue('overwriteprotocol', '') !== '' and self::isOverwriteCondition('protocol')) { return OC_Config::getValue('overwriteprotocol'); } if (isset($_SERVER['HTTP_X_FORWARDED_PROTO'])) { @@ -77,7 +77,7 @@ class OC_Request { */ public static function requestUri() { $uri = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : ''; - if (OC_Config::getValue('overwritewebroot', '') <> '' and self::isOverwriteCondition()) { + if (OC_Config::getValue('overwritewebroot', '') !== '' and self::isOverwriteCondition()) { $uri = self::scriptName() . substr($uri, strlen($_SERVER['SCRIPT_NAME'])); } return $uri; @@ -92,7 +92,7 @@ class OC_Request { */ public static function scriptName() { $name = $_SERVER['SCRIPT_NAME']; - if (OC_Config::getValue('overwritewebroot', '') <> '' and self::isOverwriteCondition()) { + if (OC_Config::getValue('overwritewebroot', '') !== '' and self::isOverwriteCondition()) { $serverroot = str_replace("\\", '/', substr(__DIR__, 0, -4)); $suburi = str_replace("\\", "/", substr(realpath($_SERVER["SCRIPT_FILENAME"]), strlen($serverroot))); $name = OC_Config::getValue('overwritewebroot', '') . $suburi; -- GitLab From 033c94d076e3340a4a472d1b3f61ade5f22009ea Mon Sep 17 00:00:00 2001 From: Valerio Ponte Date: Wed, 20 Mar 2013 22:37:02 +0100 Subject: [PATCH 003/135] fixed xsendfile zip generation race condition --- lib/files.php | 18 ++++++++---------- lib/helper.php | 24 ++++++++++++++---------- 2 files changed, 22 insertions(+), 20 deletions(-) diff --git a/lib/files.php b/lib/files.php index 04ba51d9d24..ab7fa1ed096 100644 --- a/lib/files.php +++ b/lib/files.php @@ -59,11 +59,7 @@ class OC_Files { $executionTime = intval(ini_get('max_execution_time')); set_time_limit(0); $zip = new ZipArchive(); - if ($xsendfile) { - $filename = OC_Helper::tmpFileNoClean('.zip'); - }else{ - $filename = OC_Helper::tmpFile('.zip'); - } + $filename = OC_Helper::tmpFile('.zip'); if ($zip->open($filename, ZIPARCHIVE::CREATE | ZIPARCHIVE::OVERWRITE)!==true) { exit("cannot open <$filename>\n"); } @@ -78,6 +74,9 @@ class OC_Files { } } $zip->close(); + if ($xsendfile) { + $filename = OC_Helper::moveToNoClean($filename); + } $basename = basename($dir); if ($basename) { $name = $basename . '.zip'; @@ -91,17 +90,16 @@ class OC_Files { $executionTime = intval(ini_get('max_execution_time')); set_time_limit(0); $zip = new ZipArchive(); - if ($xsendfile) { - $filename = OC_Helper::tmpFileNoClean('.zip'); - }else{ - $filename = OC_Helper::tmpFile('.zip'); - } + $filename = OC_Helper::tmpFile('.zip'); if ($zip->open($filename, ZIPARCHIVE::CREATE | ZIPARCHIVE::OVERWRITE)!==true) { exit("cannot open <$filename>\n"); } $file = $dir . '/' . $files; self::zipAddDir($file, $zip); $zip->close(); + if ($xsendfile) { + $filename = OC_Helper::moveToNoClean($filename); + } $name = $files . '.zip'; set_time_limit($executionTime); } else { diff --git a/lib/helper.php b/lib/helper.php index 73484ad913f..d178c3dc50b 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -541,13 +541,15 @@ class OC_Helper { } /** - * create a temporary file with an unique filename. It will not be deleted - * automatically - * @param string $postfix - * @return string + * move a file to oc-noclean temp dir + * @param string $filename + * @return mixed * */ - public static function tmpFileNoClean($postfix='') { + public static function moveToNoClean($filename='') { + if ($filename == '') { + return false; + } $tmpDirNoClean=get_temp_dir().'/oc-noclean/'; if (!file_exists($tmpDirNoClean) || !is_dir($tmpDirNoClean)) { if (file_exists($tmpDirNoClean)) { @@ -555,10 +557,12 @@ class OC_Helper { } mkdir($tmpDirNoClean); } - $file=$tmpDirNoClean.md5(time().rand()).$postfix; - $fh=fopen($file, 'w'); - fclose($fh); - return $file; + $newname=$tmpDirNoClean.basename($filename); + if (rename($filename, $newname)) { + return $newname; + } else { + return false; + } } /** @@ -597,7 +601,7 @@ class OC_Helper { } /** - * remove all files created by self::tmpFileNoClean + * remove all files in PHP /oc-noclean temp dir */ public static function cleanTmpNoClean() { $tmpDirNoCleanFile=get_temp_dir().'/oc-noclean/'; -- GitLab From 16b513e4dc4fd65e77da7be37e99fb5c00656704 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Tue, 9 Apr 2013 12:22:55 +0200 Subject: [PATCH 004/135] added correct check for gd and check for php-intl --- lib/util.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/util.php b/lib/util.php index 37fb1bd9d06..348163d9a29 100755 --- a/lib/util.php +++ b/lib/util.php @@ -247,11 +247,16 @@ class OC_Util { 'hint'=>'Please ask your server administrator to install the module.'); $web_server_restart= false; } - if(!function_exists('imagepng')) { + if(!extension_loaded('gd') || !function_exists('gd_info')) { $errors[]=array('error'=>'PHP module GD is not installed.', 'hint'=>'Please ask your server administrator to install the module.'); $web_server_restart= false; } + if(!class_exists('Locale')) { + $errors[]=array('error'=>'PHP module intl is not installed.', + 'hint'=>'Please ask your server administrator to install the module.'); + $web_server_restart= false; + } if(!function_exists('gzencode')) { $errors[]=array('error'=>'PHP module zlib is not installed.', 'hint'=>'Please ask your server administrator to install the module.'); -- GitLab From 8a504592230bbe97971ddefe69377669aa276898 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 17 Apr 2013 01:08:27 +0200 Subject: [PATCH 005/135] Fix OC_User::getDisplaynames when using numeric user id's fixes #2948 --- lib/user.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/user.php b/lib/user.php index b19af940795..226b716188d 100644 --- a/lib/user.php +++ b/lib/user.php @@ -527,7 +527,7 @@ class OC_User { foreach (self::$_usedBackends as $backend) { $backendDisplayNames = $backend->getDisplayNames($search, $limit, $offset); if (is_array($backendDisplayNames)) { - $displayNames = array_merge($displayNames, $backendDisplayNames); + $displayNames = $displayNames + $backendDisplayNames; } } asort($displayNames); -- GitLab From 6a5f5ce1579ed27649c8537bfdeb67e97f531289 Mon Sep 17 00:00:00 2001 From: AndreasErgenzinger Date: Wed, 17 Apr 2013 10:29:32 +0200 Subject: [PATCH 006/135] merge translations with those from theme --- lib/l10n.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/l10n.php b/lib/l10n.php index 315e326b292..7aef653ef79 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -125,6 +125,15 @@ class OC_L10N{ include strip_tags($i18ndir).strip_tags($lang).'.php'; if(isset($TRANSLATIONS) && is_array($TRANSLATIONS)) { $this->translations = $TRANSLATIONS; + //merge with translations from theme + $theme = OC_Config::getValue( "theme" ); + if (!is_null($theme)) { + $transFile = OC::$SERVERROOT.'/themes/'.$theme.substr($transFile, strlen(OC::$SERVERROOT)); + if (file_exists($transFile)) { + include $transFile; + $this->translations = array_merge($this->translations, $TRANSLATIONS); + } + } } } -- GitLab From 7611d218dfd4a8c1e8a36e9032c68a586c55b5df Mon Sep 17 00:00:00 2001 From: AndreasErgenzinger Date: Wed, 17 Apr 2013 10:34:29 +0200 Subject: [PATCH 007/135] merge translations with those from theme --- lib/l10n.php | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/lib/l10n.php b/lib/l10n.php index 7aef653ef79..7b81d51b5e2 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -122,18 +122,19 @@ class OC_L10N{ ) && file_exists($i18ndir.$lang.'.php')) { // Include the file, save the data from $CONFIG - include strip_tags($i18ndir).strip_tags($lang).'.php'; + $transFile = strip_tags($i18ndir).strip_tags($lang).'.php'; + include $transFile; if(isset($TRANSLATIONS) && is_array($TRANSLATIONS)) { $this->translations = $TRANSLATIONS; //merge with translations from theme - $theme = OC_Config::getValue( "theme" ); - if (!is_null($theme)) { - $transFile = OC::$SERVERROOT.'/themes/'.$theme.substr($transFile, strlen(OC::$SERVERROOT)); - if (file_exists($transFile)) { - include $transFile; - $this->translations = array_merge($this->translations, $TRANSLATIONS); - } - } + $theme = OC_Config::getValue( "theme" ); + if (!is_null($theme)) { + $transFile = OC::$SERVERROOT.'/themes/'.$theme.substr($transFile, strlen(OC::$SERVERROOT)); + if (file_exists($transFile)) { + include $transFile; + $this->translations = array_merge($this->translations, $TRANSLATIONS); + } + } } } -- GitLab From eef1cf529ed03754798a2329fd29824be44cecda Mon Sep 17 00:00:00 2001 From: AndreasErgenzinger Date: Wed, 17 Apr 2013 10:41:07 +0200 Subject: [PATCH 008/135] additional safety checks --- lib/l10n.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/l10n.php b/lib/l10n.php index 7b81d51b5e2..d35ce5fed14 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -132,7 +132,9 @@ class OC_L10N{ $transFile = OC::$SERVERROOT.'/themes/'.$theme.substr($transFile, strlen(OC::$SERVERROOT)); if (file_exists($transFile)) { include $transFile; - $this->translations = array_merge($this->translations, $TRANSLATIONS); + if (isset($TRANSLATIONS) && is_array($TRANSLATIONS)) { + $this->translations = array_merge($this->translations, $TRANSLATIONS); + } } } } -- GitLab From 79218be1d2214095eae1272eac7559a67a55a786 Mon Sep 17 00:00:00 2001 From: kondou Date: Thu, 18 Apr 2013 14:17:37 +0200 Subject: [PATCH 009/135] Priorize common languages. --- settings/js/personal.js | 4 ++++ settings/personal.php | 15 ++++++++++++--- settings/templates/personal.php | 7 ++++++- 3 files changed, 22 insertions(+), 4 deletions(-) diff --git a/settings/js/personal.js b/settings/js/personal.js index 7c879bcafe9..271de1599d9 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -88,6 +88,10 @@ $(document).ready(function(){ $("#languageinput").chosen(); $("#languageinput").change( function(){ + // the divider is no language + if ($("#languageinput option").hasClass('divider')) { + return false; + } // Serialize the data var post = $( "#languageinput" ).serialize(); // Ajax foo diff --git a/settings/personal.php b/settings/personal.php index 9bbc66c9b7f..57a7e4ee9cd 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -22,8 +22,14 @@ $email=OC_Preferences::getValue(OC_User::getUser(), 'settings', 'email', ''); $userLang=OC_Preferences::getValue( OC_User::getUser(), 'core', 'lang', OC_L10N::findLanguage() ); $languageCodes=OC_L10N::findAvailableLanguages(); +// array of common languages +$commonlangcodes = array( + 'en', 'es', 'fr', 'de', 'de_DE', 'ja_JP', 'nl', 'it', 'pt_BR', 'pt_PT', 'da', 'fi_FI', 'nb_NO', 'sv', 'zh_CN', 'ko' +); + $languageNames=include 'languageCodes.php'; $languages=array(); +$commonlanguages = array(); foreach($languageCodes as $lang) { $l=OC_L10N::get('settings', $lang); if(substr($l->t('__language_name__'), 0, 1)!='_') {//first check if the language name is in the translation file @@ -34,8 +40,12 @@ foreach($languageCodes as $lang) { $ln=array('code'=>$lang, 'name'=>$lang); } + // put apropriate languages into apropriate arrays, to print them sorted + // used language -> common languages -> divider -> other languages if ($lang === $userLang) { $userLang = $ln; + } elseif (in_array($lang, $commonlangcodes)) { + $commonlanguages[]=$ln; } else { $languages[]=$ln; } @@ -46,9 +56,6 @@ usort( $languages, function ($a, $b) { return strcmp($a['name'], $b['name']); }); -//put the current language in the front -array_unshift($languages, $userLang); - //links to clients $clients = array( 'desktop' => OC_Config::getValue('customclient_desktop', 'http://owncloud.org/sync-clients/'), @@ -64,6 +71,8 @@ $tmpl->assign('usage_relative', $storageInfo['relative']); $tmpl->assign('clients', $clients); $tmpl->assign('email', $email); $tmpl->assign('languages', $languages); +$tmpl->assign('commonlanguages', $commonlanguages); +$tmpl->assign('activelanguage', $userLang); $tmpl->assign('passwordChangeSupported', OC_User::canUserChangePassword(OC_User::getUser())); $tmpl->assign('displayNameChangeSupported', OC_User::canUserChangeDisplayName(OC_User::getUser())); $tmpl->assign('displayName', OC_User::getDisplayName()); diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 03073069ab7..c0fcf5c1bd6 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -78,11 +78,16 @@ if($_['displayNameChangeSupported']) {
t('Language'));?> - t('Help translate'));?>
-- GitLab From 7a2be0c5dc487d2c2e3dbef67cfa1c5cf2af462e Mon Sep 17 00:00:00 2001 From: kondou Date: Fri, 19 Apr 2013 00:39:42 +0200 Subject: [PATCH 010/135] Make divider not selectable Very hacky --- settings/js/personal.js | 7 +++---- settings/templates/personal.php | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/settings/js/personal.js b/settings/js/personal.js index 271de1599d9..db18b2861ab 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -86,12 +86,11 @@ $(document).ready(function(){ }); $("#languageinput").chosen(); + // Show only the not selectable optgroup + // Choosen only shows optgroup-labels if there are options in the optgroup + $(".languagedivider").remove(); $("#languageinput").change( function(){ - // the divider is no language - if ($("#languageinput option").hasClass('divider')) { - return false; - } // Serialize the data var post = $( "#languageinput" ).serialize(); // Ajax foo diff --git a/settings/templates/personal.php b/settings/templates/personal.php index c0fcf5c1bd6..67307872058 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -82,7 +82,7 @@ if($_['displayNameChangeSupported']) { - + -- GitLab From 10be42f5b7b17ca55c242960885a9b50e217af3f Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 19 Apr 2013 15:03:59 +0200 Subject: [PATCH 011/135] Cache: only look for child entires when doing a move operation when moving a folder --- lib/files/cache/cache.php | 27 +++++++++++++++------------ tests/lib/files/cache/cache.php | 7 ++++--- 2 files changed, 19 insertions(+), 15 deletions(-) diff --git a/lib/files/cache/cache.php b/lib/files/cache/cache.php index 71b70abe3fe..d30c5cd16ed 100644 --- a/lib/files/cache/cache.php +++ b/lib/files/cache/cache.php @@ -205,7 +205,7 @@ class Cache { . ' VALUES(' . implode(', ', $valuesPlaceholder) . ')'); $result = $query->execute($params); if (\OC_DB::isError($result)) { - \OCP\Util::writeLog('cache', 'Insert to cache failed: '.$result, \OCP\Util::ERROR); + \OCP\Util::writeLog('cache', 'Insert to cache failed: ' . $result, \OCP\Util::ERROR); } return (int)\OC_DB::insertid('*PREFIX*filecache'); @@ -328,19 +328,22 @@ class Cache { * @param string $target */ public function move($source, $target) { - $sourceId = $this->getId($source); + $sourceData = $this->get($source); + $sourceId = $sourceData['fileid']; $newParentId = $this->getParentId($target); - //find all child entries - $query = \OC_DB::prepare('SELECT `path`, `fileid` FROM `*PREFIX*filecache` WHERE `path` LIKE ?'); - $result = $query->execute(array($source . '/%')); - $childEntries = $result->fetchAll(); - $sourceLength = strlen($source); - $query = \OC_DB::prepare('UPDATE `*PREFIX*filecache` SET `path` = ?, `path_hash` = ? WHERE `fileid` = ?'); - - foreach ($childEntries as $child) { - $targetPath = $target . substr($child['path'], $sourceLength); - $query->execute(array($targetPath, md5($targetPath), $child['fileid'])); + if ($sourceData['mimetype'] === 'httpd/unix-directory') { + //find all child entries + $query = \OC_DB::prepare('SELECT `path`, `fileid` FROM `*PREFIX*filecache` WHERE `path` LIKE ?'); + $result = $query->execute(array($source . '/%')); + $childEntries = $result->fetchAll(); + $sourceLength = strlen($source); + $query = \OC_DB::prepare('UPDATE `*PREFIX*filecache` SET `path` = ?, `path_hash` = ? WHERE `fileid` = ?'); + + foreach ($childEntries as $child) { + $targetPath = $target . substr($child['path'], $sourceLength); + $query->execute(array($targetPath, md5($targetPath), $child['fileid'])); + } } $query = \OC_DB::prepare('UPDATE `*PREFIX*filecache` SET `path` = ?, `path_hash` = ?, `name` = ?, `parent` =?' diff --git a/tests/lib/files/cache/cache.php b/tests/lib/files/cache/cache.php index 250842805e5..4051a6e234b 100644 --- a/tests/lib/files/cache/cache.php +++ b/tests/lib/files/cache/cache.php @@ -162,10 +162,11 @@ class Cache extends \PHPUnit_Framework_TestCase { $file4 = 'folder/foo/1'; $file5 = 'folder/foo/2'; $data = array('size' => 100, 'mtime' => 50, 'mimetype' => 'foo/bar'); + $folderData = array('size' => 100, 'mtime' => 50, 'mimetype' => 'httpd/unix-directory'); - $this->cache->put($file1, $data); - $this->cache->put($file2, $data); - $this->cache->put($file3, $data); + $this->cache->put($file1, $folderData); + $this->cache->put($file2, $folderData); + $this->cache->put($file3, $folderData); $this->cache->put($file4, $data); $this->cache->put($file5, $data); -- GitLab From 15dae6198fc4855519a0ed2347c29485a061f6aa Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sat, 20 Apr 2013 16:38:03 +0200 Subject: [PATCH 012/135] Cache: add a backgroundjob to check for external changes to the filesystem --- apps/files/appinfo/app.php | 4 +- lib/files/cache/backgroundwatcher.php | 73 +++++++++++++++++++++++++++ lib/files/cache/cache.php | 1 + lib/files/cache/permissions.php | 15 ++++++ tests/lib/files/cache/permissions.php | 6 ++- 5 files changed, 96 insertions(+), 3 deletions(-) create mode 100644 lib/files/cache/backgroundwatcher.php diff --git a/apps/files/appinfo/app.php b/apps/files/appinfo/app.php index 703b1c7cb6c..05ab1722b3e 100644 --- a/apps/files/appinfo/app.php +++ b/apps/files/appinfo/app.php @@ -18,4 +18,6 @@ OC_Search::registerProvider('OC_Search_Provider_File'); \OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Updater', 'writeHook'); \OC_Hook::connect('OC_Filesystem', 'post_touch', '\OC\Files\Cache\Updater', 'touchHook'); \OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Updater', 'deleteHook'); -\OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook'); \ No newline at end of file +\OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook'); + +\OC_BackgroundJob_RegularTask::register('\OC\Files\Cache\BackgroundWatcher', 'checkNext'); diff --git a/lib/files/cache/backgroundwatcher.php b/lib/files/cache/backgroundwatcher.php new file mode 100644 index 00000000000..3bcd447f53a --- /dev/null +++ b/lib/files/cache/backgroundwatcher.php @@ -0,0 +1,73 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Files\Cache; + +use \OC\Files\Mount; +use \OC\Files\Filesystem; + +class BackgroundWatcher { + static private function checkUpdate($id) { + $cacheItem = Cache::getById($id); + if (is_null($cacheItem)) { + return; + } + list($storageId, $internalPath) = $cacheItem; + $mounts = Mount::findByStorageId($storageId); + + if (count($mounts) === 0) { + //if the storage we need isn't mounted on default, try to find a user that has access to the storage + $permissionsCache = new Permissions($storageId); + $users = $permissionsCache->getUsers($id); + if (count($users) === 0) { + return; + } + Filesystem::initMountPoints($users[0]); + $mounts = Mount::findByStorageId($storageId); + if (count($mounts) === 0) { + return; + } + } + $storage = $mounts[0]->getStorage(); + $watcher = new Watcher($storage); + $watcher->checkUpdate($internalPath); + } + + /** + * get the next fileid in the cache + * + * @param int $previous + * @return int + */ + static private function getNextFileId($previous) { + $query = \OC_DB::prepare('SELECT `fileid` FROM `*PREFIX*filecache` WHERE `fileid` > ? ORDER BY `fileid` ASC', 1); + $result = $query->execute(array($previous)); + if ($row = $result->fetchRow()) { + return $row['fileid']; + } else { + return 0; + } + } + + static public function checkNext() { + $previous = \OC_Appconfig::getValue('files', 'backgroundwatcher_previous', 0); + $next = self::getNextFileId($previous); + error_log($next); + \OC_Appconfig::setValue('files', 'backgroundwatcher_previous', $next); + self::checkUpdate($next); + } + + static public function checkAll() { + $previous = 0; + $next = 1; + while ($next != 0) { + $next = self::getNextFileId($previous); + self::checkUpdate($next); + } + } +} diff --git a/lib/files/cache/cache.php b/lib/files/cache/cache.php index 71b70abe3fe..3ed3490f29b 100644 --- a/lib/files/cache/cache.php +++ b/lib/files/cache/cache.php @@ -517,6 +517,7 @@ class Cache { /** * get the storage id of the storage for a file and the internal path of the file * + * @param int $id * @return array, first element holding the storage id, second the path */ static public function getById($id) { diff --git a/lib/files/cache/permissions.php b/lib/files/cache/permissions.php index a5c9c144054..faa5ff5eacc 100644 --- a/lib/files/cache/permissions.php +++ b/lib/files/cache/permissions.php @@ -107,4 +107,19 @@ class Permissions { $query->execute(array($fileId, $user)); } } + + /** + * get the list of users which have permissions stored for a file + * + * @param int $fileId + */ + public function getUsers($fileId) { + $query = \OC_DB::prepare('SELECT `user` FROM `*PREFIX*permissions` WHERE `fileid` = ?'); + $result = $query->execute(array($fileId)); + $users = array(); + while ($row = $result->fetchRow()) { + $users[] = $row['user']; + } + return $users; + } } diff --git a/tests/lib/files/cache/permissions.php b/tests/lib/files/cache/permissions.php index 56dbbc4518e..7e6e11e2eb2 100644 --- a/tests/lib/files/cache/permissions.php +++ b/tests/lib/files/cache/permissions.php @@ -14,8 +14,8 @@ class Permissions extends \PHPUnit_Framework_TestCase { */ private $permissionsCache; - function setUp(){ - $this->permissionsCache=new \OC\Files\Cache\Permissions('dummy'); + function setUp() { + $this->permissionsCache = new \OC\Files\Cache\Permissions('dummy'); } function testSimple() { @@ -23,8 +23,10 @@ class Permissions extends \PHPUnit_Framework_TestCase { $user = uniqid(); $this->assertEquals(-1, $this->permissionsCache->get(1, $user)); + $this->assertNotContains($user, $this->permissionsCache->getUsers(1)); $this->permissionsCache->set(1, $user, 1); $this->assertEquals(1, $this->permissionsCache->get(1, $user)); + $this->assertContains($user, $this->permissionsCache->getUsers(1)); $this->assertEquals(-1, $this->permissionsCache->get(2, $user)); $this->assertEquals(-1, $this->permissionsCache->get(1, $user . '2')); -- GitLab From eed5e9f804c0aac0467e1f502d86266ea232f350 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sat, 20 Apr 2013 16:56:47 +0200 Subject: [PATCH 013/135] Cache: check one folder and one file each time the backgroundwatcher runs Because there are usually way less folders than files it walks trought the list of all folder quicker, this causes new files to be detected quicker --- lib/files/cache/backgroundwatcher.php | 47 ++++++++++++++++++++++----- 1 file changed, 39 insertions(+), 8 deletions(-) diff --git a/lib/files/cache/backgroundwatcher.php b/lib/files/cache/backgroundwatcher.php index 3bcd447f53a..7549745e7d7 100644 --- a/lib/files/cache/backgroundwatcher.php +++ b/lib/files/cache/backgroundwatcher.php @@ -12,6 +12,18 @@ use \OC\Files\Mount; use \OC\Files\Filesystem; class BackgroundWatcher { + static $folderMimetype = null; + + static private function getFolderMimetype() { + if (!is_null(self::$folderMimetype)) { + return self::$folderMimetype; + } + $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*mimetypes` WHERE `mimetype` = ?'); + $result = $query->execute(array('httpd/unix-directory')); + $row = $result->fetchRow(); + return $row['id']; + } + static private function checkUpdate($id) { $cacheItem = Cache::getById($id); if (is_null($cacheItem)) { @@ -42,10 +54,15 @@ class BackgroundWatcher { * get the next fileid in the cache * * @param int $previous + * @param bool $folder * @return int */ - static private function getNextFileId($previous) { - $query = \OC_DB::prepare('SELECT `fileid` FROM `*PREFIX*filecache` WHERE `fileid` > ? ORDER BY `fileid` ASC', 1); + static private function getNextFileId($previous, $folder) { + if ($folder) { + $query = \OC_DB::prepare('SELECT `fileid` FROM `*PREFIX*filecache` WHERE `fileid` > ? AND mimetype = ' . self::getFolderMimetype() . ' ORDER BY `fileid` ASC', 1); + } else { + $query = \OC_DB::prepare('SELECT `fileid` FROM `*PREFIX*filecache` WHERE `fileid` > ? AND mimetype != ' . self::getFolderMimetype() . ' ORDER BY `fileid` ASC', 1); + } $result = $query->execute(array($previous)); if ($row = $result->fetchRow()) { return $row['fileid']; @@ -55,18 +72,32 @@ class BackgroundWatcher { } static public function checkNext() { - $previous = \OC_Appconfig::getValue('files', 'backgroundwatcher_previous', 0); - $next = self::getNextFileId($previous); - error_log($next); - \OC_Appconfig::setValue('files', 'backgroundwatcher_previous', $next); - self::checkUpdate($next); + // check both 1 file and 1 folder, this way new files are detected quicker because there are less folders than files usually + $previousFile = \OC_Appconfig::getValue('files', 'backgroundwatcher_previous_file', 0); + $previousFolder = \OC_Appconfig::getValue('files', 'backgroundwatcher_previous_folder', 0); + $nextFile = self::getNextFileId($previousFile, false); + $nextFolder = self::getNextFileId($previousFolder, true); + \OC_Appconfig::setValue('files', 'backgroundwatcher_previous_file', $nextFile); + \OC_Appconfig::setValue('files', 'backgroundwatcher_previous_folder', $nextFolder); + if ($nextFile > 0) { + self::checkUpdate($nextFile); + } + if ($nextFolder > 0) { + self::checkUpdate($nextFolder); + } } static public function checkAll() { $previous = 0; $next = 1; while ($next != 0) { - $next = self::getNextFileId($previous); + $next = self::getNextFileId($previous, true); + self::checkUpdate($next); + } + $previous = 0; + $next = 1; + while ($next != 0) { + $next = self::getNextFileId($previous, false); self::checkUpdate($next); } } -- GitLab From b8fe7025da4b0b6f0fde9dde4553d0b29eefb10c Mon Sep 17 00:00:00 2001 From: kondou Date: Sat, 20 Apr 2013 22:45:17 +0200 Subject: [PATCH 014/135] =?UTF-8?q?Use=20!=3D=3D=20and=20=3D=3D=3D=20in=20?= =?UTF-8?q?user=5Fldap=20app=20=E2=80=93=20Part=201?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/user_ldap/appinfo/app.php | 2 +- apps/user_ldap/appinfo/install.php | 2 +- apps/user_ldap/appinfo/update.php | 4 ++-- apps/user_ldap/group_ldap.php | 12 ++++++------ apps/user_ldap/js/settings.js | 18 +++++++++--------- 5 files changed, 19 insertions(+), 19 deletions(-) diff --git a/apps/user_ldap/appinfo/app.php b/apps/user_ldap/appinfo/app.php index 89410b5ef07..81eaa0404b7 100644 --- a/apps/user_ldap/appinfo/app.php +++ b/apps/user_ldap/appinfo/app.php @@ -24,7 +24,7 @@ OCP\App::registerAdmin('user_ldap', 'settings'); $configPrefixes = OCA\user_ldap\lib\Helper::getServerConfigurationPrefixes(true); -if(count($configPrefixes) == 1) { +if(count($configPrefixes) === 1) { $connector = new OCA\user_ldap\lib\Connection($configPrefixes[0]); $userBackend = new OCA\user_ldap\USER_LDAP(); $userBackend->setConnector($connector); diff --git a/apps/user_ldap/appinfo/install.php b/apps/user_ldap/appinfo/install.php index 378957ec409..c0c33a25c75 100644 --- a/apps/user_ldap/appinfo/install.php +++ b/apps/user_ldap/appinfo/install.php @@ -1,6 +1,6 @@ getUUID($newDN); //fix home folder to avoid new ones depending on the configuration $userBE->getHome($dn['owncloud_name']); diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php index 432ddd215db..04ff392f920 100644 --- a/apps/user_ldap/group_ldap.php +++ b/apps/user_ldap/group_ldap.php @@ -66,7 +66,7 @@ class GROUP_LDAP extends lib\Access implements \OCP\GroupInterface { //extra work if we don't get back user DNs //TODO: this can be done with one LDAP query - if(strtolower($this->connection->ldapGroupMemberAssocAttr) == 'memberuid') { + if(strtolower($this->connection->ldapGroupMemberAssocAttr) === 'memberuid') { $dns = array(); foreach($members as $mid) { $filter = str_replace('%uid', $mid, $this->connection->ldapLoginFilter); @@ -108,11 +108,11 @@ class GROUP_LDAP extends lib\Access implements \OCP\GroupInterface { } //uniqueMember takes DN, memberuid the uid, so we need to distinguish - if((strtolower($this->connection->ldapGroupMemberAssocAttr) == 'uniquemember') - || (strtolower($this->connection->ldapGroupMemberAssocAttr) == 'member') + if((strtolower($this->connection->ldapGroupMemberAssocAttr) === 'uniquemember') + || (strtolower($this->connection->ldapGroupMemberAssocAttr) === 'member') ) { $uid = $userDN; - } else if(strtolower($this->connection->ldapGroupMemberAssocAttr) == 'memberuid') { + } else if(strtolower($this->connection->ldapGroupMemberAssocAttr) === 'memberuid') { $result = $this->readAttribute($userDN, 'uid'); $uid = $result[0]; } else { @@ -157,7 +157,7 @@ class GROUP_LDAP extends lib\Access implements \OCP\GroupInterface { return $groupUsers; } - if($limit == -1) { + if($limit === -1) { $limit = null; } $groupDN = $this->groupname2dn($gid); @@ -175,7 +175,7 @@ class GROUP_LDAP extends lib\Access implements \OCP\GroupInterface { } $groupUsers = array(); - $isMemberUid = (strtolower($this->connection->ldapGroupMemberAssocAttr) == 'memberuid'); + $isMemberUid = (strtolower($this->connection->ldapGroupMemberAssocAttr) === 'memberuid'); foreach($members as $member) { if($isMemberUid) { //we got uids, need to get their DNs to 'tranlsate' them to usernames diff --git a/apps/user_ldap/js/settings.js b/apps/user_ldap/js/settings.js index e34849ec887..9279dc0203b 100644 --- a/apps/user_ldap/js/settings.js +++ b/apps/user_ldap/js/settings.js @@ -8,13 +8,13 @@ var LdapConfiguration = { OC.filePath('user_ldap','ajax','getConfiguration.php'), $('#ldap_serverconfig_chooser').serialize(), function (result) { - if(result.status == 'success') { + if(result.status === 'success') { $.each(result.configuration, function(configkey, configvalue) { elementID = '#'+configkey; //deal with Checkboxes if($(elementID).is('input[type=checkbox]')) { - if(configvalue == 1) { + if(configvalue === 1) { $(elementID).attr('checked', 'checked'); } else { $(elementID).removeAttr('checked'); @@ -37,13 +37,13 @@ var LdapConfiguration = { resetDefaults: function() { $('#ldap').find('input[type=text], input[type=number], input[type=password], textarea, select').each(function() { - if($(this).attr('id') == 'ldap_serverconfig_chooser') { + if($(this).attr('id') === 'ldap_serverconfig_chooser') { return; } $(this).val($(this).attr('data-default')); }); $('#ldap').find('input[type=checkbox]').each(function() { - if($(this).attr('data-default') == 1) { + if($(this).attr('data-default') === 1) { $(this).attr('checked', 'checked'); } else { $(this).removeAttr('checked'); @@ -56,7 +56,7 @@ var LdapConfiguration = { OC.filePath('user_ldap','ajax','deleteConfiguration.php'), $('#ldap_serverconfig_chooser').serialize(), function (result) { - if(result.status == 'success') { + if(result.status === 'success') { $('#ldap_serverconfig_chooser option:selected').remove(); $('#ldap_serverconfig_chooser option:first').select(); LdapConfiguration.refreshConfig(); @@ -74,7 +74,7 @@ var LdapConfiguration = { $.post( OC.filePath('user_ldap','ajax','getNewServerConfigPrefix.php'), function (result) { - if(result.status == 'success') { + if(result.status === 'success') { if(doNotAsk) { LdapConfiguration.resetDefaults(); } else { @@ -115,7 +115,7 @@ $(document).ready(function() { OC.filePath('user_ldap','ajax','testConfiguration.php'), $('#ldap').serialize(), function (result) { - if (result.status == 'success') { + if (result.status === 'success') { OC.dialogs.alert( result.message, t('user_ldap', 'Connection test succeeded') @@ -150,7 +150,7 @@ $(document).ready(function() { $('#ldap').serialize(), function (result) { bgcolor = $('#ldap_submit').css('background'); - if (result.status == 'success') { + if (result.status === 'success') { //the dealing with colors is a but ugly, but the jQuery version in use has issues with rgba colors $('#ldap_submit').css('background', '#fff'); $('#ldap_submit').effect('highlight', {'color':'#A8FA87'}, 5000, function() { @@ -168,7 +168,7 @@ $(document).ready(function() { $('#ldap_serverconfig_chooser').change(function(event) { value = $('#ldap_serverconfig_chooser option:selected:first').attr('value'); - if(value == 'NEW') { + if(value === 'NEW') { LdapConfiguration.addConfiguration(false); } else { LdapConfiguration.refreshConfig(); -- GitLab From d6b13ccd12e48257e0d085d190f57b159795c6dc Mon Sep 17 00:00:00 2001 From: kondou Date: Sat, 20 Apr 2013 22:45:50 +0200 Subject: [PATCH 015/135] =?UTF-8?q?Use=20!=3D=3D=20and=20=3D=3D=3D=20in=20?= =?UTF-8?q?user=5Fldap=20app=20=E2=80=93=20Part=202?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/user_ldap/lib/access.php | 22 +++++++++++----------- apps/user_ldap/lib/connection.php | 14 +++++++------- apps/user_ldap/lib/helper.php | 2 +- apps/user_ldap/templates/settings.php | 4 ++-- apps/user_ldap/user_ldap.php | 4 ++-- 5 files changed, 23 insertions(+), 23 deletions(-) diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 6d32e9b2ab0..69d07b6bb00 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -87,7 +87,7 @@ abstract class Access { for($i=0;$i<$result[$attr]['count'];$i++) { if($this->resemblesDN($attr)) { $values[] = $this->sanitizeDN($result[$attr][$i]); - } elseif(strtolower($attr) == 'objectguid' || strtolower($attr) == 'guid') { + } elseif(strtolower($attr) === 'objectguid' || strtolower($attr) === 'guid') { $values[] = $this->convertObjectGUID2Str($result[$attr][$i]); } else { $values[] = $result[$attr][$i]; @@ -462,7 +462,7 @@ abstract class Access { while($row = $res->fetchRow()) { $usedNames[] = $row['owncloud_name']; } - if(!($usedNames) || count($usedNames) == 0) { + if(!($usedNames) || count($usedNames) === 0) { $lastNo = 1; //will become name_2 } else { natsort($usedNames); @@ -550,7 +550,7 @@ abstract class Access { $sqlAdjustment = ''; $dbtype = \OCP\Config::getSystemValue('dbtype'); - if($dbtype == 'mysql') { + if($dbtype === 'mysql') { $sqlAdjustment = 'FROM DUAL'; } @@ -574,7 +574,7 @@ abstract class Access { $insRows = $res->numRows(); - if($insRows == 0) { + if($insRows === 0) { return false; } @@ -656,7 +656,7 @@ abstract class Access { $linkResources = array_pad(array(), count($base), $link_resource); $sr = ldap_search($linkResources, $base, $filter, $attr); $error = ldap_errno($link_resource); - if(!is_array($sr) || $error != 0) { + if(!is_array($sr) || $error !== 0) { \OCP\Util::writeLog('user_ldap', 'Error when searching: '.ldap_error($link_resource).' code '.ldap_errno($link_resource), \OCP\Util::ERROR); @@ -724,7 +724,7 @@ abstract class Access { foreach($attr as $key) { $key = mb_strtolower($key, 'UTF-8'); if(isset($item[$key])) { - if($key != 'dn') { + if($key !== 'dn') { $selection[$i][$key] = $this->resemblesDN($key) ? $this->sanitizeDN($item[$key][0]) : $item[$key][0]; @@ -816,7 +816,7 @@ abstract class Access { private function combineFilter($filters, $operator) { $combinedFilter = '('.$operator; foreach($filters as $filter) { - if($filter[0] != '(') { + if($filter[0] !== '(') { $filter = '('.$filter.')'; } $combinedFilter.=$filter; @@ -857,7 +857,7 @@ abstract class Access { private function getFilterPartForSearch($search, $searchAttributes, $fallbackAttribute) { $filter = array(); $search = empty($search) ? '*' : '*'.$search.'*'; - if(!is_array($searchAttributes) || count($searchAttributes) == 0) { + if(!is_array($searchAttributes) || count($searchAttributes) === 0) { if(empty($fallbackAttribute)) { return ''; } @@ -867,7 +867,7 @@ abstract class Access { $filter[] = $attribute . '=' . $search; } } - if(count($filter) == 1) { + if(count($filter) === 1) { return '('.$filter[0].')'; } return $this->combineFilterWithOr($filter); @@ -893,7 +893,7 @@ abstract class Access { * @returns true on success, false otherwise */ private function detectUuidAttribute($dn, $force = false) { - if(($this->connection->ldapUuidAttribute != 'auto') && !$force) { + if(($this->connection->ldapUuidAttribute !== 'auto') && !$force) { return true; } @@ -1007,7 +1007,7 @@ abstract class Access { * @returns string containing the key or empty if none is cached */ private function getPagedResultCookie($base, $filter, $limit, $offset) { - if($offset == 0) { + if($offset === 0) { return ''; } $offset -= $limit; diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php index 20784570e93..f3946a0d613 100644 --- a/apps/user_ldap/lib/connection.php +++ b/apps/user_ldap/lib/connection.php @@ -99,7 +99,7 @@ class Connection { public function __set($name, $value) { $changed = false; //only few options are writable - if($name == 'ldapUuidAttribute') { + if($name === 'ldapUuidAttribute') { \OCP\Util::writeLog('user_ldap', 'Set config ldapUuidAttribute to '.$value, \OCP\Util::DEBUG); $this->config[$name] = $value; if(!empty($this->configID)) { @@ -321,9 +321,9 @@ class Connection { $params = $this->getConfigTranslationArray(); foreach($config as $parameter => $value) { - if(($parameter == 'homeFolderNamingRule' + if(($parameter === 'homeFolderNamingRule' || (isset($params[$parameter]) - && $params[$parameter] == 'homeFolderNamingRule')) + && $params[$parameter] === 'homeFolderNamingRule')) && !empty($value)) { $value = 'attr:'.$value; } @@ -389,7 +389,7 @@ class Connection { $trans = $this->getConfigTranslationArray(); $config = array(); foreach($trans as $dbKey => $classKey) { - if($classKey == 'homeFolderNamingRule') { + if($classKey === 'homeFolderNamingRule') { if(strpos($this->config[$classKey], 'attr:') === 0) { $config[$dbKey] = substr($this->config[$classKey], 5); } else { @@ -440,7 +440,7 @@ class Connection { } foreach(array('ldapAttributesForUserSearch', 'ldapAttributesForGroupSearch') as $key) { if(is_array($this->config[$key]) - && count($this->config[$key]) == 1 + && count($this->config[$key]) === 1 && empty($this->config[$key][0])) { $this->config[$key] = array(); } @@ -588,12 +588,12 @@ class Connection { $error = null; //if LDAP server is not reachable, try the Backup (Replica!) Server - if((!$bindStatus && ($error == -1)) + if((!$bindStatus && ($error === -1)) || $this->config['ldapOverrideMainServer'] || $this->getFromCache('overrideMainServer')) { $this->doConnect($this->config['ldapBackupHost'], $this->config['ldapBackupPort']); $bindStatus = $this->bind(); - if($bindStatus && $error == -1) { + if($bindStatus && $error === -1) { //when bind to backup server succeeded and failed to main server, //skip contacting him until next cache refresh $this->writeToCache('overrideMainServer', true); diff --git a/apps/user_ldap/lib/helper.php b/apps/user_ldap/lib/helper.php index 612a088269b..8bebd84c12e 100644 --- a/apps/user_ldap/lib/helper.php +++ b/apps/user_ldap/lib/helper.php @@ -96,7 +96,7 @@ class Helper { return false; } - if($res->numRows() == 0) { + if($res->numRows() === 0) { return false; } diff --git a/apps/user_ldap/templates/settings.php b/apps/user_ldap/templates/settings.php index d3c2c298904..f0ee8c6b08a 100644 --- a/apps/user_ldap/templates/settings.php +++ b/apps/user_ldap/templates/settings.php @@ -14,7 +14,7 @@

-

+

t('Special Attributes'));?>

diff --git a/apps/user_ldap/user_ldap.php b/apps/user_ldap/user_ldap.php index 1277e074714..41e2926605e 100644 --- a/apps/user_ldap/user_ldap.php +++ b/apps/user_ldap/user_ldap.php @@ -197,9 +197,9 @@ class USER_LDAP extends lib\Access implements \OCP\UserInterface { //if attribute's value is an absolute path take this, otherwise append it to data dir //check for / at the beginning or pattern c:\ resp. c:/ if( - '/' == $path[0] + '/' === $path[0] || (3 < strlen($path) && ctype_alpha($path[0]) - && $path[1] == ':' && ('\\' == $path[2] || '/' == $path[2])) + && $path[1] === ':' && ('\\' === $path[2] || '/' === $path[2])) ) { $homedir = $path; } else { -- GitLab From f1bcf6ef0289504f1f00e1265ad8ad88aa2302db Mon Sep 17 00:00:00 2001 From: kondou Date: Mon, 8 Apr 2013 07:11:35 +0200 Subject: [PATCH 016/135] Improve the password reset screen. Fixing #2752 --- core/css/styles.css | 2 ++ core/lostpassword/templates/lostpassword.php | 34 ++++++++++++++------ 2 files changed, 26 insertions(+), 10 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 4dfa3f64a37..6eea2be433d 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -220,6 +220,8 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } } #login #databaseField .infield { padding-left:0; } #login form input[type="checkbox"]+label { position:relative; margin:0; font-size:1em; text-shadow:#fff 0 1px 0; } +#login form .errors { background:#fed7d7; border:1px solid #f00; list-style-indent:inside; margin:0 0 2em; padding:1em; } +#login .success { background:#d7fed7; border:1px solid #0f0; width: 35%; margin: 30px auto; padding:1em; text-align: center;} /* Show password toggle */ #show, #dbpassword { position:absolute; right:1em; top:.8em; float:right; } diff --git a/core/lostpassword/templates/lostpassword.php b/core/lostpassword/templates/lostpassword.php index dc9f0bc8ad3..4009ba44050 100644 --- a/core/lostpassword/templates/lostpassword.php +++ b/core/lostpassword/templates/lostpassword.php @@ -1,17 +1,31 @@ -
-
- t('You will receive a link to reset your password via Email.'); ?> - - t('Reset email send.'); ?> - + +

+ t('The link to reset your password has been sent to your email.'); + echo "

"; + echo $l->t('If you do not receive it within a reasonable amount of time, check your spam/junk folders.'); + echo "

"; + echo $l->t('If it is not there ask your local administrator .'); + ?> +

+ + +
- t('Request failed!'); ?> +

+ t('Request failed!'); + echo "

"; + echo $l->t('Did you make sure the Email was right?'); + ?> +

+ t('You will receive a link to reset your password via Email.'); ?>

- -
- +
+ + -- GitLab From 06dfc951227375ae3729e93d5c0a3f90e4cdc566 Mon Sep 17 00:00:00 2001 From: kondou Date: Mon, 8 Apr 2013 22:41:15 +0200 Subject: [PATCH 017/135] Fix syntax error. --- core/lostpassword/templates/lostpassword.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lostpassword/templates/lostpassword.php b/core/lostpassword/templates/lostpassword.php index 4009ba44050..dd4d05d25c0 100644 --- a/core/lostpassword/templates/lostpassword.php +++ b/core/lostpassword/templates/lostpassword.php @@ -1,4 +1,4 @@ - +

t('The link to reset your password has been sent to your email.'); -- GitLab From 0d3afadab28c5d4008c6b0c1051c31f0c67a462e Mon Sep 17 00:00:00 2001 From: kondou Date: Thu, 11 Apr 2013 17:20:14 +0200 Subject: [PATCH 018/135] Don't split translation lines --- core/lostpassword/templates/lostpassword.php | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/core/lostpassword/templates/lostpassword.php b/core/lostpassword/templates/lostpassword.php index dd4d05d25c0..bb06249b722 100644 --- a/core/lostpassword/templates/lostpassword.php +++ b/core/lostpassword/templates/lostpassword.php @@ -1,11 +1,9 @@

t('The link to reset your password has been sent to your email.'); - echo "

"; - echo $l->t('If you do not receive it within a reasonable amount of time, check your spam/junk folders.'); - echo "

"; - echo $l->t('If it is not there ask your local administrator .'); + echo $l->t('The link to reset your password has been sent to your email.

+

If you do not receive it within a reasonable amount of time, check your spam/junk folders.

+

If it is not there ask your local administrator .'); ?>

@@ -13,11 +11,7 @@

- t('Request failed!'); - echo "

"; - echo $l->t('Did you make sure the Email was right?'); - ?> + t('Request failed!

Did you make sure the Email was right?'); ?>

t('You will receive a link to reset your password via Email.'); ?> -- GitLab From 1e2efdddc9a8770f483a3a368fdc9a7fe6927420 Mon Sep 17 00:00:00 2001 From: kondou Date: Tue, 23 Apr 2013 12:36:27 +0200 Subject: [PATCH 019/135] Oneliners,
, proper errors & print_unescaped() --- core/lostpassword/templates/lostpassword.php | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/core/lostpassword/templates/lostpassword.php b/core/lostpassword/templates/lostpassword.php index bb06249b722..4f884195799 100644 --- a/core/lostpassword/templates/lostpassword.php +++ b/core/lostpassword/templates/lostpassword.php @@ -1,25 +1,23 @@

t('The link to reset your password has been sent to your email.

-

If you do not receive it within a reasonable amount of time, check your spam/junk folders.

-

If it is not there ask your local administrator .'); + print_unescaped($l->t('The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator .')); ?>

-
+

- t('Request failed!

Did you make sure the Email was right?'); ?> + t('Request failed!
Did you make sure your email/username was right?')); ?>

- t('You will receive a link to reset your password via Email.'); ?> + t('You will receive a link to reset your password via Email.')=; ?>

- +

- +
-- GitLab From 7eb6cc62f8bef131a570ee47972d61460c8c9354 Mon Sep 17 00:00:00 2001 From: Tom Needham Date: Tue, 23 Apr 2013 23:03:39 +0100 Subject: [PATCH 020/135] Make class properties protected instead of private to allow subclassing --- lib/ocs/result.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ocs/result.php b/lib/ocs/result.php index 8ab378d79c5..729c39056d9 100644 --- a/lib/ocs/result.php +++ b/lib/ocs/result.php @@ -22,7 +22,7 @@ class OC_OCS_Result{ - private $data, $message, $statusCode, $items, $perPage; + protected $data, $message, $statusCode, $items, $perPage; /** * create the OCS_Result object -- GitLab From 6f5501bbc88bff2e14e54420d44d770028586c85 Mon Sep 17 00:00:00 2001 From: kondou Date: Wed, 24 Apr 2013 14:17:13 +0200 Subject: [PATCH 021/135] Fis syntax error and add user icon. --- core/lostpassword/templates/lostpassword.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/lostpassword/templates/lostpassword.php b/core/lostpassword/templates/lostpassword.php index 4f884195799..c19c6893f13 100644 --- a/core/lostpassword/templates/lostpassword.php +++ b/core/lostpassword/templates/lostpassword.php @@ -12,10 +12,11 @@ t('Request failed!
Did you make sure your email/username was right?')); ?>

- t('You will receive a link to reset your password via Email.')=; ?> + t('You will receive a link to reset your password via Email.')); ?>

- + +

-- GitLab From d41b6007254fcd5edaa7c4001a11cd8d2597ec9a Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Wed, 24 Apr 2013 18:47:38 +0200 Subject: [PATCH 022/135] Add an update notification on every page for admin users --- core/css/styles.css | 3 +++ core/templates/layout.user.php | 3 +++ lib/templatelayout.php | 14 +++++++++++ lib/updater.php | 46 +++++++++------------------------- settings/templates/admin.php | 3 +-- 5 files changed, 33 insertions(+), 36 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 4dfa3f64a37..49cdc8836f8 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -345,6 +345,9 @@ li.update, li.error { width:640px; margin:4em auto; padding:1em 1em 1em 4em; bac #notification { z-index:101; background-color:#fc4; border:0; padding:0 .7em .3em; display:none; position: relative; top:0; -moz-border-radius-bottomleft:1em; -webkit-border-bottom-left-radius:1em; border-bottom-left-radius:1em; -moz-border-radius-bottomright:1em; -webkit-border-bottom-right-radius:1em; border-bottom-right-radius:1em; } #notification span { cursor:pointer; font-weight:bold; margin-left:1em; } +#update-notification { z-index:101; background-color:#fc4; border:0; padding:0 .7em .3em; display:none; position: relative; top:0; -moz-border-radius-bottomleft:1em; -webkit-border-bottom-left-radius:1em; border-bottom-left-radius:1em; -moz-border-radius-bottomright:1em; -webkit-border-bottom-right-radius:1em; border-bottom-right-radius:1em; } +#update-notification span { cursor:pointer; font-weight:bold; margin-left:1em; } + tr .action:not(.permanent), .selectedActions a { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter:alpha(opacity=0); opacity:0; } tr:hover .action, tr .action.permanent, .selectedActions a { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter:alpha(opacity=50); opacity:.5; } tr .action { width:16px; height:16px; } diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index cfe0a551943..12509019b04 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -32,6 +32,9 @@
-- GitLab From 3a6e39b990b1e58d03cc81479a8a27b6ad6c74fe Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Sun, 28 Apr 2013 23:28:41 +0200 Subject: [PATCH 050/135] It's a class --- apps/files/js/files.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 4010c66593f..296e54e3568 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -116,7 +116,7 @@ $(document).ready(function() { }); // Trigger cancelling of file upload - $('#uploadprogresswrapper stop').on('click', function() { + $('#uploadprogresswrapper .stop').on('click', function() { Files.cancelUploads(); }); -- GitLab From 2b36ad292dcbfd8b714b028b71e2c42c622aa7d4 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 29 Apr 2013 02:00:26 +0200 Subject: [PATCH 051/135] [tx-robot] updated from transifex --- apps/files_external/l10n/nl.php | 1 + apps/files_external/l10n/sk_SK.php | 1 + core/l10n/cs_CZ.php | 3 ++ core/l10n/de.php | 3 ++ core/l10n/de_DE.php | 3 ++ core/l10n/el.php | 1 + core/l10n/es.php | 3 ++ core/l10n/gl.php | 3 ++ core/l10n/it.php | 1 + core/l10n/nl.php | 3 ++ core/l10n/nn_NO.php | 4 ++- core/l10n/pt_BR.php | 1 + core/l10n/sk_SK.php | 3 ++ l10n/cs_CZ/core.po | 13 +++++---- l10n/de/core.po | 13 +++++---- l10n/de/settings.po | 11 +++---- l10n/de_DE/core.po | 13 +++++---- l10n/de_DE/settings.po | 11 +++---- l10n/el/core.po | 9 +++--- l10n/es/core.po | 13 +++++---- l10n/gl/core.po | 13 +++++---- l10n/gl/settings.po | 11 +++---- l10n/it/core.po | 8 ++--- l10n/nl/core.po | 13 +++++---- l10n/nl/files_external.po | 9 +++--- l10n/nl/settings.po | 11 +++---- l10n/nn_NO/core.po | 13 +++++---- l10n/nn_NO/files_sharing.po | 4 +-- l10n/nn_NO/lib.po | 4 +-- l10n/nn_NO/settings.po | 45 +++++++++++++++-------------- l10n/pt_BR/core.po | 8 ++--- l10n/sk_SK/core.po | 13 +++++---- l10n/sk_SK/files_external.po | 9 +++--- l10n/sk_SK/settings.po | 11 +++---- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- settings/l10n/de.php | 1 + settings/l10n/de_DE.php | 1 + settings/l10n/gl.php | 1 + settings/l10n/nl.php | 1 + settings/l10n/nn_NO.php | 22 +++++++++++--- settings/l10n/sk_SK.php | 1 + 51 files changed, 199 insertions(+), 135 deletions(-) diff --git a/apps/files_external/l10n/nl.php b/apps/files_external/l10n/nl.php index ad3eda9747f..ded5a861a8b 100644 --- a/apps/files_external/l10n/nl.php +++ b/apps/files_external/l10n/nl.php @@ -6,6 +6,7 @@ "Error configuring Google Drive storage" => "Fout tijdens het configureren van Google Drive opslag", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Waarschuwing: \"smbclient\" is niet geïnstalleerd. Mounten van CIFS/SMB shares is niet mogelijk. Vraag uw beheerder om smbclient te installeren.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Waarschuwing: FTP ondersteuning in PHP is niet geactiveerd of geïnstalleerd. Mounten van FTP shares is niet mogelijk. Vraag uw beheerder FTP ondersteuning te installeren.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Waarschuwing: Curl ondersteuning in PHP is niet geactiveerd of geïnstalleerd. Mounten van ownCloud / WebDAV of GoogleDrive is niet mogelijk. Vraag uw systeembeheerder dit te installeren.", "External Storage" => "Externe opslag", "Folder name" => "Mapnaam", "External storage" => "Externe opslag", diff --git a/apps/files_external/l10n/sk_SK.php b/apps/files_external/l10n/sk_SK.php index 35fea18445c..33edcb9d4c8 100644 --- a/apps/files_external/l10n/sk_SK.php +++ b/apps/files_external/l10n/sk_SK.php @@ -6,6 +6,7 @@ "Error configuring Google Drive storage" => "Chyba pri konfigurácii úložiska Google drive", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Upozornenie: \"smbclient\" nie je nainštalovaný. Nie je možné pripojenie oddielov CIFS/SMB. Požiadajte administrátora systému, nech ho nainštaluje.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Upozornenie: Podpora FTP v PHP nie je povolená alebo nainštalovaná. Nie je možné pripojenie oddielov FTP. Požiadajte administrátora systému, nech ho nainštaluje.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Varovanie: nie je nainštalovaná, alebo povolená, podpora Curl v PHP. Nie je možné pripojenie oddielov ownCloud, WebDAV, či GoogleDrive. Prosím požiadajte svojho administrátora systému, nech ju nainštaluje.", "External Storage" => "Externé úložisko", "Folder name" => "Meno priečinka", "External storage" => "Externé úložisko", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index f3fc041b710..d9ec83b1469 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -88,6 +88,8 @@ "The update was successful. Redirecting you to ownCloud now." => "Aktualizace byla úspěšná. Přesměrovávám na ownCloud.", "ownCloud password reset" => "Obnovení hesla pro ownCloud", "Use the following link to reset your password: {link}" => "Heslo obnovíte použitím následujícího odkazu: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Odkaz na obnovení hesla byl odeslán na vaši e-mailovou adresu.
Pokud jej v krátké době neobdržíte, zkontrolujte váš koš a složku spam.
Pokud jej nenaleznete, kontaktujte svého správce.", +"Request failed!
Did you make sure your email/username was right?" => "Požadavek selhal.
Ujistili jste se, že vaše uživatelské jméno a e-mail jsou správně?", "You will receive a link to reset your password via Email." => "Bude Vám e-mailem zaslán odkaz pro obnovu hesla.", "Username" => "Uživatelské jméno", "Request reset" => "Vyžádat obnovu", @@ -123,6 +125,7 @@ "Database host" => "Hostitel databáze", "Finish setup" => "Dokončit nastavení", "web services under your control" => "služby webu pod Vaší kontrolou", +"%s is available. Click here to get more information." => "%s je dostupná. Pro více informací klikněte zde.", "Log out" => "Odhlásit se", "Automatic logon rejected!" => "Automatické přihlášení odmítnuto.", "If you did not change your password recently, your account may be compromised!" => "V nedávné době jste nezměnili své heslo, Váš účet může být kompromitován.", diff --git a/core/l10n/de.php b/core/l10n/de.php index 48bb06d80e9..667f11a5afa 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -88,6 +88,8 @@ "The update was successful. Redirecting you to ownCloud now." => "Das Update war erfolgreich. Sie werden nun zu ownCloud weitergeleitet.", "ownCloud password reset" => "ownCloud-Passwort zurücksetzen", "Use the following link to reset your password: {link}" => "Nutze den nachfolgenden Link, um Dein Passwort zurückzusetzen: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Der Link zum Rücksetzen Deines Passwort ist an Deine E-Mail-Adresse geschickt worden.
Wenn Du ihn nicht innerhalb einer vernünftigen Zeit empfängst prüfe Deine Spam-Verzeichnisse.
Wenn er nicht dort ist frage Deinen lokalen Administrator.", +"Request failed!
Did you make sure your email/username was right?" => "Anfrage fehlgeschlagen!
Hast Du darauf geachtet, dass Deine E-Mail/Dein Benutzername korrekt war?", "You will receive a link to reset your password via Email." => "Du erhältst einen Link per E-Mail, um Dein Passwort zurückzusetzen.", "Username" => "Benutzername", "Request reset" => "Beantrage Zurücksetzung", @@ -123,6 +125,7 @@ "Database host" => "Datenbank-Host", "Finish setup" => "Installation abschließen", "web services under your control" => "Web-Services unter Deiner Kontrolle", +"%s is available.
Click here to get more information." => "%s ist verfügbar. Klicke hier für weitere Informationen.", "Log out" => "Abmelden", "Automatic logon rejected!" => "Automatischer Login zurückgewiesen!", "If you did not change your password recently, your account may be compromised!" => "Wenn Du Dein Passwort nicht vor kurzem geändert hast, könnte Dein\nAccount kompromittiert sein!", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index cc0aeb169ac..4953788eeae 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -88,6 +88,8 @@ "The update was successful. Redirecting you to ownCloud now." => "Das Update war erfolgreich. Sie werden nun zu ownCloud weitergeleitet.", "ownCloud password reset" => "ownCloud-Passwort zurücksetzen", "Use the following link to reset your password: {link}" => "Nutzen Sie den nachfolgenden Link, um Ihr Passwort zurückzusetzen: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Der Link zum Rücksetzen Ihres Passworts ist an Ihre E-Mail-Adresse gesendet worde.
Wenn Sie ihn nicht innerhalb einer sinnvollen Zeitspanne erhalten prüfen Sie bitte Ihre Spam-Verzeichnisse.
Wenn er nicht dort ist fragen Sie Ihren lokalen Administrator.", +"Request failed!
Did you make sure your email/username was right?" => "Anfrage fehlgeschlagen!
Haben Sie darauf geachtet, dass E-Mail-Adresse/Nutzername korrekt waren?", "You will receive a link to reset your password via Email." => "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen.", "Username" => "Benutzername", "Request reset" => "Zurücksetzung beantragen", @@ -123,6 +125,7 @@ "Database host" => "Datenbank-Host", "Finish setup" => "Installation abschließen", "web services under your control" => "Web-Services unter Ihrer Kontrolle", +"%s is available.
Click here to get more information." => "%s ist verfügbar. Klicken Sie hier um weitere Informationen zu erhalten.", "Log out" => "Abmelden", "Automatic logon rejected!" => "Automatische Anmeldung verweigert.", "If you did not change your password recently, your account may be compromised!" => "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAccount kompromittiert sein!", diff --git a/core/l10n/el.php b/core/l10n/el.php index e92f751018f..dbe0d0ee3d6 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -88,6 +88,7 @@ "The update was successful. Redirecting you to ownCloud now." => "Η ενημέρωση ήταν επιτυχής. Μετάβαση στο ownCloud.", "ownCloud password reset" => "Επαναφορά συνθηματικού ownCloud", "Use the following link to reset your password: {link}" => "Χρησιμοποιήστε τον ακόλουθο σύνδεσμο για να επανεκδόσετε τον κωδικό: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Ο σύνδεσμος για να επανακτήσετε τον κωδικό σας έχει σταλεί στο email
αν δεν το λάβετε μέσα σε ορισμένο διάστημα, ελέγξετε τους φακελλους σας spam/junk
αν δεν είναι εκεί ρωτήστε τον τοπικό σας διαχειριστή ", "Request failed!
Did you make sure your email/username was right?" => "Η αίτηση απέτυχε! Βεβαιωθηκατε ότι το email σας / username ειναι σωστο? ", "You will receive a link to reset your password via Email." => "Θα λάβετε ένα σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας μέσω ηλεκτρονικού ταχυδρομείου.", "Username" => "Όνομα χρήστη", diff --git a/core/l10n/es.php b/core/l10n/es.php index 8a33b5217b5..091fa8edb7b 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -88,6 +88,8 @@ "The update was successful. Redirecting you to ownCloud now." => "La actualización se ha realizado correctamente. Redireccionando a ownCloud ahora.", "ownCloud password reset" => "Reiniciar contraseña de ownCloud", "Use the following link to reset your password: {link}" => "Utiliza el siguiente enlace para restablecer tu contraseña: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "El enlace para restablecer la contraseña ha sido enviada a su correo electrónico.
Si no lo recibe en un plazo razonable de tiempo, revise su spam / carpetas no deseados.
Si no está allí pregunte a su administrador local.", +"Request failed!
Did you make sure your email/username was right?" => "Petición ha fallado!
¿Usted asegúrese que su dirección de correo electrónico / nombre de usuario estaba justo?", "You will receive a link to reset your password via Email." => "Recibirás un enlace por correo electrónico para restablecer tu contraseña", "Username" => "Nombre de usuario", "Request reset" => "Solicitar restablecimiento", @@ -123,6 +125,7 @@ "Database host" => "Host de la base de datos", "Finish setup" => "Completar la instalación", "web services under your control" => "Servicios web bajo su control", +"%s is available.
Click here to get more information." => "% s está disponible. Haga clic aquí para obtener más información.", "Log out" => "Salir", "Automatic logon rejected!" => "¡Inicio de sesión automático rechazado!", "If you did not change your password recently, your account may be compromised!" => "Si usted no ha cambiado su contraseña recientemente, ¡puede que su cuenta esté comprometida!", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index cd5e2583c56..adbbe1fcd5b 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -88,6 +88,8 @@ "The update was successful. Redirecting you to ownCloud now." => "A actualización realizouse correctamente. Redirixíndoo agora á ownCloud.", "ownCloud password reset" => "Restabelecer o contrasinal de ownCloud", "Use the following link to reset your password: {link}" => "Usa a seguinte ligazón para restabelecer o contrasinal: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Envióuselle ao seu correo unha ligazón para restabelecer o seu contrasinal.
Se non o recibe nun prazo razoábel de tempo, revise o seu cartafol de correo lixo ou de non desexados.
Se non o atopa aí pregúntelle ao seu administrador local..", +"Request failed!
Did you make sure your email/username was right?" => "Non foi posíbel facer a petición!
Asegúrese de que o seu enderezo de correo ou nome de usuario é correcto.", "You will receive a link to reset your password via Email." => "Recibirá unha ligazón por correo para restabelecer o contrasinal", "Username" => "Nome de usuario", "Request reset" => "Petición de restabelecemento", @@ -123,6 +125,7 @@ "Database host" => "Servidor da base de datos", "Finish setup" => "Rematar a configuración", "web services under your control" => "servizos web baixo o seu control", +"%s is available.
Click here to get more information." => "%s está dispoñíbel. Prema aquí para obter máis información.", "Log out" => "Desconectar", "Automatic logon rejected!" => "Rexeitouse a entrada automática", "If you did not change your password recently, your account may be compromised!" => "Se non fixo recentemente cambios de contrasinal é posíbel que a súa conta estea comprometida!", diff --git a/core/l10n/it.php b/core/l10n/it.php index d450f90b1d2..fa2ddcf695f 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -125,6 +125,7 @@ "Database host" => "Host del database", "Finish setup" => "Termina la configurazione", "web services under your control" => "servizi web nelle tue mani", +"%s is available. Click here to get more information." => "%s è disponibile. Fai clic qui per ottenere ulteriori informazioni.", "Log out" => "Esci", "Automatic logon rejected!" => "Accesso automatico rifiutato.", "If you did not change your password recently, your account may be compromised!" => "Se non hai cambiato la password recentemente, il tuo account potrebbe essere compromesso.", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index e7977e14a29..8411dc196b0 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -88,6 +88,8 @@ "The update was successful. Redirecting you to ownCloud now." => "De update is geslaagd. U wordt teruggeleid naar uw eigen ownCloud.", "ownCloud password reset" => "ownCloud wachtwoord herstellen", "Use the following link to reset your password: {link}" => "Gebruik de volgende link om je wachtwoord te resetten: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "De link voor het resetten van uw wachtwoord is verzonden naar uw e-mailadres.
Als u dat bericht niet snel ontvangen hebt, controleer dan uw spambakje.
Als het daar ook niet is, vraag dan uw beheerder om te helpen.", +"Request failed!
Did you make sure your email/username was right?" => "Aanvraag mislukt!
Weet u zeker dat uw gebruikersnaam en/of wachtwoord goed waren?", "You will receive a link to reset your password via Email." => "U ontvangt een link om uw wachtwoord opnieuw in te stellen via e-mail.", "Username" => "Gebruikersnaam", "Request reset" => "Resetaanvraag", @@ -123,6 +125,7 @@ "Database host" => "Database server", "Finish setup" => "Installatie afronden", "web services under your control" => "Webdiensten in eigen beheer", +"%s is available.
Click here to get more information." => "%s is beschikbaar. Klik hier voor meer informatie.", "Log out" => "Afmelden", "Automatic logon rejected!" => "Automatische aanmelding geweigerd!", "If you did not change your password recently, your account may be compromised!" => "Als u uw wachtwoord niet onlangs heeft aangepast, kan uw account overgenomen zijn!", diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php index 61b2baffbf2..a582775b0b4 100644 --- a/core/l10n/nn_NO.php +++ b/core/l10n/nn_NO.php @@ -37,6 +37,7 @@ "Help" => "Hjelp", "Cloud not found" => "Fann ikkje skyen", "Add" => "Legg til", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ingen tilgjengeleg tilfeldig nummer-generator, ver vennleg og aktiver OpenSSL-utvidinga i PHP.", "Create an admin account" => "Lag ein admin-konto", "Advanced" => "Avansert", "Data folder" => "Datamappe", @@ -47,8 +48,9 @@ "Database name" => "Databasenamn", "Database host" => "Databasetenar", "Finish setup" => "Fullfør oppsettet", -"web services under your control" => "Vev tjenester under din kontroll", +"web services under your control" => "Vevtenester under din kontroll", "Log out" => "Logg ut", +"Please change your password to secure your account again." => "Ver vennleg og endra passordet for å gjera kontoen din trygg igjen.", "Lost your password?" => "Gløymt passordet?", "remember" => "hugs", "Log in" => "Logg inn", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index ee1ac44d026..0c56b494707 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -125,6 +125,7 @@ "Database host" => "Host do banco de dados", "Finish setup" => "Concluir configuração", "web services under your control" => "serviços web sob seu controle", +"%s is available. Click here to get more information." => "%s está disponível. Click aqui para mais infoemações.", "Log out" => "Sair", "Automatic logon rejected!" => "Entrada Automática no Sistema Rejeitada!", "If you did not change your password recently, your account may be compromised!" => "Se você não mudou a sua senha recentemente, a sua conta pode estar comprometida!", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index aab65fb4e9e..90bdc4df109 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -88,6 +88,8 @@ "The update was successful. Redirecting you to ownCloud now." => "Aktualizácia bola úspešná. Presmerovávam na prihlasovaciu stránku.", "ownCloud password reset" => "Obnovenie hesla pre ownCloud", "Use the following link to reset your password: {link}" => "Použite nasledujúci odkaz pre obnovenie vášho hesla: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Odkaz na obnovenie hesla bol odoslaný na Vašu emailovú adresu.
Ak ho v krátkej dobe neobdržíte, skontrolujte si Váš kôš a priečinok spam.
Ak ho ani tam nenájdete, kontaktujte svojho administrátora.", +"Request failed!
Did you make sure your email/username was right?" => "Požiadavka zlyhala.
Uistili ste sa, že Vaše používateľské meno a email sú správne?", "You will receive a link to reset your password via Email." => "Odkaz pre obnovenie hesla obdržíte e-mailom.", "Username" => "Meno používateľa", "Request reset" => "Požiadať o obnovenie", @@ -123,6 +125,7 @@ "Database host" => "Server databázy", "Finish setup" => "Dokončiť inštaláciu", "web services under your control" => "webové služby pod Vašou kontrolou", +"%s is available.
Click here to get more information." => "%s je dostupná. Pre viac informácií kliknite tu.", "Log out" => "Odhlásiť", "Automatic logon rejected!" => "Automatické prihlásenie bolo zamietnuté!", "If you did not change your password recently, your account may be compromised!" => "V nedávnej dobe ste nezmenili svoje heslo, Váš účet môže byť kompromitovaný.", diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 83bdbfaa27c..5ace199d70f 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"PO-Revision-Date: 2013-04-28 08:20+0000\n" +"Last-Translator: Tomáš Chvátal \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" @@ -401,11 +402,11 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "Odkaz na obnovení hesla byl odeslán na vaši e-mailovou adresu.
Pokud jej v krátké době neobdržíte, zkontrolujte váš koš a složku spam.
Pokud jej nenaleznete, kontaktujte svého správce." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "Požadavek selhal.
Ujistili jste se, že vaše uživatelské jméno a e-mail jsou správně?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -563,7 +564,7 @@ msgstr "služby webu pod Vaší kontrolou" #: templates/layout.user.php:36 #, php-format msgid "%s is available.
Click here to get more information." -msgstr "" +msgstr "%s je dostupná. Pro více informací klikněte zde." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/de/core.po b/l10n/de/core.po index f84fd1ed7e8..9e7dac7c5b8 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# arkascha , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"PO-Revision-Date: 2013-04-28 06:40+0000\n" +"Last-Translator: arkascha \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -401,11 +402,11 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "Der Link zum Rücksetzen Deines Passwort ist an Deine E-Mail-Adresse geschickt worden.
Wenn Du ihn nicht innerhalb einer vernünftigen Zeit empfängst prüfe Deine Spam-Verzeichnisse.
Wenn er nicht dort ist frage Deinen lokalen Administrator." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "Anfrage fehlgeschlagen!
Hast Du darauf geachtet, dass Deine E-Mail/Dein Benutzername korrekt war?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -563,7 +564,7 @@ msgstr "Web-Services unter Deiner Kontrolle" #: templates/layout.user.php:36 #, php-format msgid "%s is available.
Click here to get more information." -msgstr "" +msgstr "%s ist verfügbar. Klicke hier für weitere Informationen." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 02fef77ed98..43ac32ddf2e 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# arkascha , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:17+0200\n" -"PO-Revision-Date: 2013-04-26 16:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"PO-Revision-Date: 2013-04-28 06:30+0000\n" +"Last-Translator: arkascha \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +29,7 @@ msgstr "Fehler bei der Anmeldung" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "Dein Anzeigename ist geändert worden." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" @@ -328,7 +329,7 @@ msgstr "Weniger" msgid "Version" msgstr "Version" -#: templates/admin.php:238 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:108 msgid "" "Developed by the ownCloud community, the , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"PO-Revision-Date: 2013-04-28 06:50+0000\n" +"Last-Translator: arkascha \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -401,11 +402,11 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "Der Link zum Rücksetzen Ihres Passworts ist an Ihre E-Mail-Adresse gesendet worde.
Wenn Sie ihn nicht innerhalb einer sinnvollen Zeitspanne erhalten prüfen Sie bitte Ihre Spam-Verzeichnisse.
Wenn er nicht dort ist fragen Sie Ihren lokalen Administrator." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "Anfrage fehlgeschlagen!
Haben Sie darauf geachtet, dass E-Mail-Adresse/Nutzername korrekt waren?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -563,7 +564,7 @@ msgstr "Web-Services unter Ihrer Kontrolle" #: templates/layout.user.php:36 #, php-format msgid "%s is available.
Click here to get more information." -msgstr "" +msgstr "%s ist verfügbar. Klicken Sie hier um weitere Informationen zu erhalten." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index a633ef2dd49..983e3752d45 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# arkascha , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:17+0200\n" -"PO-Revision-Date: 2013-04-26 16:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"PO-Revision-Date: 2013-04-28 06:40+0000\n" +"Last-Translator: arkascha \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +29,7 @@ msgstr "Authentifizierungs-Fehler" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "Dein Anzeigename ist geändert worden." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" @@ -328,7 +329,7 @@ msgstr "Weniger" msgid "Version" msgstr "Version" -#: templates/admin.php:238 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:108 msgid "" "Developed by the ownCloud community, the , 2013 +# KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"PO-Revision-Date: 2013-04-28 11:30+0000\n" +"Last-Translator: KAT.RAT12 \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" @@ -402,7 +403,7 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "Ο σύνδεσμος για να επανακτήσετε τον κωδικό σας έχει σταλεί στο email
αν δεν το λάβετε μέσα σε ορισμένο διάστημα, ελέγξετε τους φακελλους σας spam/junk
αν δεν είναι εκεί ρωτήστε τον τοπικό σας διαχειριστή " #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" diff --git a/l10n/es/core.po b/l10n/es/core.po index 8f021c11877..7889db38585 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# msoko , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"PO-Revision-Date: 2013-04-28 00:50+0000\n" +"Last-Translator: msoko \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" @@ -401,11 +402,11 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "El enlace para restablecer la contraseña ha sido enviada a su correo electrónico.
Si no lo recibe en un plazo razonable de tiempo, revise su spam / carpetas no deseados.
Si no está allí pregunte a su administrador local." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "Petición ha fallado!
¿Usted asegúrese que su dirección de correo electrónico / nombre de usuario estaba justo?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -563,7 +564,7 @@ msgstr "Servicios web bajo su control" #: templates/layout.user.php:36 #, php-format msgid "%s is available.
Click here to get more information." -msgstr "" +msgstr "% s está disponible. Haga clic aquí para obtener más información." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index b24790fcb9a..fd906b7f3ce 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mbouzada , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"PO-Revision-Date: 2013-04-28 09:10+0000\n" +"Last-Translator: mbouzada \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" @@ -401,11 +402,11 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "Envióuselle ao seu correo unha ligazón para restabelecer o seu contrasinal.
Se non o recibe nun prazo razoábel de tempo, revise o seu cartafol de correo lixo ou de non desexados.
Se non o atopa aí pregúntelle ao seu administrador local.." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "Non foi posíbel facer a petición!
Asegúrese de que o seu enderezo de correo ou nome de usuario é correcto." #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -563,7 +564,7 @@ msgstr "servizos web baixo o seu control" #: templates/layout.user.php:36 #, php-format msgid "%s is available.
Click here to get more information." -msgstr "" +msgstr "%s está dispoñíbel. Prema aquí para obter máis información." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 4342a6395a4..7b3e9df3f15 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mbouzada , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:17+0200\n" -"PO-Revision-Date: 2013-04-26 16:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"PO-Revision-Date: 2013-04-28 09:00+0000\n" +"Last-Translator: mbouzada \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" @@ -28,7 +29,7 @@ msgstr "Produciuse un erro de autenticación" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "O seu nome visíbel foi cambiado" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" @@ -328,7 +329,7 @@ msgstr "Menos" msgid "Version" msgstr "Versión" -#: templates/admin.php:238 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:108 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"PO-Revision-Date: 2013-04-28 23:30+0000\n" +"Last-Translator: Vincenzo Reale \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" @@ -564,7 +564,7 @@ msgstr "servizi web nelle tue mani" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Click here to get more information." -msgstr "" +msgstr "%s è disponibile. Fai clic qui per ottenere ulteriori informazioni." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index ec1d18f6001..74d93312d5c 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# André Koot , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"PO-Revision-Date: 2013-04-28 21:00+0000\n" +"Last-Translator: André Koot \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" @@ -401,11 +402,11 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "De link voor het resetten van uw wachtwoord is verzonden naar uw e-mailadres.
Als u dat bericht niet snel ontvangen hebt, controleer dan uw spambakje.
Als het daar ook niet is, vraag dan uw beheerder om te helpen." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "Aanvraag mislukt!
Weet u zeker dat uw gebruikersnaam en/of wachtwoord goed waren?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -563,7 +564,7 @@ msgstr "Webdiensten in eigen beheer" #: templates/layout.user.php:36 #, php-format msgid "%s is available.
Click here to get more information." -msgstr "" +msgstr "%s is beschikbaar. Klik hier voor meer informatie." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 7f08aff1abc..13735200722 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# André Koot , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:29+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"PO-Revision-Date: 2013-04-28 06:30+0000\n" +"Last-Translator: André Koot \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" @@ -55,7 +56,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "Waarschuwing: Curl ondersteuning in PHP is niet geactiveerd of geïnstalleerd. Mounten van ownCloud / WebDAV of GoogleDrive is niet mogelijk. Vraag uw systeembeheerder dit te installeren." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 9ca0cc9e804..577422c4691 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# André Koot , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:17+0200\n" -"PO-Revision-Date: 2013-04-26 16:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"PO-Revision-Date: 2013-04-28 06:30+0000\n" +"Last-Translator: André Koot \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" @@ -28,7 +29,7 @@ msgstr "Authenticatie fout" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "Uw weergavenaam is gewijzigd." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" @@ -328,7 +329,7 @@ msgstr "Minder" msgid "Version" msgstr "Versie" -#: templates/admin.php:238 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:108 msgid "" "Developed by the ownCloud community, the , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"PO-Revision-Date: 2013-04-28 22:20+0000\n" +"Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -489,7 +490,7 @@ msgstr "" msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "" +msgstr "Ingen tilgjengeleg tilfeldig nummer-generator, ver vennleg og aktiver OpenSSL-utvidinga i PHP." #: templates/installation.php:33 msgid "" @@ -558,7 +559,7 @@ msgstr "Fullfør oppsettet" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "Vev tjenester under din kontroll" +msgstr "Vevtenester under din kontroll" #: templates/layout.user.php:36 #, php-format @@ -581,7 +582,7 @@ msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "Ver vennleg og endra passordet for å gjera kontoen din trygg igjen." #: templates/login.php:34 msgid "Lost your password?" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index d967970a7d4..94d12c1829e 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:29+0000\n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"PO-Revision-Date: 2013-04-28 17:40+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" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 3b4f85220b7..82db481dcd5 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"PO-Revision-Date: 2013-04-28 22:00+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" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index b0178a146f8..00b5185d128 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# unhammer , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:17+0200\n" -"PO-Revision-Date: 2013-04-26 08:31+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"PO-Revision-Date: 2013-04-28 22:10+0000\n" +"Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,27 +25,27 @@ msgstr "Klarer ikkje å laste inn liste fra App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Feil i autentisering" +msgstr "Autentiseringsfeil" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "Visningsnamnet ditt er endra." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "" +msgstr "Klarte ikkje å endra visningsnamnet" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "" +msgstr "Gruppa finst allereie" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "" +msgstr "Klarte ikkje å leggja til gruppa" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "" +msgstr "Klarte ikkje å aktivera app-en." #: ajax/lostpassword.php:12 msgid "Email saved" @@ -56,11 +57,11 @@ msgstr "Ugyldig e-postadresse" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "" +msgstr "Klarte ikkje å sletta gruppa" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "" +msgstr "Klarte ikkje å sletta brukaren" #: ajax/setlanguage.php:15 msgid "Language changed" @@ -72,25 +73,25 @@ msgstr "Ugyldig førespurnad" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "" +msgstr "Administratorar kan ikkje fjerna seg sjølv frå admin-gruppa" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Klarte ikkje å leggja til brukaren til gruppa %s" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Klarte ikkje å fjerna brukaren frå gruppa %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "Klarte ikkje å oppdatera app-en." #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "" +msgstr "Oppdater til {appversion}" #: js/apps.js:36 js/apps.js:76 msgid "Disable" @@ -102,7 +103,7 @@ msgstr "Slå på" #: js/apps.js:55 msgid "Please wait...." -msgstr "" +msgstr "Ver vennleg og vent …" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" @@ -231,7 +232,7 @@ msgid "" "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" " of ownCloud." -msgstr "" +msgstr "Denne ownCloud-tenaren har ikkje nokon fungerande nettilkopling. Difor vil visse funksjonar, t.d. montering av ekstern lagring, varsling om oppdatering, eller installering av tredjepartsapplikasjonar ikkje fungera. Varslingsepostar og ekstern tilgang til filer vil kanskje heller ikkje fungera. Me foreslår at du skrur på nettilkoplinga til denne tenaren viss du vil bruka alle funksjonane til ownCloud." #: templates/admin.php:92 msgid "Cron" @@ -328,7 +329,7 @@ msgstr "" msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:108 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"PO-Revision-Date: 2013-04-28 13:50+0000\n" +"Last-Translator: Flávio Veras \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" @@ -564,7 +564,7 @@ msgstr "serviços web sob seu controle" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Click here to get more information." -msgstr "" +msgstr "%s está disponível. Click aqui para mais infoemações." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index ce975986822..492549a35e8 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mhh , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"PO-Revision-Date: 2013-04-28 18:50+0000\n" +"Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -401,11 +402,11 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "Odkaz na obnovenie hesla bol odoslaný na Vašu emailovú adresu.
Ak ho v krátkej dobe neobdržíte, skontrolujte si Váš kôš a priečinok spam.
Ak ho ani tam nenájdete, kontaktujte svojho administrátora." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "Požiadavka zlyhala.
Uistili ste sa, že Vaše používateľské meno a email sú správne?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -563,7 +564,7 @@ msgstr "webové služby pod Vašou kontrolou" #: templates/layout.user.php:36 #, php-format msgid "%s is available.
Click here to get more information." -msgstr "" +msgstr "%s je dostupná. Pre viac informácií kliknite tu." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index dd0a1d55eeb..fdd045ce137 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mhh , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:29+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"PO-Revision-Date: 2013-04-28 19:00+0000\n" +"Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +56,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "Varovanie: nie je nainštalovaná, alebo povolená, podpora Curl v PHP. Nie je možné pripojenie oddielov ownCloud, WebDAV, či GoogleDrive. Prosím požiadajte svojho administrátora systému, nech ju nainštaluje." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 5a89998a8e8..adbef6c0f0c 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mhh , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:17+0200\n" -"PO-Revision-Date: 2013-04-26 16:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"PO-Revision-Date: 2013-04-28 18:50+0000\n" +"Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +29,7 @@ msgstr "Chyba autentifikácie" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "Vaše zobrazované meno bolo zmenené." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" @@ -328,7 +329,7 @@ msgstr "Menej" msgid "Version" msgstr "Verzia" -#: templates/admin.php:238 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:108 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 694be970671..9958d9a9a77 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 7e995100555..7b345c7edd5 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index d2205bc6eb6..f6af20af12e 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 86953182c03..485f516e155 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 8e7cbdd4f70..60cd70dff4c 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 544ceee7cc9..a6be10135b8 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 69123d96349..f78499f176c 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 96d1147f74c..7694e52c0c9 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index eaad5f88ee5..9118466368c 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index de9b4933409..44ef971c922 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" +"POT-Creation-Date: 2013-04-29 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/settings/l10n/de.php b/settings/l10n/de.php index aa9a2f18b32..12ef97ca75a 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -1,6 +1,7 @@ "Die Liste der Anwendungen im Store konnte nicht geladen werden.", "Authentication error" => "Fehler bei der Anmeldung", +"Your display name has been changed." => "Dein Anzeigename ist geändert worden.", "Unable to change display name" => "Das Ändern des Anzeigenamens ist nicht möglich", "Group already exists" => "Gruppe existiert bereits", "Unable to add group" => "Gruppe konnte nicht angelegt werden", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index a8a78a15138..febc67ef2d7 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -1,6 +1,7 @@ "Die Liste der Anwendungen im Store konnte nicht geladen werden.", "Authentication error" => "Authentifizierungs-Fehler", +"Your display name has been changed." => "Dein Anzeigename ist geändert worden.", "Unable to change display name" => "Das Ändern des Anzeigenamens ist nicht möglich", "Group already exists" => "Die Gruppe existiert bereits", "Unable to add group" => "Die Gruppe konnte nicht angelegt werden", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 83bc3489aad..a6c5018626e 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -1,6 +1,7 @@ "Non foi posíbel cargar a lista desde a App Store", "Authentication error" => "Produciuse un erro de autenticación", +"Your display name has been changed." => "O seu nome visíbel foi cambiado", "Unable to change display name" => "Non é posíbel cambiar o nome visíbel", "Group already exists" => "O grupo xa existe", "Unable to add group" => "Non é posíbel engadir o grupo", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 4321eb1f085..d22b04ad571 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -1,6 +1,7 @@ "Kan de lijst niet van de App store laden", "Authentication error" => "Authenticatie fout", +"Your display name has been changed." => "Uw weergavenaam is gewijzigd.", "Unable to change display name" => "Kon de weergavenaam niet wijzigen", "Group already exists" => "Groep bestaat al", "Unable to add group" => "Niet in staat om groep toe te voegen", diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index d100335dc2b..4f76253ff24 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -1,16 +1,30 @@ "Klarer ikkje å laste inn liste fra App Store", -"Authentication error" => "Feil i autentisering", +"Authentication error" => "Autentiseringsfeil", +"Your display name has been changed." => "Visningsnamnet ditt er endra.", +"Unable to change display name" => "Klarte ikkje å endra visningsnamnet", +"Group already exists" => "Gruppa finst allereie", +"Unable to add group" => "Klarte ikkje å leggja til gruppa", +"Could not enable app. " => "Klarte ikkje å aktivera app-en.", "Email saved" => "E-postadresse lagra", "Invalid email" => "Ugyldig e-postadresse", +"Unable to delete group" => "Klarte ikkje å sletta gruppa", +"Unable to delete user" => "Klarte ikkje å sletta brukaren", "Language changed" => "Språk endra", "Invalid request" => "Ugyldig førespurnad", +"Admins can't remove themself from the admin group" => "Administratorar kan ikkje fjerna seg sjølv frå admin-gruppa", +"Unable to add user to group %s" => "Klarte ikkje å leggja til brukaren til gruppa %s", +"Unable to remove user from group %s" => "Klarte ikkje å fjerna brukaren frå gruppa %s", +"Couldn't update app." => "Klarte ikkje å oppdatera app-en.", +"Update to {appversion}" => "Oppdater til {appversion}", "Disable" => "Slå av", "Enable" => "Slå på", +"Please wait...." => "Ver vennleg og vent …", "Error" => "Feil", "Groups" => "Grupper", "Delete" => "Slett", "__language_name__" => "Nynorsk", +"This ownCloud 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 of ownCloud." => "Denne ownCloud-tenaren har ikkje nokon fungerande nettilkopling. Difor vil visse funksjonar, t.d. montering av ekstern lagring, varsling om oppdatering, eller installering av tredjepartsapplikasjonar ikkje fungera. Varslingsepostar og ekstern tilgang til filer vil kanskje heller ikkje fungera. Me foreslår at du skrur på nettilkoplinga til denne tenaren viss du vil bruka alle funksjonane til ownCloud.", "Log level" => "Log nivå", "Select an App" => "Vel ein applikasjon", "Update" => "Oppdater", @@ -19,9 +33,9 @@ "Current password" => "Passord", "New password" => "Nytt passord", "Change password" => "Endra passord", -"Email" => "Epost", -"Your email address" => "Din epost addresse", -"Fill in an email address to enable password recovery" => "Fyll inn din e-post addresse for og kunne motta passord tilbakestilling", +"Email" => "E-post", +"Your email address" => "Di epost-adresse", +"Fill in an email address to enable password recovery" => "Fyll inn e-postadressa di for å aktivera passordgjenoppretting", "Language" => "Språk", "Help translate" => "Hjelp oss å oversett", "Create" => "Lag", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index a8e2a9ae800..377af0011d1 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -1,6 +1,7 @@ "Nie je možné nahrať zoznam z App Store", "Authentication error" => "Chyba autentifikácie", +"Your display name has been changed." => "Vaše zobrazované meno bolo zmenené.", "Unable to change display name" => "Nemožno zmeniť zobrazované meno", "Group already exists" => "Skupina už existuje", "Unable to add group" => "Nie je možné pridať skupinu", -- GitLab From f55aaad858396484d35f87ca09e5f53e9848ddf6 Mon Sep 17 00:00:00 2001 From: Florin Peter Date: Mon, 29 Apr 2013 15:43:48 +0200 Subject: [PATCH 052/135] fix for infinite loop causing on files_encryption branch when testing "apps/files_encryption/test/crypt.php" on Method testSymmetricStreamEncryptShortFileContent --- lib/files/cache/cache.php | 2 +- lib/files/cache/scanner.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/files/cache/cache.php b/lib/files/cache/cache.php index 857fe980be6..47f3c272b13 100644 --- a/lib/files/cache/cache.php +++ b/lib/files/cache/cache.php @@ -430,7 +430,7 @@ class Cache { $this->calculateFolderSize($path); if ($path !== '') { $parent = dirname($path); - if ($parent === '.') { + if ($parent === '.' or $parent === '/') { $parent = ''; } $this->correctFolderSize($parent); diff --git a/lib/files/cache/scanner.php b/lib/files/cache/scanner.php index f019d4fc608..5241acec1ee 100644 --- a/lib/files/cache/scanner.php +++ b/lib/files/cache/scanner.php @@ -68,7 +68,7 @@ class Scanner { if ($data) { if ($file) { $parent = dirname($file); - if ($parent === '.') { + if ($parent === '.' or $parent === '/') { $parent = ''; } if (!$this->cache->inCache($parent)) { -- GitLab From 048569754aec39b0e58232107e8108fed70bf7e8 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Mon, 29 Apr 2013 22:35:37 +0200 Subject: [PATCH 053/135] Add compatibility function for outerHTML --- core/js/compatibility.js | 16 +++++++++++++++- core/js/octemplate.js | 2 +- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/core/js/compatibility.js b/core/js/compatibility.js index cc37949409d..b690803ca77 100644 --- a/core/js/compatibility.js +++ b/core/js/compatibility.js @@ -133,4 +133,18 @@ if(!String.prototype.trim) { String.prototype.trim = function () { return this.replace(/^\s+|\s+$/g,''); }; -} \ No newline at end of file +} + +// Older Firefoxes doesn't support outerHTML +// From http://stackoverflow.com/questions/1700870/how-do-i-do-outerhtml-in-firefox#answer-3819589 +function outerHTML(node){ + // In newer browsers use the internal property otherwise build a wrapper. + return node.outerHTML || ( + function(n){ + var div = document.createElement('div'), h; + div.appendChild( n.cloneNode(true) ); + h = div.innerHTML; + div = null; + return h; + })(node); +} diff --git a/core/js/octemplate.js b/core/js/octemplate.js index a5d56852a57..e032506c0b1 100644 --- a/core/js/octemplate.js +++ b/core/js/octemplate.js @@ -72,7 +72,7 @@ }, // From stackoverflow.com/questions/1408289/best-way-to-do-variable-interpolation-in-javascript _build: function(o){ - var data = this.elem.attr('type') === 'text/template' ? this.elem.html() : this.elem.get(0).outerHTML; + var data = this.elem.attr('type') === 'text/template' ? this.elem.html() : outerHTML(this.elem.get(0)); try { return data.replace(/{([^{}]*)}/g, function (a, b) { -- GitLab From fbf9233648f59b06782330a9fef7aaa9f27480cb Mon Sep 17 00:00:00 2001 From: miicha Date: Tue, 30 Apr 2013 02:38:05 +0300 Subject: [PATCH 054/135] fixing mimetype for "new" ms office formats right mime types for docx, pptx and xlsx with the old mimetype I got a warning message from office everytime I opend such a file (it was downloaded as "filename.docx.doc") --- lib/mimetypes.list.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/mimetypes.list.php b/lib/mimetypes.list.php index 9135a7e3af2..2aac3bbfd27 100644 --- a/lib/mimetypes.list.php +++ b/lib/mimetypes.list.php @@ -86,11 +86,11 @@ return array( 'vcf' => 'text/vcard', 'vcard' => 'text/vcard', 'doc'=>'application/msword', - 'docx'=>'application/msword', + 'docx'=>'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'xls'=>'application/msexcel', - 'xlsx'=>'application/msexcel', + 'xlsx'=>'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'ppt'=>'application/mspowerpoint', - 'pptx'=>'application/mspowerpoint', + 'pptx'=>'application/vnd.openxmlformats-officedocument.presentationml.presentation', 'sgf' => 'application/sgf', 'cdr' => 'application/coreldraw', 'impress' => 'text/impress', -- GitLab From 5764bf088eb25f7b635e48cebbffce7addec463a Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 30 Apr 2013 01:59:18 +0200 Subject: [PATCH 055/135] [tx-robot] updated from transifex --- apps/files/l10n/nn_NO.php | 53 +++++++- apps/files_external/l10n/sl.php | 5 +- apps/files_trashbin/l10n/nn_NO.php | 5 + core/l10n/cs_CZ.php | 1 - core/l10n/de.php | 1 - core/l10n/de_DE.php | 1 - core/l10n/es.php | 1 - core/l10n/gl.php | 1 - core/l10n/it.php | 1 - core/l10n/nl.php | 1 - core/l10n/nn_NO.php | 96 +++++++++++++-- core/l10n/pt_BR.php | 1 - core/l10n/ru.php | 2 + core/l10n/sk_SK.php | 1 - core/l10n/sl.php | 2 + core/l10n/sq.php | 2 + l10n/af_ZA/core.po | 6 +- l10n/ar/core.po | 6 +- l10n/be/core.po | 6 +- l10n/bg_BG/core.po | 6 +- l10n/bn_BD/core.po | 6 +- l10n/ca/core.po | 6 +- l10n/cs_CZ/core.po | 10 +- l10n/cy_GB/core.po | 6 +- l10n/da/core.po | 6 +- l10n/de/core.po | 10 +- l10n/de_DE/core.po | 10 +- l10n/de_DE/files.po | 52 ++++---- l10n/de_DE/files_versions.po | 6 +- l10n/el/core.po | 8 +- l10n/eo/core.po | 6 +- l10n/es/core.po | 10 +- l10n/es/settings.po | 11 +- l10n/es_AR/core.po | 6 +- l10n/et_EE/core.po | 6 +- l10n/eu/core.po | 6 +- l10n/fa/core.po | 6 +- l10n/fi/core.po | 6 +- l10n/fi_FI/core.po | 6 +- l10n/fr/core.po | 6 +- l10n/gl/core.po | 10 +- l10n/he/core.po | 6 +- l10n/hi/core.po | 6 +- l10n/hr/core.po | 6 +- l10n/hu_HU/core.po | 6 +- l10n/hy/core.po | 6 +- l10n/ia/core.po | 6 +- l10n/id/core.po | 6 +- l10n/is/core.po | 6 +- l10n/it/core.po | 10 +- l10n/ja_JP/core.po | 6 +- l10n/ka/core.po | 6 +- l10n/ka_GE/core.po | 6 +- l10n/kn/core.po | 6 +- l10n/ko/core.po | 6 +- l10n/ku_IQ/core.po | 6 +- l10n/lb/core.po | 6 +- l10n/lt_LT/core.po | 6 +- l10n/lv/core.po | 6 +- l10n/mk/core.po | 6 +- l10n/ms_MY/core.po | 6 +- l10n/my_MM/core.po | 6 +- l10n/nb_NO/core.po | 6 +- l10n/ne/core.po | 6 +- l10n/nl/core.po | 10 +- l10n/nn_NO/core.po | 182 ++++++++++++++-------------- l10n/nn_NO/files.po | 157 ++++++++++++------------ l10n/nn_NO/files_trashbin.po | 14 +-- l10n/nn_NO/lib.po | 26 ++-- l10n/nn_NO/settings.po | 150 +++++++++++------------ l10n/oc/core.po | 6 +- l10n/pl/core.po | 6 +- l10n/pl_PL/core.po | 6 +- l10n/pt_BR/core.po | 10 +- l10n/pt_PT/core.po | 6 +- l10n/ro/core.po | 6 +- l10n/ru/core.po | 11 +- l10n/ru_RU/core.po | 6 +- l10n/si_LK/core.po | 6 +- l10n/sk/core.po | 6 +- l10n/sk_SK/core.po | 10 +- l10n/sl/core.po | 11 +- l10n/sl/files_external.po | 13 +- l10n/sl/lib.po | 4 +- l10n/sl/settings.po | 15 +-- l10n/sq/core.po | 11 +- l10n/sq/settings.po | 8 +- l10n/sr/core.po | 6 +- l10n/sr@latin/core.po | 6 +- l10n/sv/core.po | 6 +- l10n/sw_KE/core.po | 6 +- l10n/ta_LK/core.po | 6 +- l10n/te/core.po | 6 +- l10n/templates/core.pot | 4 +- l10n/templates/files.pot | 50 ++++---- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 6 +- l10n/tr/core.po | 6 +- l10n/uk/core.po | 6 +- l10n/ur_PK/core.po | 6 +- l10n/vi/core.po | 6 +- l10n/zh_CN.GB2312/core.po | 6 +- l10n/zh_CN/core.po | 6 +- l10n/zh_HK/core.po | 6 +- l10n/zh_TW/core.po | 6 +- lib/l10n/nn_NO.php | 12 +- settings/l10n/es.php | 2 +- settings/l10n/nn_NO.php | 80 +++++++++++- settings/l10n/sl.php | 5 +- settings/l10n/sq.php | 3 +- 118 files changed, 852 insertions(+), 631 deletions(-) diff --git a/apps/files/l10n/nn_NO.php b/apps/files/l10n/nn_NO.php index 8f32dc012e3..2042e7bf8ad 100644 --- a/apps/files/l10n/nn_NO.php +++ b/apps/files/l10n/nn_NO.php @@ -1,23 +1,74 @@ "Klarte ikkje å flytta %s – det finst allereie ei fil med dette namnet", +"Could not move %s" => "Klarte ikkje å flytta %s", +"Unable to rename file" => "Klarte ikkje å endra filnamnet", +"No file was uploaded. Unknown error" => "Ingen filer lasta opp. Ukjend feil", "There is no error, the file uploaded with success" => "Ingen feil, fila vart lasta opp", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Fila du lasta opp er større enn det «upload_max_filesize» i php.ini tillater: ", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Den opplasta fila er større enn variabelen MAX_FILE_SIZE i HTML-skjemaet", "The uploaded file was only partially uploaded" => "Fila vart berre delvis lasta opp", "No file was uploaded" => "Ingen filer vart lasta opp", "Missing a temporary folder" => "Manglar ei mellombels mappe", +"Failed to write to disk" => "Klarte ikkje å skriva til disk", +"Not enough storage available" => "Ikkje nok lagringsplass tilgjengeleg", +"Invalid directory." => "Ugyldig mappe.", "Files" => "Filer", +"Share" => "Del", +"Delete permanently" => "Slett for godt", "Delete" => "Slett", +"Rename" => "Endra namn", +"Pending" => "Under vegs", +"{new_name} already exists" => "{new_name} finst allereie", +"replace" => "byt ut", +"suggest name" => "føreslå namn", +"cancel" => "avbryt", +"replaced {new_name} with {old_name}" => "bytte ut {new_name} med {old_name}", +"undo" => "angre", +"perform delete operation" => "utfør sletting", +"1 file uploading" => "1 fil lastar opp", +"files uploading" => "filer lastar opp", +"'.' is an invalid file name." => "«.» er eit ugyldig filnamn.", +"File name cannot be empty." => "Filnamnet kan ikkje vera tomt.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldig namn, «\\», «/», «<», «>», «:», «\"», «|», «?» og «*» er ikkje tillate.", +"Your storage is full, files can not be updated or synced anymore!" => "Lagringa di er full, kan ikkje lenger oppdatera eller synkronisera!", +"Your storage is almost full ({usedSpacePercent}%)" => "Lagringa di er nesten full ({usedSpacePercent} %)", +"Your download is being prepared. This might take some time if the files are big." => "Gjer klar nedlastinga di. Dette kan ta ei stund viss filene er store.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Klarte ikkje å lasta opp fila sidan ho er ei mappe eller er på 0 byte", +"Not enough space available" => "Ikkje nok lagringsplass tilgjengeleg", +"Upload cancelled." => "Opplasting avbroten.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Fila lastar no opp. Viss du forlèt sida no vil opplastinga bli avbroten.", +"URL cannot be empty." => "URL-en kan ikkje vera tom.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ugyldig mappenamn. Mappa «Shared» er reservert av ownCloud", "Error" => "Feil", "Name" => "Namn", "Size" => "Storleik", "Modified" => "Endra", +"1 folder" => "1 mappe", +"{count} folders" => "{count} mapper", +"1 file" => "1 fil", +"{count} files" => "{count} filer", "Upload" => "Last opp", +"File handling" => "Filhandtering", "Maximum upload size" => "Maksimal opplastingsstorleik", +"max. possible: " => "maks. moglege:", +"Needed for multi-file and folder downloads." => "Naudsynt for fleirfils- og mappenedlastingar.", +"Enable ZIP-download" => "Skru på ZIP-nedlasting", +"0 is unlimited" => "0 er ubegrensa", +"Maximum input size for ZIP files" => "Maksimal storleik for ZIP-filer", "Save" => "Lagre", "New" => "Ny", "Text file" => "Tekst fil", "Folder" => "Mappe", +"From link" => "Frå lenkje", +"Deleted files" => "Sletta filer", +"Cancel upload" => "Avbryt opplasting", +"You don’t have write permissions here." => "Du har ikkje skriverettar her.", "Nothing in here. Upload something!" => "Ingenting her. Last noko opp!", "Download" => "Last ned", +"Unshare" => "Udel", "Upload too large" => "For stor opplasting", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filene du prøver å laste opp er større enn maksgrensa til denne tenaren." +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filene du prøver å laste opp er større enn maksgrensa til denne tenaren.", +"Files are being scanned, please wait." => "Skannar filer, ver venleg og vent.", +"Current scanning" => "Køyrande skanning", +"Upgrading filesystem cache..." => "Oppgraderer mellomlageret av filsystemet …" ); diff --git a/apps/files_external/l10n/sl.php b/apps/files_external/l10n/sl.php index 4ff2eed3bf0..09b91b913e9 100644 --- a/apps/files_external/l10n/sl.php +++ b/apps/files_external/l10n/sl.php @@ -5,7 +5,8 @@ "Please provide a valid Dropbox app key and secret." => "Vpisati je treba veljaven ključ programa in kodo za Dropbox", "Error configuring Google Drive storage" => "Napaka nastavljanja shrambe Google Drive", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Opozorilo: paket \"smbclient\" ni nameščen. Priklapljanje pogonov CIFS/SMB ne bo mogoče.", -"Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Opozorilo: podpora FTP v PHP ni omogočena ali pa ni nameščena. Priklapljanje pogonov FTP zato ni mogoče.", +"Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Opozorilo: podpora FTP v PHP ni omogočena ali pa ni nameščena. Priklapljanje pogonov FTP zato ne bo mogoče.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Opozorilo: podpora za Curl v PHP ni omogočena ali pa ni nameščena. Priklapljanje točke ownCloud / WebDAV ali GoogleDrive zato ne bo mogoče. Zahtevane pakete je treba pred uporabo namestiti.", "External Storage" => "Zunanja podatkovna shramba", "Folder name" => "Ime mape", "External storage" => "Zunanja shramba", @@ -18,7 +19,7 @@ "Groups" => "Skupine", "Users" => "Uporabniki", "Delete" => "Izbriši", -"Enable User External Storage" => "Omogoči uporabniško zunanjo podatkovno shrambo", +"Enable User External Storage" => "Omogoči zunanjo uporabniško podatkovno shrambo", "Allow users to mount their own external storage" => "Dovoli uporabnikom priklop lastne zunanje podatkovne shrambe", "SSL root certificates" => "Korenska potrdila SSL", "Import Root Certificate" => "Uvozi korensko potrdilo" diff --git a/apps/files_trashbin/l10n/nn_NO.php b/apps/files_trashbin/l10n/nn_NO.php index 14345ddcc4d..8166a024e58 100644 --- a/apps/files_trashbin/l10n/nn_NO.php +++ b/apps/files_trashbin/l10n/nn_NO.php @@ -1,5 +1,10 @@ "Feil", +"Delete permanently" => "Slett for godt", "Name" => "Namn", +"1 folder" => "1 mappe", +"{count} folders" => "{count} mapper", +"1 file" => "1 fil", +"{count} files" => "{count} filer", "Delete" => "Slett" ); diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index d9ec83b1469..d64bda88df8 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -125,7 +125,6 @@ "Database host" => "Hostitel databáze", "Finish setup" => "Dokončit nastavení", "web services under your control" => "služby webu pod Vaší kontrolou", -"%s is available. Click here to get more information." => "%s je dostupná. Pro více informací klikněte zde.", "Log out" => "Odhlásit se", "Automatic logon rejected!" => "Automatické přihlášení odmítnuto.", "If you did not change your password recently, your account may be compromised!" => "V nedávné době jste nezměnili své heslo, Váš účet může být kompromitován.", diff --git a/core/l10n/de.php b/core/l10n/de.php index 667f11a5afa..c173e56c1f7 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -125,7 +125,6 @@ "Database host" => "Datenbank-Host", "Finish setup" => "Installation abschließen", "web services under your control" => "Web-Services unter Deiner Kontrolle", -"%s is available. Click here to get more information." => "%s ist verfügbar. Klicke hier für weitere Informationen.", "Log out" => "Abmelden", "Automatic logon rejected!" => "Automatischer Login zurückgewiesen!", "If you did not change your password recently, your account may be compromised!" => "Wenn Du Dein Passwort nicht vor kurzem geändert hast, könnte Dein\nAccount kompromittiert sein!", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index 4953788eeae..b69868e5e5a 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -125,7 +125,6 @@ "Database host" => "Datenbank-Host", "Finish setup" => "Installation abschließen", "web services under your control" => "Web-Services unter Ihrer Kontrolle", -"%s is available. Click here to get more information." => "%s ist verfügbar. Klicken Sie hier um weitere Informationen zu erhalten.", "Log out" => "Abmelden", "Automatic logon rejected!" => "Automatische Anmeldung verweigert.", "If you did not change your password recently, your account may be compromised!" => "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAccount kompromittiert sein!", diff --git a/core/l10n/es.php b/core/l10n/es.php index 091fa8edb7b..8a3ab44e85d 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -125,7 +125,6 @@ "Database host" => "Host de la base de datos", "Finish setup" => "Completar la instalación", "web services under your control" => "Servicios web bajo su control", -"%s is available. Click here to get more information." => "% s está disponible. Haga clic aquí para obtener más información.", "Log out" => "Salir", "Automatic logon rejected!" => "¡Inicio de sesión automático rechazado!", "If you did not change your password recently, your account may be compromised!" => "Si usted no ha cambiado su contraseña recientemente, ¡puede que su cuenta esté comprometida!", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index adbbe1fcd5b..f6c36d6ac62 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -125,7 +125,6 @@ "Database host" => "Servidor da base de datos", "Finish setup" => "Rematar a configuración", "web services under your control" => "servizos web baixo o seu control", -"%s is available. Click here to get more information." => "%s está dispoñíbel. Prema aquí para obter máis información.", "Log out" => "Desconectar", "Automatic logon rejected!" => "Rexeitouse a entrada automática", "If you did not change your password recently, your account may be compromised!" => "Se non fixo recentemente cambios de contrasinal é posíbel que a súa conta estea comprometida!", diff --git a/core/l10n/it.php b/core/l10n/it.php index fa2ddcf695f..d450f90b1d2 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -125,7 +125,6 @@ "Database host" => "Host del database", "Finish setup" => "Termina la configurazione", "web services under your control" => "servizi web nelle tue mani", -"%s is available. Click here to get more information." => "%s è disponibile. Fai clic qui per ottenere ulteriori informazioni.", "Log out" => "Esci", "Automatic logon rejected!" => "Accesso automatico rifiutato.", "If you did not change your password recently, your account may be compromised!" => "Se non hai cambiato la password recentemente, il tuo account potrebbe essere compromesso.", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 8411dc196b0..83d1e82dc31 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -125,7 +125,6 @@ "Database host" => "Database server", "Finish setup" => "Installatie afronden", "web services under your control" => "Webdiensten in eigen beheer", -"%s is available. Click here to get more information." => "%s is beschikbaar. Klik hier voor meer informatie.", "Log out" => "Afmelden", "Automatic logon rejected!" => "Automatische aanmelding geweigerd!", "If you did not change your password recently, your account may be compromised!" => "Als u uw wachtwoord niet onlangs heeft aangepast, kan uw account overgenomen zijn!", diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php index a582775b0b4..f62897ed27d 100644 --- a/core/l10n/nn_NO.php +++ b/core/l10n/nn_NO.php @@ -1,4 +1,16 @@ "Brukaren %s delte ei fil med deg", +"User %s shared a folder with you" => "Brukaren %s delte ei mappe med deg", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Brukaren %s delte fila «%s» med deg. Du kan lasta ho ned her: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Brukaren %s delte mappa «%s» med deg. Du kan lasta ho ned her: %s", +"Category type not provided." => "Ingen kategoritype.", +"No category to add?" => "Ingen kategori å leggja til?", +"This category already exists: %s" => "Denne kategorien finst alt: %s", +"Object type not provided." => "Ingen objekttype.", +"%s ID not provided." => "Ingen %s-ID.", +"Error adding %s to favorites." => "Klarte ikkje å leggja til %s i favorittar.", +"No categories selected for deletion." => "Ingen kategoriar valt for sletting.", +"Error removing %s from favorites." => "Klarte ikkje å fjerna %s frå favorittar.", "Sunday" => "Søndag", "Monday" => "Måndag", "Tuesday" => "Tysdag", @@ -19,25 +31,88 @@ "November" => "November", "December" => "Desember", "Settings" => "Innstillingar", -"Cancel" => "Kanseller", +"seconds ago" => "sekund sidan", +"1 minute ago" => "1 minutt sidan", +"{minutes} minutes ago" => "{minutes} minutt sidan", +"1 hour ago" => "1 time sidan", +"{hours} hours ago" => "{hours} timar sidan", +"today" => "i dag", +"yesterday" => "i går", +"{days} days ago" => "{days} dagar sidan", +"last month" => "førre månad", +"{months} months ago" => "{months) månader sidan", +"months ago" => "månader sidan", +"last year" => "i fjor", +"years ago" => "år sidan", +"Ok" => "Greitt", +"Cancel" => "Avbryt", +"Choose" => "Vel", +"Yes" => "Ja", +"No" => "Nei", +"The object type is not specified." => "Objekttypen er ikkje spesifisert.", "Error" => "Feil", +"The app name is not specified." => "App-namnet er ikkje spesifisert.", +"The required file {file} is not installed!" => "Den kravde fila {file} er ikkje installert!", +"Shared" => "Delt", +"Share" => "Del", +"Error while sharing" => "Feil ved deling", +"Error while unsharing" => "Feil ved udeling", +"Error while changing permissions" => "Feil ved endring av tillatingar", +"Shared with you and the group {group} by {owner}" => "Delt med deg og gruppa {group} av {owner}", +"Shared with you by {owner}" => "Delt med deg av {owner}", +"Share with" => "Del med", +"Share with link" => "Del med lenkje", +"Password protect" => "Passordvern", "Password" => "Passord", -"Use the following link to reset your password: {link}" => "Bruk føljane link til å tilbakestille passordet ditt: {link}", -"You will receive a link to reset your password via Email." => "Du vil få ei lenkje for å nullstilla passordet via epost.", +"Email link to person" => "Send lenkja over e-post", +"Send" => "Send", +"Set expiration date" => "Set utlaupsdato", +"Expiration date" => "Utlaupsdato", +"Share via email:" => "Del over e-post:", +"No people found" => "Fann ingen personar", +"Resharing is not allowed" => "Vidaredeling er ikkje tillate", +"Shared in {item} with {user}" => "Delt i {item} med {brukar}", +"Unshare" => "Udel", +"can edit" => "kan endra", +"access control" => "tilgangskontroll", +"create" => "lag", +"update" => "oppdater", +"delete" => "slett", +"share" => "del", +"Password protected" => "Passordverna", +"Error unsetting expiration date" => "Klarte ikkje å fjerna utlaupsdato", +"Error setting expiration date" => "Klarte ikkje å setja utlaupsdato", +"Sending ..." => "Sender …", +"Email sent" => "E-post sendt", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "Oppdateringa feila. Ver venleg og rapporter feilen til ownCloud-fellesskapet.", +"The update was successful. Redirecting you to ownCloud now." => "Oppdateringa er fullført. Sender deg vidare til ownCloud no.", +"ownCloud password reset" => "Nullstilling av ownCloud-passord", +"Use the following link to reset your password: {link}" => "Klikk følgjande lenkje til å nullstilla passordet ditt: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Lenkja til å nullstilla passordet med er sendt til e-posten din.
Sjå i spam-/søppelmappa di viss du ikkje ser e-posten innan rimeleg tid.
Spør din lokale administrator viss han ikkje er der heller.", +"Request failed!
Did you make sure your email/username was right?" => "Førespurnaden feila!
Er du viss på at du skreiv inn rett e-post/brukarnamn?", +"You will receive a link to reset your password via Email." => "Du vil få ein e-post med ei lenkje for å nullstilla passordet.", "Username" => "Brukarnamn", "Request reset" => "Be om nullstilling", "Your password was reset" => "Passordet ditt er nullstilt", -"To login page" => "Til innloggings sida", +"To login page" => "Til innloggingssida", "New password" => "Nytt passord", "Reset password" => "Nullstill passord", "Personal" => "Personleg", "Users" => "Brukarar", "Apps" => "Applikasjonar", -"Admin" => "Administrer", +"Admin" => "Admin", "Help" => "Hjelp", +"Access forbidden" => "Tilgang forbudt", "Cloud not found" => "Fann ikkje skyen", +"Edit categories" => "Endra kategoriar", "Add" => "Legg til", -"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ingen tilgjengeleg tilfeldig nummer-generator, ver vennleg og aktiver OpenSSL-utvidinga i PHP.", +"Security Warning" => "Tryggleiksåtvaring", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "PHP-utgåva di er sårbar for NULL-byteåtaket (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "Ver venleg og oppdater PHP-installasjonen din så han køyrer ownCloud på ein trygg måte.", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ingen tilgjengeleg tilfeldig nummer-generator, ver venleg og aktiver OpenSSL-utvidinga i PHP.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Utan ein trygg tilfeldig nummer-generator er det enklare for ein åtakar å gjetta seg fram til passordnullstillingskodar og dimed ta over kontoen din.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Datamappa og filene dine er sannsynlegvis tilgjengelege frå Internett sidan .htaccess-fila ikkje fungerer.", +"For information how to properly configure your server, please see the documentation." => "Ver venleg og les dokumentasjonen for å læra korleis du set opp tenaren din på rett måte.", "Create an admin account" => "Lag ein admin-konto", "Advanced" => "Avansert", "Data folder" => "Datamappe", @@ -46,14 +121,19 @@ "Database user" => "Databasebrukar", "Database password" => "Databasepassord", "Database name" => "Databasenamn", +"Database tablespace" => "Tabellnamnrom for database", "Database host" => "Databasetenar", "Finish setup" => "Fullfør oppsettet", "web services under your control" => "Vevtenester under din kontroll", "Log out" => "Logg ut", -"Please change your password to secure your account again." => "Ver vennleg og endra passordet for å gjera kontoen din trygg igjen.", +"Automatic logon rejected!" => "Automatisk innlogging avvist!", +"If you did not change your password recently, your account may be compromised!" => "Viss du ikkje endra passordet ditt nyleg, så kan kontoen din vera kompromittert!", +"Please change your password to secure your account again." => "Ver venleg og endra passordet for å gjera kontoen din trygg igjen.", "Lost your password?" => "Gløymt passordet?", "remember" => "hugs", "Log in" => "Logg inn", +"Alternative Logins" => "Alternative innloggingar", "prev" => "førre", -"next" => "neste" +"next" => "neste", +"Updating ownCloud to version %s, this may take a while." => "Oppdaterer ownCloud til utgåve %s, dette kan ta ei stund." ); diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 0c56b494707..ee1ac44d026 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -125,7 +125,6 @@ "Database host" => "Host do banco de dados", "Finish setup" => "Concluir configuração", "web services under your control" => "serviços web sob seu controle", -"%s is available. Click here to get more information." => "%s está disponível. Click aqui para mais infoemações.", "Log out" => "Sair", "Automatic logon rejected!" => "Entrada Automática no Sistema Rejeitada!", "If you did not change your password recently, your account may be compromised!" => "Se você não mudou a sua senha recentemente, a sua conta pode estar comprometida!", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index d1df01fd6d7..54a0b94ec9e 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -88,6 +88,8 @@ "The update was successful. Redirecting you to ownCloud now." => "Обновление прошло успешно. Перенаправляемся в Ваш ownCloud...", "ownCloud password reset" => "Сброс пароля ", "Use the following link to reset your password: {link}" => "Используйте следующую ссылку чтобы сбросить пароль: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Ссылка для сброса пароля была отправлена ​​по электронной почте.
Если вы не получите его в пределах одной двух минут, проверьте папку спам.
Если это не возможно, обратитесь к Вашему администратору.", +"Request failed!
Did you make sure your email/username was right?" => "Что-то не так. Вы уверены что Email / Имя пользователя указаны верно?", "You will receive a link to reset your password via Email." => "На ваш адрес Email выслана ссылка для сброса пароля.", "Username" => "Имя пользователя", "Request reset" => "Запросить сброс", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index 90bdc4df109..d9f124b2b49 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -125,7 +125,6 @@ "Database host" => "Server databázy", "Finish setup" => "Dokončiť inštaláciu", "web services under your control" => "webové služby pod Vašou kontrolou", -"%s is available.
Click here to get more information." => "%s je dostupná. Pre viac informácií kliknite tu.", "Log out" => "Odhlásiť", "Automatic logon rejected!" => "Automatické prihlásenie bolo zamietnuté!", "If you did not change your password recently, your account may be compromised!" => "V nedávnej dobe ste nezmenili svoje heslo, Váš účet môže byť kompromitovaný.", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index cb54ede7fa4..db5583c6101 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -88,6 +88,8 @@ "The update was successful. Redirecting you to ownCloud now." => "Posodobitev je uspešno končana. Stran bo preusmerjena na oblak ownCloud.", "ownCloud password reset" => "Ponastavitev gesla za oblak ownCloud", "Use the following link to reset your password: {link}" => "Za ponastavitev gesla uporabite povezavo: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Povezava za ponastavitev gesla je bila poslana na elektronski naslov.
V kolikor sporočila ne prejmete v doglednem času, preverite tudi mape vsiljene pošte.
Če ne bo niti tam, stopite v stik s skrbnikom.", +"Request failed!
Did you make sure your email/username was right?" => "Zahteva je spodletela!
Ali sta elektronski naslov oziroma uporabniško ime navedena pravilno?", "You will receive a link to reset your password via Email." => "Na elektronski naslov boste prejeli povezavo za ponovno nastavitev gesla.", "Username" => "Uporabniško ime", "Request reset" => "Zahtevaj ponovno nastavitev", diff --git a/core/l10n/sq.php b/core/l10n/sq.php index 0d43b314009..8769a833e18 100644 --- a/core/l10n/sq.php +++ b/core/l10n/sq.php @@ -88,6 +88,8 @@ "The update was successful. Redirecting you to ownCloud now." => "Azhurnimi u krye. Tani do t'ju kaloj tek ownCloud-i.", "ownCloud password reset" => "Rivendosja e kodit të ownCloud-it", "Use the following link to reset your password: {link}" => "Përdorni lidhjen në vijim për të rivendosur kodin: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Lidhja për rivendosjen e kodit tuaj u dërgua tek email-i juaj.
Nëqoftëse nuk e merrni brenda një kohe të arsyeshme, kontrolloni dosjet e postës së padëshirueshme (spam).
Nëqoftëse nuk është as aty, pyesni administratorin tuaj lokal.", +"Request failed!
Did you make sure your email/username was right?" => "Kërkesa dështoi!
A u siguruat që email-i/përdoruesi juaj ishte i saktë?", "You will receive a link to reset your password via Email." => "Do t'iu vijë një email që përmban një lidhje për ta rivendosur kodin.", "Username" => "Përdoruesi", "Request reset" => "Bëj kërkesë për rivendosjen", diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 22a20d255a0..75c2b8c54c5 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "webdienste onder jou beheer" #: templates/layout.user.php:36 #, php-format -msgid "%s is available.
Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/ar/core.po b/l10n/ar/core.po index e22968d6732..9442b987a22 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "خدمات الشبكة تحت سيطرتك" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/be/core.po b/l10n/be/core.po index 4e32279b9bc..b35189b41ae 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index d1ca9b57359..eb678223979 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "уеб услуги под Ваш контрол" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index bb085ea0a6d..59b3c25b06d 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "ওয়েব সার্ভিস আপনার হাতের ম #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/ca/core.po b/l10n/ca/core.po index dd657863a1d..c28a6d7ac1c 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "controleu els vostres serveis web" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 5ace199d70f..76830c09503 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" -"PO-Revision-Date: 2013-04-28 08:20+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -563,8 +563,8 @@ msgstr "služby webu pod Vaší kontrolou" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." -msgstr "%s je dostupná. Pro více informací klikněte zde." +msgid "%s is available. Get more information on how to update." +msgstr "" #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 0c38104ecb0..4a7f86d0d28 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "gwasanaethau gwe a reolir gennych" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/da/core.po b/l10n/da/core.po index b46b1f14dc0..5d4fa6016a7 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "Webtjenester under din kontrol" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/de/core.po b/l10n/de/core.po index 9e7dac7c5b8..2057a46835c 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" -"PO-Revision-Date: 2013-04-28 06:40+0000\n" -"Last-Translator: arkascha \n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -563,8 +563,8 @@ msgstr "Web-Services unter Deiner Kontrolle" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." -msgstr "%s ist verfügbar. Klicke hier für weitere Informationen." +msgid "%s is available. Get more information on how to update." +msgstr "" #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index edc9ca40e44..d49333cbd67 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" -"PO-Revision-Date: 2013-04-28 06:50+0000\n" -"Last-Translator: arkascha \n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -563,8 +563,8 @@ msgstr "Web-Services unter Ihrer Kontrolle" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." -msgstr "%s ist verfügbar. Klicken Sie hier um weitere Informationen zu erhalten." +msgid "%s is available. Get more information on how to update." +msgstr "" #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index b2d2603e6fb..54713d05960 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 20:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -86,7 +86,7 @@ msgstr "Teilen" msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Löschen" @@ -156,66 +156,66 @@ msgstr "Ihr Speicher ist voll. Daher können keine Dateien mehr aktualisiert ode msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ihr Speicher ist fast voll ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien einen Moment dauern." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ihre Datei kann nicht hochgeladen werden, weil es sich um einen Ordner handelt oder 0 Bytes groß ist." -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Nicht genügend Speicherplatz verfügbar" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "Die URL darf nicht leer sein." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Fehler" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Name" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Größe" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 Datei" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} Dateien" @@ -279,37 +279,37 @@ msgstr "Gelöschte Dateien" msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "Sie haben hier keine Schreib-Berechtigungen." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Bitte laden Sie etwas hoch!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Freigabe aufheben" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Der Upload ist zu groß" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de_DE/files_versions.po b/l10n/de_DE/files_versions.po index e73f5ee0ada..4218653d90a 100644 --- a/l10n/de_DE/files_versions.po +++ b/l10n/de_DE/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:30+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 20:39+0000\n" +"Last-Translator: a.tangemann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 7edba8f574e..e5c54f4c71d 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" -"PO-Revision-Date: 2013-04-28 11:30+0000\n" -"Last-Translator: KAT.RAT12 \n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -564,7 +564,7 @@ msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/eo/core.po b/l10n/eo/core.po index cd1e7f51cec..e012849caa0 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "TTT-servoj regataj de vi" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/es/core.po b/l10n/es/core.po index 7889db38585..9c9f16c7a68 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" -"PO-Revision-Date: 2013-04-28 00:50+0000\n" -"Last-Translator: msoko \n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -563,8 +563,8 @@ msgstr "Servicios web bajo su control" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." -msgstr "% s está disponible. Haga clic aquí para obtener más información." +msgid "%s is available. Get more information on how to update." +msgstr "" #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 56391edf8eb..da161823531 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# scambra , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:17+0200\n" -"PO-Revision-Date: 2013-04-26 16:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 09:30+0000\n" +"Last-Translator: scambra \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" @@ -328,7 +329,7 @@ msgstr "Menos" msgid "Version" msgstr "Version" -#: templates/admin.php:238 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:108 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -562,7 +562,7 @@ msgstr "servicios web controlados por vos" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 19448feb03f..79e459216ac 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -563,7 +563,7 @@ msgstr "veebitenused sinu kontrolli all" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 17656482446..7f5af267bd9 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "web zerbitzuak zure kontrolpean" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/fa/core.po b/l10n/fa/core.po index a959be2bdbe..5e282fc91e9 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "سرویس های تحت وب در کنترل شما" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/fi/core.po b/l10n/fi/core.po index d2687b7e3f0..03746586e2a 100644 --- a/l10n/fi/core.po +++ b/l10n/fi/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -562,7 +562,7 @@ msgstr "" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 13fb881d86c..36d65066e3d 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -563,7 +563,7 @@ msgstr "verkkopalvelut hallinnassasi" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/fr/core.po b/l10n/fr/core.po index bbc1a2483d3..5b8b4cdeb02 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -563,7 +563,7 @@ msgstr "services web sous votre contrôle" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/gl/core.po b/l10n/gl/core.po index fd906b7f3ce..653026359c7 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" -"PO-Revision-Date: 2013-04-28 09:10+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -563,8 +563,8 @@ msgstr "servizos web baixo o seu control" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." -msgstr "%s está dispoñíbel. Prema aquí para obter máis información." +msgid "%s is available. Get more information on how to update." +msgstr "" #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/he/core.po b/l10n/he/core.po index 6ac13ac53e3..88f6865e1bd 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "שירותי רשת תחת השליטה שלך" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 7620137255c..09e45c10d5e 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/hr/core.po b/l10n/hr/core.po index cadc439bb6c..5ad69e813e1 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "web usluge pod vašom kontrolom" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 16bc01f9be7..75eab46f630 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "webszolgáltatások saját kézben" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/hy/core.po b/l10n/hy/core.po index 13fd7f3ee14..f393e4f5a2b 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -562,7 +562,7 @@ msgstr "" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 6ab4fa86234..8968d1e0668 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "servicios web sub tu controlo" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/id/core.po b/l10n/id/core.po index 93fd69a5048..99b5e5b934d 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "layanan web dalam kontrol Anda" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/is/core.po b/l10n/is/core.po index 9545dd71863..0fcf1d0e314 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "vefþjónusta undir þinni stjórn" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/it/core.po b/l10n/it/core.po index 7aeb7ab5b11..3d79a4e3e3b 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" -"PO-Revision-Date: 2013-04-28 23:30+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -563,8 +563,8 @@ msgstr "servizi web nelle tue mani" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." -msgstr "%s è disponibile. Fai clic qui per ottenere ulteriori informazioni." +msgid "%s is available. Get more information on how to update." +msgstr "" #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 3655678240a..dd62994b1b2 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "管理下のウェブサービス" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/ka/core.po b/l10n/ka/core.po index 076dca265bf..3840fc7208c 100644 --- a/l10n/ka/core.po +++ b/l10n/ka/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -562,7 +562,7 @@ msgstr "" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index c636f31b9b2..7051022af7b 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "web services under your control" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/kn/core.po b/l10n/kn/core.po index c40471762db..b412b63b1ff 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 7b37e969788..2e8b6e43eb6 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -563,7 +563,7 @@ msgstr "내가 관리하는 웹 서비스" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 62149976055..4be0cb61d85 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 11df2e322d4..297e614c2b0 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "Web Servicer ënnert denger Kontroll" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 736c625c245..ad40286f05b 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "jūsų valdomos web paslaugos" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 941cd8bc50c..ed8d247b10d 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "tīmekļa servisi tavā varā" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 3591f82272d..cca6e22f555 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "веб сервиси под Ваша контрола" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 5b01217b802..4559ef41db5 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "Perkhidmatan web di bawah kawalan anda" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 7a389980504..46e82a3f92c 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တ #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index bd80d433d86..fb7fcade402 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "web tjenester du kontrollerer" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/ne/core.po b/l10n/ne/core.po index 1571dcf0272..c5b6a57bbb9 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 74d93312d5c..9694e44327b 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" -"PO-Revision-Date: 2013-04-28 21:00+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -563,8 +563,8 @@ msgstr "Webdiensten in eigen beheer" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." -msgstr "%s is beschikbaar. Klik hier voor meer informatie." +msgid "%s is available. Get more information on how to update." +msgstr "" #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 3e81de1b303..c2f9d6ea436 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" -"PO-Revision-Date: 2013-04-28 22:20+0000\n" -"Last-Translator: unhammer \n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,65 +21,65 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "Brukaren %s delte ei fil med deg" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "Brukaren %s delte ei mappe med deg" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "Brukaren %s delte fila «%s» med deg. Du kan lasta ho ned her: %s" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "Brukaren %s delte mappa «%s» med deg. Du kan lasta ho ned her: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "" +msgstr "Ingen kategoritype." #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "" +msgstr "Ingen kategori å leggja til?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "Denne kategorien finst alt: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "" +msgstr "Ingen objekttype." #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "" +msgstr "Ingen %s-ID." #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "" +msgstr "Klarte ikkje å leggja til %s i favorittar." #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "" +msgstr "Ingen kategoriar valt for sletting." #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "" +msgstr "Klarte ikkje å fjerna %s frå favorittar." #: js/config.php:34 msgid "Sunday" @@ -163,80 +163,80 @@ msgstr "Innstillingar" #: js/js.js:718 msgid "seconds ago" -msgstr "" +msgstr "sekund sidan" #: js/js.js:719 msgid "1 minute ago" -msgstr "" +msgstr "1 minutt sidan" #: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "" +msgstr "{minutes} minutt sidan" #: js/js.js:721 msgid "1 hour ago" -msgstr "" +msgstr "1 time sidan" #: js/js.js:722 msgid "{hours} hours ago" -msgstr "" +msgstr "{hours} timar sidan" #: js/js.js:723 msgid "today" -msgstr "" +msgstr "i dag" #: js/js.js:724 msgid "yesterday" -msgstr "" +msgstr "i går" #: js/js.js:725 msgid "{days} days ago" -msgstr "" +msgstr "{days} dagar sidan" #: js/js.js:726 msgid "last month" -msgstr "" +msgstr "førre månad" #: js/js.js:727 msgid "{months} months ago" -msgstr "" +msgstr "{months) månader sidan" #: js/js.js:728 msgid "months ago" -msgstr "" +msgstr "månader sidan" #: js/js.js:729 msgid "last year" -msgstr "" +msgstr "i fjor" #: js/js.js:730 msgid "years ago" -msgstr "" +msgstr "år sidan" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "" +msgstr "Greitt" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "Kanseller" +msgstr "Avbryt" #: js/oc-dialogs.js:185 msgid "Choose" -msgstr "" +msgstr "Vel" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "" +msgstr "Ja" #: js/oc-dialogs.js:222 msgid "No" -msgstr "" +msgstr "Nei" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "" +msgstr "Objekttypen er ikkje spesifisert." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -248,51 +248,51 @@ msgstr "Feil" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "" +msgstr "App-namnet er ikkje spesifisert." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "" +msgstr "Den kravde fila {file} er ikkje installert!" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "" +msgstr "Delt" #: js/share.js:90 msgid "Share" -msgstr "" +msgstr "Del" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "" +msgstr "Feil ved deling" #: js/share.js:136 msgid "Error while unsharing" -msgstr "" +msgstr "Feil ved udeling" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "" +msgstr "Feil ved endring av tillatingar" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "Delt med deg og gruppa {group} av {owner}" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "" +msgstr "Delt med deg av {owner}" #: js/share.js:159 msgid "Share with" -msgstr "" +msgstr "Del med" #: js/share.js:164 msgid "Share with link" -msgstr "" +msgstr "Del med lenkje" #: js/share.js:167 msgid "Password protect" -msgstr "" +msgstr "Passordvern" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" @@ -300,117 +300,117 @@ msgstr "Passord" #: js/share.js:173 msgid "Email link to person" -msgstr "" +msgstr "Send lenkja over e-post" #: js/share.js:174 msgid "Send" -msgstr "" +msgstr "Send" #: js/share.js:178 msgid "Set expiration date" -msgstr "" +msgstr "Set utlaupsdato" #: js/share.js:179 msgid "Expiration date" -msgstr "" +msgstr "Utlaupsdato" #: js/share.js:211 msgid "Share via email:" -msgstr "" +msgstr "Del over e-post:" #: js/share.js:213 msgid "No people found" -msgstr "" +msgstr "Fann ingen personar" #: js/share.js:251 msgid "Resharing is not allowed" -msgstr "" +msgstr "Vidaredeling er ikkje tillate" #: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "Delt i {item} med {brukar}" #: js/share.js:308 msgid "Unshare" -msgstr "" +msgstr "Udel" #: js/share.js:320 msgid "can edit" -msgstr "" +msgstr "kan endra" #: js/share.js:322 msgid "access control" -msgstr "" +msgstr "tilgangskontroll" #: js/share.js:325 msgid "create" -msgstr "" +msgstr "lag" #: js/share.js:328 msgid "update" -msgstr "" +msgstr "oppdater" #: js/share.js:331 msgid "delete" -msgstr "" +msgstr "slett" #: js/share.js:334 msgid "share" -msgstr "" +msgstr "del" #: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "" +msgstr "Passordverna" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Klarte ikkje å fjerna utlaupsdato" #: js/share.js:589 msgid "Error setting expiration date" -msgstr "" +msgstr "Klarte ikkje å setja utlaupsdato" #: js/share.js:604 msgid "Sending ..." -msgstr "" +msgstr "Sender …" #: js/share.js:615 msgid "Email sent" -msgstr "" +msgstr "E-post sendt" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "" +msgstr "Oppdateringa feila. Ver venleg og rapporter feilen til ownCloud-fellesskapet." #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "Oppdateringa er fullført. Sender deg vidare til ownCloud no." #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "" +msgstr "Nullstilling av ownCloud-passord" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Bruk føljane link til å tilbakestille passordet ditt: {link}" +msgstr "Klikk følgjande lenkje til å nullstilla passordet ditt: {link}" #: lostpassword/templates/lostpassword.php:4 msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "Lenkja til å nullstilla passordet med er sendt til e-posten din.
Sjå i spam-/søppelmappa di viss du ikkje ser e-posten innan rimeleg tid.
Spør din lokale administrator viss han ikkje er der heller." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "Førespurnaden feila!
Er du viss på at du skreiv inn rett e-post/brukarnamn?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." -msgstr "Du vil få ei lenkje for å nullstilla passordet via epost." +msgstr "Du vil få ein e-post med ei lenkje for å nullstilla passordet." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 #: templates/login.php:19 @@ -427,7 +427,7 @@ msgstr "Passordet ditt er nullstilt" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Til innloggings sida" +msgstr "Til innloggingssida" #: lostpassword/templates/resetpassword.php:8 msgid "New password" @@ -451,7 +451,7 @@ msgstr "Applikasjonar" #: strings.php:8 msgid "Admin" -msgstr "Administrer" +msgstr "Admin" #: strings.php:9 msgid "Help" @@ -459,7 +459,7 @@ msgstr "Hjelp" #: templates/403.php:12 msgid "Access forbidden" -msgstr "" +msgstr "Tilgang forbudt" #: templates/404.php:12 msgid "Cloud not found" @@ -467,7 +467,7 @@ msgstr "Fann ikkje skyen" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "" +msgstr "Endra kategoriar" #: templates/edit_categories_dialog.php:16 msgid "Add" @@ -476,40 +476,40 @@ msgstr "Legg til" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "" +msgstr "Tryggleiksåtvaring" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "PHP-utgåva di er sårbar for NULL-byteåtaket (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "Ver venleg og oppdater PHP-installasjonen din så han køyrer ownCloud på ein trygg måte." #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Ingen tilgjengeleg tilfeldig nummer-generator, ver vennleg og aktiver OpenSSL-utvidinga i PHP." +msgstr "Ingen tilgjengeleg tilfeldig nummer-generator, ver venleg og aktiver OpenSSL-utvidinga i PHP." #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "" +msgstr "Utan ein trygg tilfeldig nummer-generator er det enklare for ein åtakar å gjetta seg fram til passordnullstillingskodar og dimed ta over kontoen din." #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "Datamappa og filene dine er sannsynlegvis tilgjengelege frå Internett sidan .htaccess-fila ikkje fungerer." #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "Ver venleg og les dokumentasjonen for å læra korleis du set opp tenaren din på rett måte." #: templates/installation.php:44 msgid "Create an admin account" @@ -547,7 +547,7 @@ msgstr "Databasenamn" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "" +msgstr "Tabellnamnrom for database" #: templates/installation.php:166 msgid "Database host" @@ -563,7 +563,7 @@ msgstr "Vevtenester under din kontroll" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 @@ -572,17 +572,17 @@ msgstr "Logg ut" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "" +msgstr "Automatisk innlogging avvist!" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "" +msgstr "Viss du ikkje endra passordet ditt nyleg, så kan kontoen din vera kompromittert!" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Ver vennleg og endra passordet for å gjera kontoen din trygg igjen." +msgstr "Ver venleg og endra passordet for å gjera kontoen din trygg igjen." #: templates/login.php:34 msgid "Lost your password?" @@ -598,7 +598,7 @@ msgstr "Logg inn" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "" +msgstr "Alternative innloggingar" #: templates/part.pagenavi.php:3 msgid "prev" @@ -611,4 +611,4 @@ msgstr "neste" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Oppdaterer ownCloud til utgåve %s, dette kan ta ei stund." diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 975ecc34f7c..388d90f63a9 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# unhammer , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 17:50+0000\n" +"Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,20 +21,20 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "Klarte ikkje å flytta %s – det finst allereie ei fil med dette namnet" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "Klarte ikkje å flytta %s" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "" +msgstr "Klarte ikkje å endra filnamnet" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Ingen filer lasta opp. Ukjend feil" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" @@ -42,7 +43,7 @@ msgstr "Ingen feil, fila vart lasta opp" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "Fila du lasta opp er større enn det «upload_max_filesize» i php.ini tillater: " #: ajax/upload.php:29 msgid "" @@ -64,15 +65,15 @@ msgstr "Manglar ei mellombels mappe" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "" +msgstr "Klarte ikkje å skriva til disk" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "" +msgstr "Ikkje nok lagringsplass tilgjengeleg" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "" +msgstr "Ugyldig mappe." #: appinfo/app.php:12 msgid "Files" @@ -80,144 +81,144 @@ msgstr "Filer" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "Del" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "" +msgstr "Slett for godt" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Slett" #: js/fileactions.js:194 msgid "Rename" -msgstr "" +msgstr "Endra namn" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "" +msgstr "Under vegs" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "" +msgstr "{new_name} finst allereie" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "" +msgstr "byt ut" #: js/filelist.js:252 msgid "suggest name" -msgstr "" +msgstr "føreslå namn" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "" +msgstr "avbryt" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "" +msgstr "bytte ut {new_name} med {old_name}" #: js/filelist.js:299 msgid "undo" -msgstr "" +msgstr "angre" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "" +msgstr "utfør sletting" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "" +msgstr "1 fil lastar opp" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "" +msgstr "filer lastar opp" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "" +msgstr "«.» er eit ugyldig filnamn." #: js/files.js:56 msgid "File name cannot be empty." -msgstr "" +msgstr "Filnamnet kan ikkje vera tomt." #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "Ugyldig namn, «\\», «/», «<», «>», «:», «\"», «|», «?» og «*» er ikkje tillate." #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "Lagringa di er full, kan ikkje lenger oppdatera eller synkronisera!" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "Lagringa di er nesten full ({usedSpacePercent} %)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "Gjer klar nedlastinga di. Dette kan ta ei stund viss filene er store." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Klarte ikkje å lasta opp fila sidan ho er ei mappe eller er på 0 byte" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" -msgstr "" +msgstr "Ikkje nok lagringsplass tilgjengeleg" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." -msgstr "" +msgstr "Opplasting avbroten." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Fila lastar no opp. Viss du forlèt sida no vil opplastinga bli avbroten." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." -msgstr "" +msgstr "URL-en kan ikkje vera tom." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Ugyldig mappenamn. Mappa «Shared» er reservert av ownCloud" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Feil" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Namn" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Storleik" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Endra" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" -msgstr "" +msgstr "1 mappe" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" -msgstr "" +msgstr "{count} mapper" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" -msgstr "" +msgstr "1 fil" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" -msgstr "" +msgstr "{count} filer" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -225,7 +226,7 @@ msgstr "Last opp" #: templates/admin.php:5 msgid "File handling" -msgstr "" +msgstr "Filhandtering" #: templates/admin.php:7 msgid "Maximum upload size" @@ -233,23 +234,23 @@ msgstr "Maksimal opplastingsstorleik" #: templates/admin.php:10 msgid "max. possible: " -msgstr "" +msgstr "maks. moglege:" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "" +msgstr "Naudsynt for fleirfils- og mappenedlastingar." #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "" +msgstr "Skru på ZIP-nedlasting" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "" +msgstr "0 er ubegrensa" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "" +msgstr "Maksimal storleik for ZIP-filer" #: templates/admin.php:26 msgid "Save" @@ -269,50 +270,50 @@ msgstr "Mappe" #: templates/index.php:14 msgid "From link" -msgstr "" +msgstr "Frå lenkje" #: templates/index.php:42 msgid "Deleted files" -msgstr "" +msgstr "Sletta filer" #: templates/index.php:48 msgid "Cancel upload" -msgstr "" +msgstr "Avbryt opplasting" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." -msgstr "" +msgstr "Du har ikkje skriverettar her." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last noko opp!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Last ned" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" -msgstr "" +msgstr "Udel" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "For stor opplasting" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filene du prøver å laste opp er større enn maksgrensa til denne tenaren." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." -msgstr "" +msgstr "Skannar filer, ver venleg og vent." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" -msgstr "" +msgstr "Køyrande skanning" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "Oppgraderer mellomlageret av filsystemet …" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 588f67977a7..14a63b14629 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:30+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 14:40+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" @@ -41,7 +41,7 @@ msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "" +msgstr "Slett for godt" #: js/trash.js:174 templates/index.php:17 msgid "Name" @@ -53,19 +53,19 @@ msgstr "" #: js/trash.js:184 msgid "1 folder" -msgstr "" +msgstr "1 mappe" #: js/trash.js:186 msgid "{count} folders" -msgstr "" +msgstr "{count} mapper" #: js/trash.js:194 msgid "1 file" -msgstr "" +msgstr "1 fil" #: js/trash.js:196 msgid "{count} files" -msgstr "" +msgstr "{count} filer" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 82db481dcd5..9521606544a 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" -"PO-Revision-Date: 2013-04-28 22:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 17:40+0000\n" +"Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -176,20 +176,20 @@ msgstr "" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Tenaren din er ikkje enno rett innstilt til å tilby filsynkronisering sidan WebDAV-grensesnittet ser ut til å vera øydelagt." #: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Ver vennleg og dobbeltsjekk installasjonsrettleiinga." #: template.php:113 msgid "seconds ago" -msgstr "" +msgstr "sekund sidan" #: template.php:114 msgid "1 minute ago" -msgstr "" +msgstr "1 minutt sidan" #: template.php:115 #, php-format @@ -198,7 +198,7 @@ msgstr "" #: template.php:116 msgid "1 hour ago" -msgstr "" +msgstr "1 time sidan" #: template.php:117 #, php-format @@ -207,11 +207,11 @@ msgstr "" #: template.php:118 msgid "today" -msgstr "" +msgstr "i dag" #: template.php:119 msgid "yesterday" -msgstr "" +msgstr "i går" #: template.php:120 #, php-format @@ -220,7 +220,7 @@ msgstr "" #: template.php:121 msgid "last month" -msgstr "" +msgstr "førre månad" #: template.php:122 #, php-format @@ -229,11 +229,11 @@ msgstr "" #: template.php:123 msgid "last year" -msgstr "" +msgstr "i fjor" #: template.php:124 msgid "years ago" -msgstr "" +msgstr "år sidan" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 00b5185d128..ac35cb7aedc 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" -"PO-Revision-Date: 2013-04-28 22:10+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 17:40+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Klarer ikkje å laste inn liste fra App Store" +msgstr "Klarer ikkje å lasta inn liste fra app-butikken" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 @@ -73,7 +73,7 @@ msgstr "Ugyldig førespurnad" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Administratorar kan ikkje fjerna seg sjølv frå admin-gruppa" +msgstr "Administratorar kan ikkje fjerna seg sjølve frå admin-gruppa" #: ajax/togglegroups.php:30 #, php-format @@ -103,7 +103,7 @@ msgstr "Slå på" #: js/apps.js:55 msgid "Please wait...." -msgstr "Ver vennleg og vent …" +msgstr "Ver venleg og vent …" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" @@ -111,31 +111,31 @@ msgstr "Feil" #: js/apps.js:90 msgid "Updating...." -msgstr "" +msgstr "Oppdaterer …" #: js/apps.js:93 msgid "Error while updating app" -msgstr "" +msgstr "Feil ved oppdatering av app" #: js/apps.js:96 msgid "Updated" -msgstr "" +msgstr "Oppdatert" #: js/personal.js:118 msgid "Saving..." -msgstr "" +msgstr "Lagrar …" #: js/users.js:43 msgid "deleted" -msgstr "" +msgstr "sletta" #: js/users.js:43 msgid "undo" -msgstr "" +msgstr "angra" #: js/users.js:75 msgid "Unable to remove user" -msgstr "" +msgstr "Klarte ikkje å fjerna brukaren" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 @@ -144,7 +144,7 @@ msgstr "Grupper" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "" +msgstr "Gruppestyrar" #: js/users.js:111 templates/users.php:155 msgid "Delete" @@ -152,19 +152,19 @@ msgstr "Slett" #: js/users.js:262 msgid "add group" -msgstr "" +msgstr "legg til gruppe" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "" +msgstr "Du må oppgje eit gyldig brukarnamn" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "" +msgstr "Feil ved oppretting av brukar" #: js/users.js:420 msgid "A valid password must be provided" -msgstr "" +msgstr "Du må oppgje eit gyldig passord" #: personal.php:35 personal.php:36 msgid "__language_name__" @@ -172,7 +172,7 @@ msgstr "Nynorsk" #: templates/admin.php:15 msgid "Security Warning" -msgstr "" +msgstr "Tryggleiksåtvaring" #: templates/admin.php:18 msgid "" @@ -181,36 +181,36 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "" +msgstr "Datamappa og filene dine er sannsynlegvis tilgjengelege frå Internett. Fila .htaccess som ownCloud tilbyr fungerer ikkje. Me rår sterkt til at du set opp tenaren din slik at datamappa ikkje lenger er tilgjengeleg, eller at du flyttar datamappa vekk frå dokumentrota til tenaren." #: templates/admin.php:29 msgid "Setup Warning" -msgstr "" +msgstr "Oppsettsåtvaring" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Tenaren din er ikkje enno rett innstilt til å tilby filsynkronisering sidan WebDAV-grensesnittet ser ut til å vera øydelagt." #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Ver venleg og dobbeltsjekk installasjonsrettleiinga." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "Modulen «fileinfo» manglar" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +msgstr "PHP-modulen «fileinfo» manglar. Me rår sterkt til å skru på denne modulen for å best mogleg oppdaga MIME-typar." #: templates/admin.php:58 msgid "Locale not working" -msgstr "" +msgstr "Regionaldata fungerer ikkje" #: templates/admin.php:63 #, php-format @@ -218,11 +218,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "" +msgstr "Denne ownCloud-tenaren kan ikkje stilla regionen til %s. Dette tyder at det kan vera problem med visse teikn i filnamn. Me rår sterkt til å installera systempakkane som krevst for å støtta %s." #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "" +msgstr "Nettilkoplinga fungerer ikkje" #: templates/admin.php:78 msgid "" @@ -232,86 +232,86 @@ msgid "" "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" " of ownCloud." -msgstr "Denne ownCloud-tenaren har ikkje nokon fungerande nettilkopling. Difor vil visse funksjonar, t.d. montering av ekstern lagring, varsling om oppdatering, eller installering av tredjepartsapplikasjonar ikkje fungera. Varslingsepostar og ekstern tilgang til filer vil kanskje heller ikkje fungera. Me foreslår at du skrur på nettilkoplinga til denne tenaren viss du vil bruka alle funksjonane til ownCloud." +msgstr "Denne ownCloud-tenaren har ikkje nokon fungerande nettilkopling. Difor vil visse funksjonar, t.d. montering av ekstern lagring, varsling om oppdatering, eller installering av tredjepartsapplikasjonar ikkje fungera. Varslingsepostar og ekstern tilgang til filer vil kanskje heller ikkje fungera. Me foreslår at du skrur på nettilkoplinga til denne tenaren viss du vil nytta alle funksjonane til ownCloud." #: templates/admin.php:92 msgid "Cron" -msgstr "" +msgstr "Cron" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Utfør éi oppgåve for kvar sidelasting" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php er registrert ved ei webcron-teneste. Last sida cron.php i ownCloud-rota ein gong i minuttet over http." #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Bruk cron-tenesta til systemet. Køyr fila cron.php i ownCloud-mappa frå ein cron-jobb på systemet ein gong i minuttet." #: templates/admin.php:128 msgid "Sharing" -msgstr "" +msgstr "Deling" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "" +msgstr "Skru på API-et for deling" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "La app-ar bruka API-et til deling" #: templates/admin.php:142 msgid "Allow links" -msgstr "" +msgstr "Tillat lenkjer" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "La brukarar dela ting offentleg med lenkjer" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "" +msgstr "Tillat vidaredeling" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "La brukarar vidaredela delte ting" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "" +msgstr "La brukarar dela med kven som helst" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "La brukarar dela berre med brukarar i deira grupper" #: templates/admin.php:168 msgid "Security" -msgstr "" +msgstr "Tryggleik" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "" +msgstr "Krev HTTPS" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "" +msgstr "Krev at klientar koplar til ownCloud med ei kryptert tilkopling." #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "" +msgstr "Ver venleg og kopla denne ownCloud-instansen til via HTTPS for å skru av/på SSL-handhevinga." #: templates/admin.php:195 msgid "Log" -msgstr "" +msgstr "Logg" #: templates/admin.php:196 msgid "Log level" @@ -319,15 +319,15 @@ msgstr "Log nivå" #: templates/admin.php:227 msgid "More" -msgstr "" +msgstr "Meir" #: templates/admin.php:228 msgid "Less" -msgstr "" +msgstr "Mindre" #: templates/admin.php:235 templates/personal.php:105 msgid "Version" -msgstr "" +msgstr "Utgåve" #: templates/admin.php:237 templates/personal.php:108 msgid "" @@ -337,15 +337,15 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "Kjeldekoden, utvikla av ownCloud-fellesskapet, er lisensiert under AGPL." #: templates/apps.php:11 msgid "Add your App" -msgstr "" +msgstr "Legg til din app" #: templates/apps.php:12 msgid "More Apps" -msgstr "" +msgstr "Fleire app-ar" #: templates/apps.php:28 msgid "Select an App" @@ -353,11 +353,11 @@ msgstr "Vel ein applikasjon" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "Sjå applikasjonssida på apps.owncloud.com" #: templates/apps.php:36 msgid "-licensed by " -msgstr "" +msgstr "Lisensiert under av " #: templates/apps.php:38 msgid "Update" @@ -365,40 +365,40 @@ msgstr "Oppdater" #: templates/help.php:4 msgid "User Documentation" -msgstr "" +msgstr "Brukardokumentasjon" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "" +msgstr "Administratordokumentasjon" #: templates/help.php:9 msgid "Online Documentation" -msgstr "" +msgstr "Dokumentasjon på nett" #: templates/help.php:11 msgid "Forum" -msgstr "" +msgstr "Forum" #: templates/help.php:14 msgid "Bugtracker" -msgstr "" +msgstr "Feilsporar" #: templates/help.php:17 msgid "Commercial Support" -msgstr "" +msgstr "Betalt brukarstøtte" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "" +msgstr "Du har brukt %s av dine tilgjengelege %s" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "" +msgstr "Få app-ar som kan synkronisera filene dine" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "" +msgstr "Vis Oppstartvegvisaren igjen" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" @@ -406,7 +406,7 @@ msgstr "Passord" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "" +msgstr "Passordet ditt er endra" #: templates/personal.php:39 msgid "Unable to change your password" @@ -426,7 +426,7 @@ msgstr "Endra passord" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "" +msgstr "Visningsnamn" #: templates/personal.php:68 msgid "Email" @@ -446,19 +446,19 @@ msgstr "Språk" #: templates/personal.php:89 msgid "Help translate" -msgstr "Hjelp oss å oversett" +msgstr "Hjelp oss å omsetja" #: templates/personal.php:94 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:96 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Bruk denne adressa for å kopla til din ownCloud frå filhandsamaren din" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "" +msgstr "Innloggingsnamn" #: templates/users.php:30 msgid "Create" @@ -466,11 +466,11 @@ msgstr "Lag" #: templates/users.php:33 msgid "Default Storage" -msgstr "" +msgstr "Standardlagring" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "" +msgstr "Ubegrensa" #: templates/users.php:57 templates/users.php:148 msgid "Other" @@ -478,16 +478,16 @@ msgstr "Anna" #: templates/users.php:82 msgid "Storage" -msgstr "" +msgstr "Lagring" #: templates/users.php:93 msgid "change display name" -msgstr "" +msgstr "endra visningsnamn" #: templates/users.php:97 msgid "set new password" -msgstr "" +msgstr "lag nytt passord" #: templates/users.php:128 msgid "Default" -msgstr "" +msgstr "Standard" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index cfe04502c9d..7e55cfc6760 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "Services web jos ton contraròtle" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/pl/core.po b/l10n/pl/core.po index fdcebbcf3b3..ea1cd8ebbc9 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "Kontrolowane serwisy" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/pl_PL/core.po b/l10n/pl_PL/core.po index 594e91a9ef7..39727ca3bad 100644 --- a/l10n/pl_PL/core.po +++ b/l10n/pl_PL/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -562,7 +562,7 @@ msgstr "" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 9080566d6f5..663c38c70f9 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" -"PO-Revision-Date: 2013-04-28 13:50+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -563,8 +563,8 @@ msgstr "serviços web sob seu controle" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." -msgstr "%s está disponível. Click aqui para mais infoemações." +msgid "%s is available. Get more information on how to update." +msgstr "" #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 305f104efab..9fd8df290be 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "serviços web sob o seu controlo" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/ro/core.po b/l10n/ro/core.po index f7aa13b05c8..a5db03c655c 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -563,7 +563,7 @@ msgstr "servicii web controlate de tine" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/ru/core.po b/l10n/ru/core.po index fb18d6e89c9..5cb4935c7fd 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Vyacheslav Muranov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -401,11 +402,11 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "Ссылка для сброса пароля была отправлена ​​по электронной почте.
Если вы не получите его в пределах одной двух минут, проверьте папку спам.
Если это не возможно, обратитесь к Вашему администратору." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "Что-то не так. Вы уверены что Email / Имя пользователя указаны верно?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -562,7 +563,7 @@ msgstr "веб-сервисы под вашим управлением" #: templates/layout.user.php:36 #, php-format -msgid "%s is available.
Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index 2a928621eff..bfbe3274c45 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -562,7 +562,7 @@ msgstr "" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index b718aac8ac7..56ebb8d4052 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවා #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 25986ed8e27..267759adece 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 492549a35e8..bac1aabe45c 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" -"PO-Revision-Date: 2013-04-28 18:50+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -563,8 +563,8 @@ msgstr "webové služby pod Vašou kontrolou" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." -msgstr "%s je dostupná. Pre viac informácií kliknite tu." +msgid "%s is available. Get more information on how to update." +msgstr "" #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index d1f51f0328a..c420c56eafc 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mateju <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -401,11 +402,11 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "Povezava za ponastavitev gesla je bila poslana na elektronski naslov.
V kolikor sporočila ne prejmete v doglednem času, preverite tudi mape vsiljene pošte.
Če ne bo niti tam, stopite v stik s skrbnikom." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "Zahteva je spodletela!
Ali sta elektronski naslov oziroma uporabniško ime navedena pravilno?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -562,7 +563,7 @@ msgstr "spletne storitve pod vašim nadzorom" #: templates/layout.user.php:36 #, php-format -msgid "%s is available.
Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 4219b03122d..9b471162289 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mateju <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:29+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 18:20+0000\n" +"Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,14 +49,14 @@ msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "Opozorilo: podpora FTP v PHP ni omogočena ali pa ni nameščena. Priklapljanje pogonov FTP zato ni mogoče." +msgstr "Opozorilo: podpora FTP v PHP ni omogočena ali pa ni nameščena. Priklapljanje pogonov FTP zato ne bo mogoče." #: lib/config.php:437 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "Opozorilo: podpora za Curl v PHP ni omogočena ali pa ni nameščena. Priklapljanje točke ownCloud / WebDAV ali GoogleDrive zato ne bo mogoče. Zahtevane pakete je treba pred uporabo namestiti." #: templates/settings.php:3 msgid "External Storage" @@ -108,7 +109,7 @@ msgstr "Izbriši" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Omogoči uporabniško zunanjo podatkovno shrambo" +msgstr "Omogoči zunanjo uporabniško podatkovno shrambo" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index f334cda7411..636c2a101d7 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 18:10+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" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 740ad3abb6f..65640901d20 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mateju <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:17+0200\n" -"PO-Revision-Date: 2013-04-26 16:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 18:10+0000\n" +"Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,16 +20,16 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Ni mogoče naložiti seznama iz središča App Store" +msgstr "Ni mogoče naložiti seznama iz programskega središča" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Napaka pri overjanju" +msgstr "Napaka med overjanjem" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "Prikazano ime je bilo spremenjeno." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" @@ -328,7 +329,7 @@ msgstr "Manj" msgid "Version" msgstr "Različica" -#: templates/admin.php:238 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:108 msgid "" "Developed by the ownCloud community, the , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -401,11 +402,11 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "Lidhja për rivendosjen e kodit tuaj u dërgua tek email-i juaj.
Nëqoftëse nuk e merrni brenda një kohe të arsyeshme, kontrolloni dosjet e postës së padëshirueshme (spam).
Nëqoftëse nuk është as aty, pyesni administratorin tuaj lokal." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "Kërkesa dështoi!
A u siguruat që email-i/përdoruesi juaj ishte i saktë?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -562,7 +563,7 @@ msgstr "shërbime web nën kontrollin tënd" #: templates/layout.user.php:36 #, php-format -msgid "%s is available.
Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 6a58a4d818e..7ad44cb2f89 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:17+0200\n" -"PO-Revision-Date: 2013-04-26 08:28+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 22:00+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" @@ -328,7 +328,7 @@ msgstr "" msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:108 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -562,7 +562,7 @@ msgstr "веб сервиси под контролом" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index d66d1df95ef..555da08b9e8 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 3ee364159f8..800698a5ad1 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "webbtjänster under din kontroll" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index 5e07108b521..09988ffea27 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index a0b6427fe4e..40d5b280c9b 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "வலைய சேவைகள் உங்களுடைய கட் #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/te/core.po b/l10n/te/core.po index e4fb340b125..5e3424a27a1 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 61c1dba6ce7..43806ecc132 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -562,7 +562,7 @@ msgstr "" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 9958d9a9a77..e4dcc585eec 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -86,7 +86,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "" @@ -156,66 +156,66 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "" @@ -279,37 +279,37 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 7b345c7edd5..0dbd3c7505f 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index f6af20af12e..99ed6fe07c3 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 485f516e155..d36a214d44f 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 60cd70dff4c..e8d8e484a42 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index a6be10135b8..63354ff4ad6 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index f78499f176c..84cafdb47bc 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 7694e52c0c9..2e98212a05c 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 9118466368c..a6a852ad6f4 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 44ef971c922..a6324aaed71 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 3e95197c83d..daec53114a6 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "เว็บเซอร์วิสที่คุณควบคุม #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 40034dc2d60..20f16df25d0 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "Bilgileriniz güvenli ve şifreli" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 98111065759..8c37c907369 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "підконтрольні Вам веб-сервіси" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index ea5ffb43c17..dab44591bda 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "آپ کے اختیار میں ویب سروسیز" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 4abdceb040c..d664c1fa066 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "dịch vụ web dưới sự kiểm soát của bạn" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 9ce66c7899c..3722c01c658 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -562,7 +562,7 @@ msgstr "您控制的网络服务" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 2a7d6a6846f..1b9c3c88568 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "您控制的web服务" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 2750308a1a2..524bd63e932 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index e558416dc1b..1191b8653f1 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"PO-Revision-Date: 2013-04-29 23:57+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" @@ -562,7 +562,7 @@ msgstr "由您控制的網路服務" #: templates/layout.user.php:36 #, php-format -msgid "%s is available. Click here to get more information." +msgid "%s is available. Get more information on how to update." msgstr "" #: templates/layout.user.php:61 diff --git a/lib/l10n/nn_NO.php b/lib/l10n/nn_NO.php index 6f7f8046e6e..f8f15c9fba6 100644 --- a/lib/l10n/nn_NO.php +++ b/lib/l10n/nn_NO.php @@ -7,5 +7,15 @@ "Admin" => "Administrer", "Authentication error" => "Feil i autentisering", "Files" => "Filer", -"Text" => "Tekst" +"Text" => "Tekst", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Tenaren din er ikkje enno rett innstilt til å tilby filsynkronisering sidan WebDAV-grensesnittet ser ut til å vera øydelagt.", +"Please double check the installation guides." => "Ver vennleg og dobbeltsjekk installasjonsrettleiinga.", +"seconds ago" => "sekund sidan", +"1 minute ago" => "1 minutt sidan", +"1 hour ago" => "1 time sidan", +"today" => "i dag", +"yesterday" => "i går", +"last month" => "førre månad", +"last year" => "i fjor", +"years ago" => "år sidan" ); diff --git a/settings/l10n/es.php b/settings/l10n/es.php index b4bd555cb8e..3db3169ca87 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -104,7 +104,7 @@ "Default Storage" => "Almacenamiento Predeterminado", "Unlimited" => "Ilimitado", "Other" => "Otro", -"Storage" => "Alamacenamiento", +"Storage" => "Almacenamiento", "change display name" => "Cambiar nombre a mostrar", "set new password" => "Configurar nueva contraseña", "Default" => "Predeterminado" diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 4f76253ff24..0e4d0a66a14 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -1,5 +1,5 @@ "Klarer ikkje å laste inn liste fra App Store", +"Unable to load list from App Store" => "Klarer ikkje å lasta inn liste fra app-butikken", "Authentication error" => "Autentiseringsfeil", "Your display name has been changed." => "Visningsnamnet ditt er endra.", "Unable to change display name" => "Klarte ikkje å endra visningsnamnet", @@ -12,32 +12,100 @@ "Unable to delete user" => "Klarte ikkje å sletta brukaren", "Language changed" => "Språk endra", "Invalid request" => "Ugyldig førespurnad", -"Admins can't remove themself from the admin group" => "Administratorar kan ikkje fjerna seg sjølv frå admin-gruppa", +"Admins can't remove themself from the admin group" => "Administratorar kan ikkje fjerna seg sjølve frå admin-gruppa", "Unable to add user to group %s" => "Klarte ikkje å leggja til brukaren til gruppa %s", "Unable to remove user from group %s" => "Klarte ikkje å fjerna brukaren frå gruppa %s", "Couldn't update app." => "Klarte ikkje å oppdatera app-en.", "Update to {appversion}" => "Oppdater til {appversion}", "Disable" => "Slå av", "Enable" => "Slå på", -"Please wait...." => "Ver vennleg og vent …", +"Please wait...." => "Ver venleg og vent …", "Error" => "Feil", +"Updating...." => "Oppdaterer …", +"Error while updating app" => "Feil ved oppdatering av app", +"Updated" => "Oppdatert", +"Saving..." => "Lagrar …", +"deleted" => "sletta", +"undo" => "angra", +"Unable to remove user" => "Klarte ikkje å fjerna brukaren", "Groups" => "Grupper", +"Group Admin" => "Gruppestyrar", "Delete" => "Slett", +"add group" => "legg til gruppe", +"A valid username must be provided" => "Du må oppgje eit gyldig brukarnamn", +"Error creating user" => "Feil ved oppretting av brukar", +"A valid password must be provided" => "Du må oppgje eit gyldig passord", "__language_name__" => "Nynorsk", -"This ownCloud 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 of ownCloud." => "Denne ownCloud-tenaren har ikkje nokon fungerande nettilkopling. Difor vil visse funksjonar, t.d. montering av ekstern lagring, varsling om oppdatering, eller installering av tredjepartsapplikasjonar ikkje fungera. Varslingsepostar og ekstern tilgang til filer vil kanskje heller ikkje fungera. Me foreslår at du skrur på nettilkoplinga til denne tenaren viss du vil bruka alle funksjonane til ownCloud.", +"Security Warning" => "Tryggleiksåtvaring", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Datamappa og filene dine er sannsynlegvis tilgjengelege frå Internett. Fila .htaccess som ownCloud tilbyr fungerer ikkje. Me rår sterkt til at du set opp tenaren din slik at datamappa ikkje lenger er tilgjengeleg, eller at du flyttar datamappa vekk frå dokumentrota til tenaren.", +"Setup Warning" => "Oppsettsåtvaring", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Tenaren din er ikkje enno rett innstilt til å tilby filsynkronisering sidan WebDAV-grensesnittet ser ut til å vera øydelagt.", +"Please double check the installation guides." => "Ver venleg og dobbeltsjekk installasjonsrettleiinga.", +"Module 'fileinfo' missing" => "Modulen «fileinfo» manglar", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP-modulen «fileinfo» manglar. Me rår sterkt til å skru på denne modulen for å best mogleg oppdaga MIME-typar.", +"Locale not working" => "Regionaldata fungerer ikkje", +"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Denne ownCloud-tenaren kan ikkje stilla regionen til %s. Dette tyder at det kan vera problem med visse teikn i filnamn. Me rår sterkt til å installera systempakkane som krevst for å støtta %s.", +"Internet connection not working" => "Nettilkoplinga fungerer ikkje", +"This ownCloud 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 of ownCloud." => "Denne ownCloud-tenaren har ikkje nokon fungerande nettilkopling. Difor vil visse funksjonar, t.d. montering av ekstern lagring, varsling om oppdatering, eller installering av tredjepartsapplikasjonar ikkje fungera. Varslingsepostar og ekstern tilgang til filer vil kanskje heller ikkje fungera. Me foreslår at du skrur på nettilkoplinga til denne tenaren viss du vil nytta alle funksjonane til ownCloud.", +"Cron" => "Cron", +"Execute one task with each page loaded" => "Utfør éi oppgåve for kvar sidelasting", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php er registrert ved ei webcron-teneste. Last sida cron.php i ownCloud-rota ein gong i minuttet over http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Bruk cron-tenesta til systemet. Køyr fila cron.php i ownCloud-mappa frå ein cron-jobb på systemet ein gong i minuttet.", +"Sharing" => "Deling", +"Enable Share API" => "Skru på API-et for deling", +"Allow apps to use the Share API" => "La app-ar bruka API-et til deling", +"Allow links" => "Tillat lenkjer", +"Allow users to share items to the public with links" => "La brukarar dela ting offentleg med lenkjer", +"Allow resharing" => "Tillat vidaredeling", +"Allow users to share items shared with them again" => "La brukarar vidaredela delte ting", +"Allow users to share with anyone" => "La brukarar dela med kven som helst", +"Allow users to only share with users in their groups" => "La brukarar dela berre med brukarar i deira grupper", +"Security" => "Tryggleik", +"Enforce HTTPS" => "Krev HTTPS", +"Enforces the clients to connect to ownCloud via an encrypted connection." => "Krev at klientar koplar til ownCloud med ei kryptert tilkopling.", +"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Ver venleg og kopla denne ownCloud-instansen til via HTTPS for å skru av/på SSL-handhevinga.", +"Log" => "Logg", "Log level" => "Log nivå", +"More" => "Meir", +"Less" => "Mindre", +"Version" => "Utgåve", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Kjeldekoden, utvikla av ownCloud-fellesskapet, er lisensiert under AGPL.", +"Add your App" => "Legg til din app", +"More Apps" => "Fleire app-ar", "Select an App" => "Vel ein applikasjon", +"See application page at apps.owncloud.com" => "Sjå applikasjonssida på apps.owncloud.com", +"-licensed by " => "Lisensiert under av ", "Update" => "Oppdater", +"User Documentation" => "Brukardokumentasjon", +"Administrator Documentation" => "Administratordokumentasjon", +"Online Documentation" => "Dokumentasjon på nett", +"Forum" => "Forum", +"Bugtracker" => "Feilsporar", +"Commercial Support" => "Betalt brukarstøtte", +"You have used %s of the available %s" => "Du har brukt %s av dine tilgjengelege %s", +"Get the apps to sync your files" => "Få app-ar som kan synkronisera filene dine", +"Show First Run Wizard again" => "Vis Oppstartvegvisaren igjen", "Password" => "Passord", +"Your password was changed" => "Passordet ditt er endra", "Unable to change your password" => "Klarte ikkje å endra passordet", "Current password" => "Passord", "New password" => "Nytt passord", "Change password" => "Endra passord", +"Display Name" => "Visningsnamn", "Email" => "E-post", "Your email address" => "Di epost-adresse", "Fill in an email address to enable password recovery" => "Fyll inn e-postadressa di for å aktivera passordgjenoppretting", "Language" => "Språk", -"Help translate" => "Hjelp oss å oversett", +"Help translate" => "Hjelp oss å omsetja", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Bruk denne adressa for å kopla til din ownCloud frå filhandsamaren din", +"Login Name" => "Innloggingsnamn", "Create" => "Lag", -"Other" => "Anna" +"Default Storage" => "Standardlagring", +"Unlimited" => "Ubegrensa", +"Other" => "Anna", +"Storage" => "Lagring", +"change display name" => "endra visningsnamn", +"set new password" => "lag nytt passord", +"Default" => "Standard" ); diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index af5b3f20d95..55d957cfa7d 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -1,6 +1,7 @@ "Ni mogoče naložiti seznama iz središča App Store", -"Authentication error" => "Napaka pri overjanju", +"Unable to load list from App Store" => "Ni mogoče naložiti seznama iz programskega središča", +"Authentication error" => "Napaka med overjanjem", +"Your display name has been changed." => "Prikazano ime je bilo spremenjeno.", "Unable to change display name" => "Prikazanega imena ni mogoče spremeniti.", "Group already exists" => "Skupina že obstaja", "Unable to add group" => "Skupine ni mogoče dodati", diff --git a/settings/l10n/sq.php b/settings/l10n/sq.php index 36ae95c8252..03db0cd8fcd 100644 --- a/settings/l10n/sq.php +++ b/settings/l10n/sq.php @@ -9,5 +9,6 @@ "Update" => "Azhurno", "Get the apps to sync your files" => "Merrni app-et për sinkronizimin e skedarëve tuaj", "Password" => "Kodi", -"New password" => "Kodi i ri" +"New password" => "Kodi i ri", +"Email" => "Email-i" ); -- GitLab From 4c980b1a14453d2732a432dbc6c14dd4ed1155fe Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 1 May 2013 00:24:34 +0200 Subject: [PATCH 056/135] Set storage id for openstack swift backend --- apps/files_external/lib/swift.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/files_external/lib/swift.php b/apps/files_external/lib/swift.php index 68c4b48f17c..a9cfe5bd20f 100644 --- a/apps/files_external/lib/swift.php +++ b/apps/files_external/lib/swift.php @@ -287,6 +287,7 @@ class SWIFT extends \OC\Files\Storage\Common{ if ( ! $this->root || $this->root[0]!='/') { $this->root='/'.$this->root; } + $this->id = 'swift:' . $this->host . ':'.$this->root . ':' . $this->user; } else { throw new \Exception(); } -- GitLab From d8e6db560877fc16d3eb0a825c94faa34179fb3a Mon Sep 17 00:00:00 2001 From: kondou Date: Wed, 1 May 2013 00:34:13 +0200 Subject: [PATCH 057/135] Sort priorized languages as defined in the array Also add russian and arabic to the common languages. --- settings/personal.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/settings/personal.php b/settings/personal.php index 57a7e4ee9cd..de029770d98 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -24,12 +24,13 @@ $languageCodes=OC_L10N::findAvailableLanguages(); // array of common languages $commonlangcodes = array( - 'en', 'es', 'fr', 'de', 'de_DE', 'ja_JP', 'nl', 'it', 'pt_BR', 'pt_PT', 'da', 'fi_FI', 'nb_NO', 'sv', 'zh_CN', 'ko' + 'en', 'es', 'fr', 'de', 'de_DE', 'ja_JP', 'ar', 'ru', 'nl', 'it', 'pt_BR', 'pt_PT', 'da', 'fi_FI', 'nb_NO', 'sv', 'zh_CN', 'ko' ); $languageNames=include 'languageCodes.php'; $languages=array(); -$commonlanguages = array(); +// Initialize array, so we can substitue later with our in $commonlangcodes specified order +$commonlanguages = array_fill(0, count($commonlangcodes), ""); foreach($languageCodes as $lang) { $l=OC_L10N::get('settings', $lang); if(substr($l->t('__language_name__'), 0, 1)!='_') {//first check if the language name is in the translation file @@ -45,7 +46,7 @@ foreach($languageCodes as $lang) { if ($lang === $userLang) { $userLang = $ln; } elseif (in_array($lang, $commonlangcodes)) { - $commonlanguages[]=$ln; + $commonlanguages[array_search($lang, $commonlangcodes)]=$ln; } else { $languages[]=$ln; } -- GitLab From 6163a85668d0dced5c3644e3cc2b084e3e8d8541 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 1 May 2013 02:02:59 +0200 Subject: [PATCH 058/135] [tx-robot] updated from transifex --- apps/files/l10n/et_EE.php | 4 +- apps/files_encryption/l10n/cy_GB.php | 7 ++++ apps/files_external/l10n/ca.php | 1 + apps/files_external/l10n/cy_GB.php | 1 + apps/user_ldap/l10n/et_EE.php | 4 +- apps/user_ldap/l10n/nn_NO.php | 1 + core/l10n/ca.php | 3 ++ core/l10n/cy_GB.php | 5 ++- core/l10n/de_DE.php | 1 + core/l10n/es.php | 9 +++-- core/l10n/et_EE.php | 14 ++++--- core/l10n/gl.php | 1 + core/l10n/it.php | 1 + core/l10n/ja_JP.php | 3 ++ core/l10n/nn_NO.php | 1 + core/l10n/pt_BR.php | 1 + l10n/ca/core.po | 13 +++--- l10n/ca/files_external.po | 9 +++-- l10n/ca/settings.po | 11 +++--- l10n/cy_GB/core.po | 15 +++---- l10n/cy_GB/files.po | 54 ++++++++++++------------- l10n/cy_GB/files_encryption.po | 17 ++++---- l10n/cy_GB/files_external.po | 6 +-- l10n/cy_GB/files_sharing.po | 6 +-- l10n/cy_GB/files_trashbin.po | 6 +-- l10n/cy_GB/lib.po | 6 +-- l10n/cy_GB/settings.po | 10 ++--- l10n/de_DE/core.po | 9 +++-- l10n/es/core.po | 17 ++++---- l10n/et_EE/core.po | 23 +++++------ l10n/et_EE/files.po | 59 ++++++++++++++-------------- l10n/et_EE/settings.po | 25 ++++++------ l10n/et_EE/user_ldap.po | 11 +++--- l10n/gl/core.po | 8 ++-- l10n/it/core.po | 8 ++-- l10n/ja_JP/core.po | 13 +++--- l10n/ja_JP/settings.po | 11 +++--- l10n/nn_NO/core.po | 8 ++-- l10n/nn_NO/user_ldap.po | 6 +-- l10n/pt_BR/core.po | 8 ++-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/zh_TW/files_sharing.po | 4 +- settings/l10n/ca.php | 1 + settings/l10n/cy_GB.php | 2 + settings/l10n/et_EE.php | 16 ++++---- settings/l10n/ja_JP.php | 1 + 56 files changed, 253 insertions(+), 209 deletions(-) create mode 100644 apps/files_encryption/l10n/cy_GB.php diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 6842e56d8da..133f461a124 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -16,7 +16,7 @@ "Share" => "Jaga", "Delete permanently" => "Kustuta jäädavalt", "Delete" => "Kustuta", -"Rename" => "ümber", +"Rename" => "Nimeta ümber", "Pending" => "Ootel", "{new_name} already exists" => "{new_name} on juba olemas", "replace" => "asenda", @@ -62,7 +62,7 @@ "From link" => "Allikast", "Deleted files" => "Kustutatud failid", "Cancel upload" => "Tühista üleslaadimine", -"You don’t have write permissions here." => "Siin puudvad Sul kirjutamisõigused.", +"You don’t have write permissions here." => "Siin puudvad sul kirjutamisõigused.", "Nothing in here. Upload something!" => "Siin pole midagi. Lae midagi üles!", "Download" => "Lae alla", "Unshare" => "Lõpeta jagamine", diff --git a/apps/files_encryption/l10n/cy_GB.php b/apps/files_encryption/l10n/cy_GB.php new file mode 100644 index 00000000000..523b5dd73df --- /dev/null +++ b/apps/files_encryption/l10n/cy_GB.php @@ -0,0 +1,7 @@ + "Amgryptiad", +"File encryption is enabled." => "Galluogwyd amgryptio ffeiliau.", +"The following file types will not be encrypted:" => "Ni fydd ffeiliau o'r math yma'n cael eu hamgryptio:", +"Exclude the following file types from encryption:" => "Eithrio'r mathau canlynol o ffeiliau rhag cael eu hamgryptio:", +"None" => "Dim" +); diff --git a/apps/files_external/l10n/ca.php b/apps/files_external/l10n/ca.php index e3b245babfe..90ac954301f 100644 --- a/apps/files_external/l10n/ca.php +++ b/apps/files_external/l10n/ca.php @@ -6,6 +6,7 @@ "Error configuring Google Drive storage" => "Error en configurar l'emmagatzemament Google Drive", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Avís: \"smbclient\" no està instal·lat. No es pot muntar la compartició CIFS/SMB. Demaneu a l'administrador del sistema que l'instal·li.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Avís: El suport FTP per PHP no està activat o no està instal·lat. No es pot muntar la compartició FTP. Demaneu a l'administrador del sistema que l'instal·li.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Avís:El suport Curl de PHP no està activat o instal·lat. No es pot muntar ownCloud / WebDAV o GoogleDrive. Demaneu a l'administrador que l'instal·li.", "External Storage" => "Emmagatzemament extern", "Folder name" => "Nom de la carpeta", "External storage" => "Emmagatzemament extern", diff --git a/apps/files_external/l10n/cy_GB.php b/apps/files_external/l10n/cy_GB.php index aee58477639..78bbb987eb8 100644 --- a/apps/files_external/l10n/cy_GB.php +++ b/apps/files_external/l10n/cy_GB.php @@ -1,4 +1,5 @@ "Grwpiau", "Users" => "Defnyddwyr", "Delete" => "Dileu" ); diff --git a/apps/user_ldap/l10n/et_EE.php b/apps/user_ldap/l10n/et_EE.php index 665e9d6fa2c..9a65455ed23 100644 --- a/apps/user_ldap/l10n/et_EE.php +++ b/apps/user_ldap/l10n/et_EE.php @@ -39,10 +39,10 @@ "Port" => "Port", "Backup (Replica) Host" => "Varuserver", "Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Lisa täiendav LDAP/AD server, mida replikeeritakse peaserveriga.", -"Backup (Replica) Port" => "Varuserveri (replika) ldap port", +"Backup (Replica) Port" => "Varuserveri (replika) port", "Disable Main Server" => "Ära kasuta peaserverit", "When switched on, ownCloud will only connect to the replica server." => "Märgituna ownCloud ühendub ainult varuserverisse.", -"Use TLS" => "Kasutaja TLS", +"Use TLS" => "Kasuta TLS-i", "Do not use it additionally for LDAPS connections, it will fail." => "LDAPS puhul ära kasuta. Ühendus ei toimi.", "Case insensitve LDAP server (Windows)" => "Mittetõstutundlik LDAP server (Windows)", "Turn off SSL certificate validation." => "Lülita SSL sertifikaadi kontrollimine välja.", diff --git a/apps/user_ldap/l10n/nn_NO.php b/apps/user_ldap/l10n/nn_NO.php index 1adac1b1023..9f84258c56d 100644 --- a/apps/user_ldap/l10n/nn_NO.php +++ b/apps/user_ldap/l10n/nn_NO.php @@ -1,4 +1,5 @@ "Feil ved sletting", "Password" => "Passord", "Help" => "Hjelp" ); diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 818c5b20b93..a1430d547f5 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -88,6 +88,8 @@ "The update was successful. Redirecting you to ownCloud now." => "L'actualització ha estat correcte. Ara us redirigim a ownCloud.", "ownCloud password reset" => "estableix de nou la contrasenya Owncloud", "Use the following link to reset your password: {link}" => "Useu l'enllaç següent per restablir la contrasenya: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "L'enllaç per reiniciar la vostra contrasenya s'ha enviat al vostre correu.
Si no el rebeu en un temps raonable comproveu les carpetes de spam.
Si no és allà, pregunteu a l'administrador local.", +"Request failed!
Did you make sure your email/username was right?" => "La petició ha fallat!
Esteu segur que el correu/nom d'usuari és correcte?", "You will receive a link to reset your password via Email." => "Rebreu un enllaç al correu electrònic per reiniciar la contrasenya.", "Username" => "Nom d'usuari", "Request reset" => "Sol·licita reinicialització", @@ -123,6 +125,7 @@ "Database host" => "Ordinador central de la base de dades", "Finish setup" => "Acaba la configuració", "web services under your control" => "controleu els vostres serveis web", +"%s is available. Get more information on how to update." => "%s està disponible. Obtingueu més informació de com actualitzar.", "Log out" => "Surt", "Automatic logon rejected!" => "L'ha rebutjat l'acceditació automàtica!", "If you did not change your password recently, your account may be compromised!" => "Se no heu canviat la contrasenya recentment el vostre compte pot estar compromès!", diff --git a/core/l10n/cy_GB.php b/core/l10n/cy_GB.php index d614797eb67..a874d43965d 100644 --- a/core/l10n/cy_GB.php +++ b/core/l10n/cy_GB.php @@ -88,6 +88,8 @@ "The update was successful. Redirecting you to ownCloud now." => "Roedd y diweddariad yn llwyddiannus. Cewch eich ailgyfeirio i ownCloud nawr.", "ownCloud password reset" => "ailosod cyfrinair ownCloud", "Use the following link to reset your password: {link}" => "Defnyddiwch y ddolen hon i ailosod eich cyfrinair: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Anfonwyd y ddolen i ailosod eich cyfrinair i'ch cyfeiriad ebost.
Os nad yw'n cyrraedd o fewn amser rhesymol gwiriwch eich plygell spam/sothach.
Os nad yw yno, cysylltwch â'ch gweinyddwr lleol.", +"Request failed!
Did you make sure your email/username was right?" => "Methodd y cais!
Gwiriwch eich enw defnyddiwr ac ebost.", "You will receive a link to reset your password via Email." => "Byddwch yn derbyn dolen drwy e-bost i ailosod eich cyfrinair.", "Username" => "Enw defnyddiwr", "Request reset" => "Gwneud cais i ailosod", @@ -109,7 +111,7 @@ "Please update your PHP installation to use ownCloud securely." => "Diweddarwch eich PHP i ddefnyddio ownCloud yn ddiogel.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Does dim cynhyrchydd rhifau hap diogel ar gael, galluogwch estyniad PHP OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Heb gynhyrchydd rhifau hap diogel efallai y gall ymosodwr ragweld tocynnau ailosod cyfrinair a meddiannu eich cyfrif.", -"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Mwy na thebyg fod modd cyrraeddd eich cyfeiriadur data a ffeilau o'r rhyngrwyd oherwydd nid yw'r ffeil .htaccess yn gweithio. ", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Mwy na thebyg fod modd cyrraedd eich cyfeiriadur data a ffeilau o'r rhyngrwyd oherwydd nid yw'r ffeil .htaccess yn gweithio. ", "For information how to properly configure your server, please see the documentation." => "Am wybodaeth ar sut i gyflunio'r gweinydd yn gywir, cyfeiriwch at y ddogfennaeth.", "Create an admin account" => "Crewch gyfrif gweinyddol", "Advanced" => "Uwch", @@ -123,6 +125,7 @@ "Database host" => "Gwesteiwr cronfa ddata", "Finish setup" => "Gorffen sefydlu", "web services under your control" => "gwasanaethau gwe a reolir gennych", +"%s is available. Get more information on how to update." => "%s ar gael. Mwy o wybodaeth am sut i ddiweddaru.", "Log out" => "Allgofnodi", "Automatic logon rejected!" => "Gwrthodwyd mewngofnodi awtomatig!", "If you did not change your password recently, your account may be compromised!" => "Os na wnaethoch chi newid eich cyfrinair yn ddiweddar, gall eich cyfrif fod yn anniogel!", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index b69868e5e5a..d0f2b3505d9 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -125,6 +125,7 @@ "Database host" => "Datenbank-Host", "Finish setup" => "Installation abschließen", "web services under your control" => "Web-Services unter Ihrer Kontrolle", +"%s is available. Get more information on how to update." => "%s ist nicht verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein.", "Log out" => "Abmelden", "Automatic logon rejected!" => "Automatische Anmeldung verweigert.", "If you did not change your password recently, your account may be compromised!" => "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAccount kompromittiert sein!", diff --git a/core/l10n/es.php b/core/l10n/es.php index 8a3ab44e85d..e0ccfd059de 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -1,8 +1,8 @@ "El usuario %s ha compartido un archivo contigo", -"User %s shared a folder with you" => "El usuario %s ha compartido una carpeta contigo", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "El usuario %s ha compartido el archivo \"%s\" contigo. Puedes descargarlo aquí: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "El usuario %s ha compartido la carpeta \"%s\" contigo. Puedes descargarla aquí: %s", +"User %s shared a file with you" => "El usuario %s ha compartido un archivo contigo.", +"User %s shared a folder with you" => "El usuario %s ha compartido una carpeta contigo.", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "El usuario %s ha compartido el archivo \"%s\" contigo. Puedes descargarlo aquí: %s.", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "El usuario %s ha compartido la carpeta \"%s\" contigo. Puedes descargarla aquí: %s.", "Category type not provided." => "Tipo de categoria no proporcionado.", "No category to add?" => "¿Ninguna categoría para añadir?", "This category already exists: %s" => "Esta categoria ya existe: %s", @@ -125,6 +125,7 @@ "Database host" => "Host de la base de datos", "Finish setup" => "Completar la instalación", "web services under your control" => "Servicios web bajo su control", +"%s is available. Get more information on how to update." => "%s esta disponible. Obtén mas información de como actualizar.", "Log out" => "Salir", "Automatic logon rejected!" => "¡Inicio de sesión automático rechazado!", "If you did not change your password recently, your account may be compromised!" => "Si usted no ha cambiado su contraseña recientemente, ¡puede que su cuenta esté comprometida!", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index aac3898fbb3..79d3024f014 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -1,13 +1,13 @@ "Kasutaja %s jagas Sinuga faili", -"User %s shared a folder with you" => "Kasutaja %s jagas Sinuga kataloogi.", +"User %s shared a folder with you" => "Kasutaja %s jagas Sinuga kausta.", "User %s shared the file \"%s\" with you. It is available for download here: %s" => "Kasutaja %s jagas Sinuga faili \"%s\". See on allalaadimiseks saadaval siin: %s", "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Kasutaja %s jagas Sinuga kataloogi \"%s\". See on allalaadimiseks saadaval siin: %s", "Category type not provided." => "Kategooria tüüp puudub.", "No category to add?" => "Pole kategooriat, mida lisada?", -"This category already exists: %s" => "See kategooria juba eksisteerib: %s", +"This category already exists: %s" => "See kategooria on juba olemas: %s", "Object type not provided." => "Objekti tüüb puudub.", -"%s ID not provided." => "%s ID puudub", +"%s ID not provided." => "%s ID puudub.", "Error adding %s to favorites." => "Viga %s lisamisel lemmikutesse.", "No categories selected for deletion." => "Kustutamiseks pole kategooriat valitud.", "Error removing %s from favorites." => "Viga %s eemaldamisel lemmikutest", @@ -49,7 +49,7 @@ "Choose" => "Vali", "Yes" => "Jah", "No" => "Ei", -"The object type is not specified." => "Objekti tüüb pole määratletud", +"The object type is not specified." => "Objekti tüüp pole määratletud.", "Error" => "Viga", "The app name is not specified." => "Rakenduse nimi ole määratletud", "The required file {file} is not installed!" => "Vajalikku faili {file} pole paigaldatud!", @@ -64,7 +64,7 @@ "Share with link" => "Jaga lingiga", "Password protect" => "Parooliga kaitstud", "Password" => "Parool", -"Email link to person" => "Saada link isikule emailiga", +"Email link to person" => "Saada link isikule e-postiga", "Send" => "Saada", "Set expiration date" => "Määra aegumise kuupäev", "Expiration date" => "Aegumise kuupäev", @@ -88,6 +88,7 @@ "The update was successful. Redirecting you to ownCloud now." => "Uuendus oli edukas. Kohe suunatakse Sind ownCloudi.", "ownCloud password reset" => "ownCloud parooli taastamine", "Use the following link to reset your password: {link}" => "Kasuta järgnevat linki oma parooli taastamiseks: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Link parooli vahetuseks on saadetud Sinu e-posti aadressil.
Kui kiri pole saabunud mõistliku aja jooksul, siis kontrolli oma spam-/rämpskirjade katalooge.
Kui kirja pole ka seal, siis küsi abi süsteemihaldurilt.", "Request failed!
Did you make sure your email/username was right?" => "Päring ebaõnnestus!
Oled sa veendunud, et e-post/kasutajanimi on õiged?", "You will receive a link to reset your password via Email." => "Sinu parooli taastamise link saadetakse sulle e-postile.", "Username" => "Kasutajanimi", @@ -103,7 +104,7 @@ "Help" => "Abiinfo", "Access forbidden" => "Ligipääs on keelatud", "Cloud not found" => "Pilve ei leitud", -"Edit categories" => "Muuda kategooriat", +"Edit categories" => "Muuda kategooriaid", "Add" => "Lisa", "Security Warning" => "Turvahoiatus", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Sinu PHP versioon on haavatav NULL Baidi (CVE-2006-7243) rünnakuga.", @@ -124,6 +125,7 @@ "Database host" => "Andmebaasi host", "Finish setup" => "Lõpeta seadistamine", "web services under your control" => "veebitenused sinu kontrolli all", +"%s is available. Get more information on how to update." => "%s on saadaval. Vaata lähemalt kuidas uuendada.", "Log out" => "Logi välja", "Automatic logon rejected!" => "Automaatne sisselogimine lükati tagasi!", "If you did not change your password recently, your account may be compromised!" => "Kui sa ei muutnud oma parooli hiljut, siis võib su kasutajakonto olla ohustatud!", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index f6c36d6ac62..7269e792744 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -125,6 +125,7 @@ "Database host" => "Servidor da base de datos", "Finish setup" => "Rematar a configuración", "web services under your control" => "servizos web baixo o seu control", +"%s is available. Get more information on how to update." => "%s está dispoñíbel. Obteña máis información sobre como actualizar.", "Log out" => "Desconectar", "Automatic logon rejected!" => "Rexeitouse a entrada automática", "If you did not change your password recently, your account may be compromised!" => "Se non fixo recentemente cambios de contrasinal é posíbel que a súa conta estea comprometida!", diff --git a/core/l10n/it.php b/core/l10n/it.php index d450f90b1d2..15fba6ec7d3 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -125,6 +125,7 @@ "Database host" => "Host del database", "Finish setup" => "Termina la configurazione", "web services under your control" => "servizi web nelle tue mani", +"%s is available. Get more information on how to update." => "%s è disponibile. Ottieni ulteriori informazioni sull'aggiornamento.", "Log out" => "Esci", "Automatic logon rejected!" => "Accesso automatico rifiutato.", "If you did not change your password recently, your account may be compromised!" => "Se non hai cambiato la password recentemente, il tuo account potrebbe essere compromesso.", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 056c67e8da5..1e73aa58908 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -88,6 +88,8 @@ "The update was successful. Redirecting you to ownCloud now." => "更新に成功しました。今すぐownCloudにリダイレクトします。", "ownCloud password reset" => "ownCloudのパスワードをリセットします", "Use the following link to reset your password: {link}" => "パスワードをリセットするには次のリンクをクリックして下さい: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "パスワードリセットのリンクをあなたのメールアドレスに送信しました。
しばらくたっても受信出来ない場合は、スパム/迷惑メールフォルダを確認して下さい。
もしそこにもない場合は、管理者に問い合わせてください。", +"Request failed!
Did you make sure your email/username was right?" => "リクエストに失敗しました!
あなたのメール/ユーザ名が正しいことを確認しましたか?", "You will receive a link to reset your password via Email." => "メールでパスワードをリセットするリンクが届きます。", "Username" => "ユーザー名", "Request reset" => "リセットを要求します。", @@ -123,6 +125,7 @@ "Database host" => "データベースのホスト名", "Finish setup" => "セットアップを完了します", "web services under your control" => "管理下のウェブサービス", +"%s is available. Get more information on how to update." => "%s が利用可能です。更新方法に関してさらに情報を取得して下さい。", "Log out" => "ログアウト", "Automatic logon rejected!" => "自動ログインは拒否されました!", "If you did not change your password recently, your account may be compromised!" => "最近パスワードを変更していない場合、あなたのアカウントは危険にさらされているかもしれません。", diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php index f62897ed27d..2055be1b9a4 100644 --- a/core/l10n/nn_NO.php +++ b/core/l10n/nn_NO.php @@ -125,6 +125,7 @@ "Database host" => "Databasetenar", "Finish setup" => "Fullfør oppsettet", "web services under your control" => "Vevtenester under din kontroll", +"%s is available. Get more information on how to update." => "%s er tilgjengeleg. Få meir informasjon om korleis du oppdaterer.", "Log out" => "Logg ut", "Automatic logon rejected!" => "Automatisk innlogging avvist!", "If you did not change your password recently, your account may be compromised!" => "Viss du ikkje endra passordet ditt nyleg, så kan kontoen din vera kompromittert!", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index ee1ac44d026..b52a9bb508a 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -125,6 +125,7 @@ "Database host" => "Host do banco de dados", "Finish setup" => "Concluir configuração", "web services under your control" => "serviços web sob seu controle", +"%s is available. Get more information on how to update." => "%s está disponível. Obtenha mais informações sobre como atualizar.", "Log out" => "Sair", "Automatic logon rejected!" => "Entrada Automática no Sistema Rejeitada!", "If you did not change your password recently, your account may be compromised!" => "Se você não mudou a sua senha recentemente, a sua conta pode estar comprometida!", diff --git a/l10n/ca/core.po b/l10n/ca/core.po index c28a6d7ac1c..5eacd2f6a02 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# rogerc , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"PO-Revision-Date: 2013-04-30 21:50+0000\n" +"Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -401,11 +402,11 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "L'enllaç per reiniciar la vostra contrasenya s'ha enviat al vostre correu.
Si no el rebeu en un temps raonable comproveu les carpetes de spam.
Si no és allà, pregunteu a l'administrador local." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "La petició ha fallat!
Esteu segur que el correu/nom d'usuari és correcte?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -563,7 +564,7 @@ msgstr "controleu els vostres serveis web" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s està disponible. Obtingueu més informació de com actualitzar." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index d1006bfb001..ae9bf2ab8ae 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# rogerc , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:29+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"PO-Revision-Date: 2013-04-30 21:50+0000\n" +"Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +56,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "Avís:El suport Curl de PHP no està activat o instal·lat. No es pot muntar ownCloud / WebDAV o GoogleDrive. Demaneu a l'administrador que l'instal·li." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 5807e4d9aa5..d2c9ab2cd89 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# rogerc , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:17+0200\n" -"PO-Revision-Date: 2013-04-26 16:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-01 02:00+0200\n" +"PO-Revision-Date: 2013-04-30 21:40+0000\n" +"Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +29,7 @@ msgstr "Error d'autenticació" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "El nom a mostrar ha canviat." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" @@ -328,7 +329,7 @@ msgstr "Menys" msgid "Version" msgstr "Versió" -#: templates/admin.php:238 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:108 msgid "" "Developed by the ownCloud community, the , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"PO-Revision-Date: 2013-04-30 15:00+0000\n" +"Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -401,11 +402,11 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "Anfonwyd y ddolen i ailosod eich cyfrinair i'ch cyfeiriad ebost.
Os nad yw'n cyrraedd o fewn amser rhesymol gwiriwch eich plygell spam/sothach.
Os nad yw yno, cysylltwch â'ch gweinyddwr lleol." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "Methodd y cais!
Gwiriwch eich enw defnyddiwr ac ebost." #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -501,7 +502,7 @@ msgstr "Heb gynhyrchydd rhifau hap diogel efallai y gall ymosodwr ragweld tocynn msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Mwy na thebyg fod modd cyrraeddd eich cyfeiriadur data a ffeilau o'r rhyngrwyd oherwydd nid yw'r ffeil .htaccess yn gweithio. " +msgstr "Mwy na thebyg fod modd cyrraedd eich cyfeiriadur data a ffeilau o'r rhyngrwyd oherwydd nid yw'r ffeil .htaccess yn gweithio. " #: templates/installation.php:40 msgid "" @@ -563,7 +564,7 @@ msgstr "gwasanaethau gwe a reolir gennych" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s ar gael. Mwy o wybodaeth am sut i ddiweddaru." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 67f9d373ecb..7fa36284862 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"PO-Revision-Date: 2013-04-30 14:43+0000\n" +"Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,7 +86,7 @@ msgstr "Rhannu" msgid "Delete permanently" msgstr "Dileu'n barhaol" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Dileu" @@ -156,66 +156,66 @@ msgstr "Mae eich storfa'n llawn, ni ellir diweddaru a chydweddu ffeiliau mwyach! msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Mae eich storfa bron a bod yn llawn ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Wrthi'n paratoi i lwytho i lawr. Gall gymryd peth amser os yw'r ffeiliau'n fawr." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Methu llwytho'ch ffeil i fyny gan ei fod yn gyferiadur neu'n cynnwys 0 beit" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Dim digon o le ar gael" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Diddymwyd llwytho i fyny." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Mae ffeiliau'n cael eu llwytho i fyny. Bydd gadael y dudalen hon nawr yn diddymu'r broses." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "Does dim hawl cael URL gwag." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Enw plygell annilys. Mae'r defnydd o 'Shared' yn cael ei gadw gan Owncloud" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Gwall" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Enw" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Maint" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Addaswyd" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 blygell" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} plygell" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 ffeil" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} ffeil" @@ -279,37 +279,37 @@ msgstr "Ffeiliau ddilewyd" msgid "Cancel upload" msgstr "Diddymu llwytho i fyny" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "Nid oes gennych hawliau ysgrifennu fan hyn." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Llwytho i lawr" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Dad-rannu" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Maint llwytho i fyny'n rhy fawr" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Mae'r ffeiliau rydych yn ceisio llwytho i fyny'n fwy na maint mwyaf llwytho ffeiliau i fyny ar y gweinydd hwn." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Arhoswch, mae ffeiliau'n cael eu sganio." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Sganio cyfredol" diff --git a/l10n/cy_GB/files_encryption.po b/l10n/cy_GB/files_encryption.po index bb5e3cedbee..0d6bc4131fd 100644 --- a/l10n/cy_GB/files_encryption.po +++ b/l10n/cy_GB/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ubuntucymraeg , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 10:00+0200\n" -"PO-Revision-Date: 2013-04-26 08:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"PO-Revision-Date: 2013-04-30 15:40+0000\n" +"Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,20 +20,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "" +msgstr "Amgryptiad" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "Galluogwyd amgryptio ffeiliau." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "Ni fydd ffeiliau o'r math yma'n cael eu hamgryptio:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "Eithrio'r mathau canlynol o ffeiliau rhag cael eu hamgryptio:" #: templates/settings.php:12 msgid "None" -msgstr "" +msgstr "Dim" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 58a199c9948..08d181aa3b1 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:29+0000\n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"PO-Revision-Date: 2013-04-30 15:20+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" @@ -95,7 +95,7 @@ msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "" +msgstr "Grwpiau" #: templates/settings.php:100 msgid "Users" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index e2faba0dd7c..8a848fc5010 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:29+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"PO-Revision-Date: 2013-04-30 14:47+0000\n" +"Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 249f562bfa6..675605ebaf8 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:30+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"PO-Revision-Date: 2013-04-30 14:48+0000\n" +"Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 7c6413276e9..b0dbdfec6ce 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-01 02:00+0200\n" +"PO-Revision-Date: 2013-04-30 14:46+0000\n" +"Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index a715f7c753b..bb6e0180eb0 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:17+0200\n" -"PO-Revision-Date: 2013-04-26 08:28+0000\n" +"POT-Creation-Date: 2013-05-01 02:00+0200\n" +"PO-Revision-Date: 2013-04-30 15:20+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" @@ -139,7 +139,7 @@ msgstr "" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "" +msgstr "Grwpiau" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" @@ -328,7 +328,7 @@ msgstr "" msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:108 msgid "" "Developed by the
ownCloud community, the , 2013 +# traductor , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"PO-Revision-Date: 2013-04-30 16:00+0000\n" +"Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -564,7 +565,7 @@ msgstr "Web-Services unter Ihrer Kontrolle" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s ist nicht verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/es/core.po b/l10n/es/core.po index 9c9f16c7a68..1a4b035d22c 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -4,13 +4,14 @@ # # Translators: # msoko , 2013 +# iGerli , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"PO-Revision-Date: 2013-04-30 11:30+0000\n" +"Last-Translator: iGerli \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" @@ -21,26 +22,26 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "El usuario %s ha compartido un archivo contigo" +msgstr "El usuario %s ha compartido un archivo contigo." #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "El usuario %s ha compartido una carpeta contigo" +msgstr "El usuario %s ha compartido una carpeta contigo." #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "El usuario %s ha compartido el archivo \"%s\" contigo. Puedes descargarlo aquí: %s" +msgstr "El usuario %s ha compartido el archivo \"%s\" contigo. Puedes descargarlo aquí: %s." #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "El usuario %s ha compartido la carpeta \"%s\" contigo. Puedes descargarla aquí: %s" +msgstr "El usuario %s ha compartido la carpeta \"%s\" contigo. Puedes descargarla aquí: %s." #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -564,7 +565,7 @@ msgstr "Servicios web bajo su control" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s esta disponible. Obtén mas información de como actualizar." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 79e459216ac..0a1d8b4be02 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# pisike.sipelgas , 2013 # Rivo Zängov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"PO-Revision-Date: 2013-04-30 09:40+0000\n" +"Last-Translator: Rivo Zängov \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" @@ -26,7 +27,7 @@ msgstr "Kasutaja %s jagas Sinuga faili" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "Kasutaja %s jagas Sinuga kataloogi." +msgstr "Kasutaja %s jagas Sinuga kausta." #: ajax/share.php:101 #, php-format @@ -53,7 +54,7 @@ msgstr "Pole kategooriat, mida lisada?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "See kategooria juba eksisteerib: %s" +msgstr "See kategooria on juba olemas: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -65,7 +66,7 @@ msgstr "Objekti tüüb puudub." #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID puudub" +msgstr "%s ID puudub." #: ajax/vcategories/addToFavorites.php:35 #, php-format @@ -236,7 +237,7 @@ msgstr "Ei" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Objekti tüüb pole määratletud" +msgstr "Objekti tüüp pole määratletud." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -300,7 +301,7 @@ msgstr "Parool" #: js/share.js:173 msgid "Email link to person" -msgstr "Saada link isikule emailiga" +msgstr "Saada link isikule e-postiga" #: js/share.js:174 msgid "Send" @@ -402,7 +403,7 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "Link parooli vahetuseks on saadetud Sinu e-posti aadressil.
Kui kiri pole saabunud mõistliku aja jooksul, siis kontrolli oma spam-/rämpskirjade katalooge.
Kui kirja pole ka seal, siis küsi abi süsteemihaldurilt." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" @@ -467,7 +468,7 @@ msgstr "Pilve ei leitud" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "Muuda kategooriat" +msgstr "Muuda kategooriaid" #: templates/edit_categories_dialog.php:16 msgid "Add" @@ -564,7 +565,7 @@ msgstr "veebitenused sinu kontrolli all" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s on saadaval. Vaata lähemalt kuidas uuendada." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 2095a86eb75..8d0e78eabd3 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Rivo Zängov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"PO-Revision-Date: 2013-04-30 09:40+0000\n" +"Last-Translator: Rivo Zängov \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" @@ -86,13 +87,13 @@ msgstr "Jaga" msgid "Delete permanently" msgstr "Kustuta jäädavalt" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Kustuta" #: js/fileactions.js:194 msgid "Rename" -msgstr "ümber" +msgstr "Nimeta ümber" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" @@ -156,66 +157,66 @@ msgstr "Sinu andmemaht on täis! Faile ei uuendata ja sünkroniseerimist ei toim msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Su andmemaht on peaaegu täis ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Valmistatakse allalaadimist. See võib võtta veidi aega kui on tegu suurte failidega. " -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Faili ei saa üles laadida, kuna see on kaust või selle suurus on 0 baiti" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Pole piisavalt ruumi" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Üleslaadimine tühistati." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URL ei saa olla tühi." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Vigane kataloogi nimi. 'Shared' kasutamine on reserveeritud ownCloud poolt." -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Viga" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Nimi" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Suurus" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Muudetud" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 kaust" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} kausta" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 fail" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} faili" @@ -279,37 +280,37 @@ msgstr "Kustutatud failid" msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." -msgstr "Siin puudvad Sul kirjutamisõigused." +msgstr "Siin puudvad sul kirjutamisõigused." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Siin pole midagi. Lae midagi üles!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Lae alla" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Lõpeta jagamine" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Üleslaadimine on liiga suur" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Faile skannitakse, palun oota" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Praegune skannimine" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 2ce1db61d33..1724aa9431a 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Rivo Zängov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:17+0200\n" -"PO-Revision-Date: 2013-04-26 16:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-01 02:00+0200\n" +"PO-Revision-Date: 2013-04-30 09:30+0000\n" +"Last-Translator: Rivo Zängov \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,7 +20,7 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "App Sotre'i nimekirja laadimine ebaõnnestus" +msgstr "App Store'i nimekirja laadimine ebaõnnestus" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 @@ -28,11 +29,11 @@ msgstr "Autentimise viga" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "Sinu kuvatav nimi on muudetud." +msgstr "Sinu näidatav nimi on muudetud." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Ei saa muuta kuvatavat nime" +msgstr "Ei saa muuta näidatavat nime" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -56,11 +57,11 @@ msgstr "Vigane e-post" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "Keela grupi kustutamine" +msgstr "Grupi kustutamine ebaõnnestus" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "Keela kasutaja kustutamine" +msgstr "Kasutaja kustutamine ebaõnnestus" #: ajax/setlanguage.php:15 msgid "Language changed" @@ -98,7 +99,7 @@ msgstr "Lülita välja" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Luba" +msgstr "Lülita sisse" #: js/apps.js:55 msgid "Please wait...." @@ -134,7 +135,7 @@ msgstr "tagasi" #: js/users.js:75 msgid "Unable to remove user" -msgstr "Ei suuda kustutada kasutajat" +msgstr "Ei suuda kustutada kasutajat eemaldada" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 @@ -328,7 +329,7 @@ msgstr "Vähem" msgid "Version" msgstr "Versioon" -#: templates/admin.php:238 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:108 msgid "" "Developed by the
ownCloud community, the , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:31+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"PO-Revision-Date: 2013-04-30 09:30+0000\n" +"Last-Translator: Rivo Zängov \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" @@ -198,7 +199,7 @@ msgstr "Lisa täiendav LDAP/AD server, mida replikeeritakse peaserveriga." #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Varuserveri (replika) ldap port" +msgstr "Varuserveri (replika) port" #: templates/settings.php:74 msgid "Disable Main Server" @@ -210,7 +211,7 @@ msgstr "Märgituna ownCloud ühendub ainult varuserverisse." #: templates/settings.php:75 msgid "Use TLS" -msgstr "Kasutaja TLS" +msgstr "Kasuta TLS-i" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 653026359c7..40d9a6e9cef 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"PO-Revision-Date: 2013-04-30 06:40+0000\n" +"Last-Translator: mbouzada \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" @@ -564,7 +564,7 @@ msgstr "servizos web baixo o seu control" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s está dispoñíbel. Obteña máis información sobre como actualizar." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/it/core.po b/l10n/it/core.po index 3d79a4e3e3b..ce6ac93cb79 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"PO-Revision-Date: 2013-04-30 07:30+0000\n" +"Last-Translator: Vincenzo Reale \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" @@ -564,7 +564,7 @@ msgstr "servizi web nelle tue mani" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s è disponibile. Ottieni ulteriori informazioni sull'aggiornamento." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index dd62994b1b2..eca1551834f 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Daisuke Deguchi , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"PO-Revision-Date: 2013-04-30 04:50+0000\n" +"Last-Translator: Daisuke Deguchi \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" @@ -401,11 +402,11 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "パスワードリセットのリンクをあなたのメールアドレスに送信しました。
しばらくたっても受信出来ない場合は、スパム/迷惑メールフォルダを確認して下さい。
もしそこにもない場合は、管理者に問い合わせてください。" #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "リクエストに失敗しました!
あなたのメール/ユーザ名が正しいことを確認しましたか?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -563,7 +564,7 @@ msgstr "管理下のウェブサービス" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s が利用可能です。更新方法に関してさらに情報を取得して下さい。" #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index ab831462c49..3902b760a08 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Daisuke Deguchi , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:17+0200\n" -"PO-Revision-Date: 2013-04-26 16:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-01 02:00+0200\n" +"PO-Revision-Date: 2013-04-30 04:50+0000\n" +"Last-Translator: Daisuke Deguchi \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" @@ -28,7 +29,7 @@ msgstr "認証エラー" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "表示名を変更しました。" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" @@ -328,7 +329,7 @@ msgstr "閉じる" msgid "Version" msgstr "バージョン" -#: templates/admin.php:238 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:108 msgid "" "Developed by the
ownCloud community, the \n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"PO-Revision-Date: 2013-04-30 06:50+0000\n" +"Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -564,7 +564,7 @@ msgstr "Vevtenester under din kontroll" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s er tilgjengeleg. Få meir informasjon om korleis du oppdaterer." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index d8e1814636e..8e326e3829f 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:31+0000\n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"PO-Revision-Date: 2013-04-30 07:40+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" @@ -39,7 +39,7 @@ msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "" +msgstr "Feil ved sletting" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 663c38c70f9..21467c1e4d4 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"PO-Revision-Date: 2013-04-30 00:50+0000\n" +"Last-Translator: Flávio Veras \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" @@ -564,7 +564,7 @@ msgstr "serviços web sob seu controle" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s está disponível. Obtenha mais informações sobre como atualizar." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 43806ecc132..b237549cfba 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index e4dcc585eec..8c175d24317 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 0dbd3c7505f..5322808da56 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 99ed6fe07c3..cda82f4b227 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index d36a214d44f..538b56d89ff 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index e8d8e484a42..1f99750fa89 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 63354ff4ad6..033ac74ab0b 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 84cafdb47bc..1a9868b2bdf 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"POT-Creation-Date: 2013-05-01 02:00+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 2e98212a05c..2c6b96b4ceb 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"POT-Creation-Date: 2013-05-01 02:00+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index a6a852ad6f4..c6a562ed0f2 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index a6324aaed71..3f8521d7f3c 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 9ae606f6fa5..84829680913 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 10:10+0000\n" +"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"PO-Revision-Date: 2013-04-30 02:40+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 24d00b32329..d134ecad01d 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -1,6 +1,7 @@ "No s'ha pogut carregar la llista des de l'App Store", "Authentication error" => "Error d'autenticació", +"Your display name has been changed." => "El nom a mostrar ha canviat.", "Unable to change display name" => "No s'ha pogut canviar el nom a mostrar", "Group already exists" => "El grup ja existeix", "Unable to add group" => "No es pot afegir el grup", diff --git a/settings/l10n/cy_GB.php b/settings/l10n/cy_GB.php index 09b5de4e667..7ffcbdb45b5 100644 --- a/settings/l10n/cy_GB.php +++ b/settings/l10n/cy_GB.php @@ -4,11 +4,13 @@ "Error" => "Gwall", "Saving..." => "Yn cadw...", "undo" => "dadwneud", +"Groups" => "Grwpiau", "Delete" => "Dileu", "Security Warning" => "Rhybudd Diogelwch", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri.", "Please double check the installation guides." => "Gwiriwch y canllawiau gosod eto.", "Password" => "Cyfrinair", "New password" => "Cyfrinair newydd", +"Email" => "E-bost", "Other" => "Arall" ); diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 40655583242..e52fce624d4 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -1,15 +1,15 @@ "App Sotre'i nimekirja laadimine ebaõnnestus", +"Unable to load list from App Store" => "App Store'i nimekirja laadimine ebaõnnestus", "Authentication error" => "Autentimise viga", -"Your display name has been changed." => "Sinu kuvatav nimi on muudetud.", -"Unable to change display name" => "Ei saa muuta kuvatavat nime", +"Your display name has been changed." => "Sinu näidatav nimi on muudetud.", +"Unable to change display name" => "Ei saa muuta näidatavat nime", "Group already exists" => "Grupp on juba olemas", "Unable to add group" => "Keela grupi lisamine", "Could not enable app. " => "Rakenduse sisselülitamine ebaõnnestus.", "Email saved" => "Kiri on salvestatud", "Invalid email" => "Vigane e-post", -"Unable to delete group" => "Keela grupi kustutamine", -"Unable to delete user" => "Keela kasutaja kustutamine", +"Unable to delete group" => "Grupi kustutamine ebaõnnestus", +"Unable to delete user" => "Kasutaja kustutamine ebaõnnestus", "Language changed" => "Keel on muudetud", "Invalid request" => "Vigane päring", "Admins can't remove themself from the admin group" => "Administraatorid ei saa ise end eemaldada admin grupist", @@ -18,7 +18,7 @@ "Couldn't update app." => "Rakenduse uuendamine ebaõnnestus.", "Update to {appversion}" => "Uuenda versioonile {appversion}", "Disable" => "Lülita välja", -"Enable" => "Luba", +"Enable" => "Lülita sisse", "Please wait...." => "Palun oota...", "Error" => "Viga", "Updating...." => "Uuendamine...", @@ -27,7 +27,7 @@ "Saving..." => "Salvestamine...", "deleted" => "kustutatud", "undo" => "tagasi", -"Unable to remove user" => "Ei suuda kustutada kasutajat", +"Unable to remove user" => "Ei suuda kustutada kasutajat eemaldada", "Groups" => "Grupid", "Group Admin" => "Grupi admin", "Delete" => "Kustuta", @@ -81,7 +81,7 @@ "Online Documentation" => "Online dokumentatsioon", "Forum" => "Foorum", "Bugtracker" => "Vigade nimekiri", -"Commercial Support" => "Tasuine kasutajatugi", +"Commercial Support" => "Tasuline kasutajatugi", "You have used %s of the available %s" => "Kasutad %s saadavalolevast %s", "Get the apps to sync your files" => "Hangi rakendusi failide sünkroniseerimiseks", "Show First Run Wizard again" => "Näita veelkord Esmase Käivituse Juhendajat", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 2dd060cd94f..defc96e81b6 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -1,6 +1,7 @@ "アプリストアからリストをロードできません", "Authentication error" => "認証エラー", +"Your display name has been changed." => "表示名を変更しました。", "Unable to change display name" => "表示名を変更できません", "Group already exists" => "グループは既に存在しています", "Unable to add group" => "グループを追加できません", -- GitLab From 7f58b0ef7ce22eb4b5666f1cd4b71de95392923f Mon Sep 17 00:00:00 2001 From: joel hansson Date: Wed, 1 May 2013 12:29:15 +0300 Subject: [PATCH 059/135] typo fix in a comment. --- lib/user/database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/user/database.php b/lib/user/database.php index ea938790d22..63c64ed43d3 100644 --- a/lib/user/database.php +++ b/lib/user/database.php @@ -46,7 +46,7 @@ class OC_User_Database extends OC_User_Backend { private function getHasher() { if(!self::$hasher) { - //we don't want to use DES based crypt(), since it doesn't return a has with a recognisable prefix + //we don't want to use DES based crypt(), since it doesn't return a hash with a recognisable prefix $forcePortable=(CRYPT_BLOWFISH!=1); self::$hasher=new PasswordHash(8, $forcePortable); } -- GitLab From ee53e7b3d232d0122e19b685a689a43c52b1a1c0 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 2 May 2013 02:19:04 +0200 Subject: [PATCH 060/135] [tx-robot] updated from transifex --- apps/files_external/l10n/hu_HU.php | 1 + apps/files_sharing/l10n/en@pirate.php | 3 + apps/user_ldap/l10n/en@pirate.php | 3 + core/l10n/en@pirate.php | 3 + core/l10n/hu_HU.php | 3 + core/l10n/nl.php | 1 + core/l10n/ru.php | 1 + core/l10n/tr.php | 3 + l10n/da/settings.po | 11 +- l10n/en@pirate/core.po | 614 ++++++++++++++++++++++++++ l10n/en@pirate/files.po | 318 +++++++++++++ l10n/en@pirate/files_encryption.po | 38 ++ l10n/en@pirate/files_external.po | 123 ++++++ l10n/en@pirate/files_sharing.po | 49 ++ l10n/en@pirate/files_trashbin.po | 84 ++++ l10n/en@pirate/files_versions.po | 57 +++ l10n/en@pirate/lib.po | 241 ++++++++++ l10n/en@pirate/settings.po | 492 +++++++++++++++++++++ l10n/en@pirate/user_ldap.po | 333 ++++++++++++++ l10n/en@pirate/user_webdavauth.po | 33 ++ l10n/es/settings.po | 81 ++-- l10n/hu_HU/core.po | 13 +- l10n/hu_HU/files_external.po | 9 +- l10n/hu_HU/settings.po | 11 +- l10n/nl/core.po | 8 +- l10n/ru/core.po | 9 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/tr/core.po | 13 +- l10n/tr/settings.po | 11 +- l10n/ug/core.po | 613 +++++++++++++++++++++++++ l10n/ug/files.po | 318 +++++++++++++ l10n/ug/files_encryption.po | 38 ++ l10n/ug/files_external.po | 123 ++++++ l10n/ug/files_sharing.po | 48 ++ l10n/ug/files_trashbin.po | 84 ++++ l10n/ug/files_versions.po | 57 +++ l10n/ug/lib.po | 241 ++++++++++ l10n/ug/settings.po | 492 +++++++++++++++++++++ l10n/ug/user_ldap.po | 333 ++++++++++++++ l10n/ug/user_webdavauth.po | 33 ++ settings/l10n/da.php | 1 + settings/l10n/en@pirate.php | 3 + settings/l10n/es.php | 74 ++-- settings/l10n/hu_HU.php | 1 + settings/l10n/tr.php | 1 + 55 files changed, 4921 insertions(+), 127 deletions(-) create mode 100644 apps/files_sharing/l10n/en@pirate.php create mode 100644 apps/user_ldap/l10n/en@pirate.php create mode 100644 core/l10n/en@pirate.php create mode 100644 l10n/en@pirate/core.po create mode 100644 l10n/en@pirate/files.po create mode 100644 l10n/en@pirate/files_encryption.po create mode 100644 l10n/en@pirate/files_external.po create mode 100644 l10n/en@pirate/files_sharing.po create mode 100644 l10n/en@pirate/files_trashbin.po create mode 100644 l10n/en@pirate/files_versions.po create mode 100644 l10n/en@pirate/lib.po create mode 100644 l10n/en@pirate/settings.po create mode 100644 l10n/en@pirate/user_ldap.po create mode 100644 l10n/en@pirate/user_webdavauth.po create mode 100644 l10n/ug/core.po create mode 100644 l10n/ug/files.po create mode 100644 l10n/ug/files_encryption.po create mode 100644 l10n/ug/files_external.po create mode 100644 l10n/ug/files_sharing.po create mode 100644 l10n/ug/files_trashbin.po create mode 100644 l10n/ug/files_versions.po create mode 100644 l10n/ug/lib.po create mode 100644 l10n/ug/settings.po create mode 100644 l10n/ug/user_ldap.po create mode 100644 l10n/ug/user_webdavauth.po create mode 100644 settings/l10n/en@pirate.php diff --git a/apps/files_external/l10n/hu_HU.php b/apps/files_external/l10n/hu_HU.php index 9ecd2d1088b..b88737a19ab 100644 --- a/apps/files_external/l10n/hu_HU.php +++ b/apps/files_external/l10n/hu_HU.php @@ -6,6 +6,7 @@ "Error configuring Google Drive storage" => "A Google Drive tárolót nem sikerült beállítani", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Figyelem: az \"smbclient\" nincs telepítve a kiszolgálón. Emiatt nem lehet CIFS/SMB megosztásokat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Figyelem: a PHP FTP támogatása vagy nincs telepítve, vagy nincs engedélyezve a kiszolgálón. Emiatt nem lehetséges FTP-tárolókat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Figyelmeztetés: A PHP-ben nincs telepítve vagy engedélyezve a Curl támogatás. Nem lehetséges ownCloud / WebDAV ill. GoogleDrive tárolók becsatolása. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot!", "External Storage" => "Külső tárolási szolgáltatások becsatolása", "Folder name" => "Mappanév", "External storage" => "Külső tárolók", diff --git a/apps/files_sharing/l10n/en@pirate.php b/apps/files_sharing/l10n/en@pirate.php new file mode 100644 index 00000000000..eb667142ab4 --- /dev/null +++ b/apps/files_sharing/l10n/en@pirate.php @@ -0,0 +1,3 @@ + "Secret Code" +); diff --git a/apps/user_ldap/l10n/en@pirate.php b/apps/user_ldap/l10n/en@pirate.php new file mode 100644 index 00000000000..482632f3fda --- /dev/null +++ b/apps/user_ldap/l10n/en@pirate.php @@ -0,0 +1,3 @@ + "Passcode" +); diff --git a/core/l10n/en@pirate.php b/core/l10n/en@pirate.php new file mode 100644 index 00000000000..482632f3fda --- /dev/null +++ b/core/l10n/en@pirate.php @@ -0,0 +1,3 @@ + "Passcode" +); diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 013d68dff53..4c44404fbc6 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -88,6 +88,8 @@ "The update was successful. Redirecting you to ownCloud now." => "A frissítés sikeres volt. Visszairányítjuk az ownCloud szolgáltatáshoz.", "ownCloud password reset" => "ownCloud jelszó-visszaállítás", "Use the following link to reset your password: {link}" => "Használja ezt a linket a jelszó ismételt beállításához: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Emailben fog kapni egy linket, amivel új jelszót tud majd beállítani magának.
Ha a levél nem jött meg, holott úgy érzi, hogy már meg kellett volna érkeznie, akkor ellenőrizze a spam/levélszemét mappáját.
Ha ott sincsen, akkor érdeklődjön a rendszergazdánál.", +"Request failed!
Did you make sure your email/username was right?" => "A kérést nem sikerült teljesíteni!
Biztos, hogy jó emailcímet/felhasználónevet adott meg?", "You will receive a link to reset your password via Email." => "Egy emailben fog értesítést kapni a jelszóbeállítás módjáról.", "Username" => "Felhasználónév", "Request reset" => "Visszaállítás igénylése", @@ -123,6 +125,7 @@ "Database host" => "Adatbázis szerver", "Finish setup" => "A beállítások befejezése", "web services under your control" => "webszolgáltatások saját kézben", +"%s is available. Get more information on how to update." => "%s rendelkezésre áll. További információ a frissítéshez.", "Log out" => "Kilépés", "Automatic logon rejected!" => "Az automatikus bejelentkezés sikertelen!", "If you did not change your password recently, your account may be compromised!" => "Ha mostanában nem módosította a jelszavát, akkor lehetséges, hogy idegenek jutottak be a rendszerbe az Ön nevében!", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 83d1e82dc31..7e823b2e61d 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -125,6 +125,7 @@ "Database host" => "Database server", "Finish setup" => "Installatie afronden", "web services under your control" => "Webdiensten in eigen beheer", +"%s is available. Get more information on how to update." => "%s is beschikbaar. Verkrijg meer informatie over het bijwerken.", "Log out" => "Afmelden", "Automatic logon rejected!" => "Automatische aanmelding geweigerd!", "If you did not change your password recently, your account may be compromised!" => "Als u uw wachtwoord niet onlangs heeft aangepast, kan uw account overgenomen zijn!", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 54a0b94ec9e..43dd398119d 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -125,6 +125,7 @@ "Database host" => "Хост базы данных", "Finish setup" => "Завершить установку", "web services under your control" => "веб-сервисы под вашим управлением", +"%s is available. Get more information on how to update." => "%s доступно. Получить дополнительную информацию о порядке обновления.", "Log out" => "Выйти", "Automatic logon rejected!" => "Автоматический вход в систему отключен!", "If you did not change your password recently, your account may be compromised!" => "Если Вы недавно не меняли свой пароль, то Ваша учетная запись может быть скомпрометирована!", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 4b858e82e4b..29a6e7a286f 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -88,6 +88,8 @@ "The update was successful. Redirecting you to ownCloud now." => "Güncelleme başarılı. ownCloud'a yönlendiriliyor.", "ownCloud password reset" => "ownCloud parola sıfırlama", "Use the following link to reset your password: {link}" => "Bu bağlantıyı kullanarak parolanızı sıfırlayın: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.
I Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk dizinini kontrol ediniz.
Eğer orada da bulamazsanız sistem yöneticinize sorunuz.", +"Request failed!
Did you make sure your email/username was right?" => "Isteği başarısız oldu!
E-posta / kullanıcı adınızı doğru olduğundan emin misiniz?", "You will receive a link to reset your password via Email." => "Parolanızı sıfırlamak için bir bağlantı Eposta olarak gönderilecek.", "Username" => "Kullanıcı Adı", "Request reset" => "Sıfırlama iste", @@ -123,6 +125,7 @@ "Database host" => "Veritabanı sunucusu", "Finish setup" => "Kurulumu tamamla", "web services under your control" => "Bilgileriniz güvenli ve şifreli", +"%s is available. Get more information on how to update." => "%s mevcuttur. Güncelleştirme hakkında daha fazla bilgi alın.", "Log out" => "Çıkış yap", "Automatic logon rejected!" => "Otomatik oturum açma reddedildi!", "If you did not change your password recently, your account may be compromised!" => "Yakın zamanda parolanızı değiştirmedi iseniz hesabınız riske girebilir.", diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 7108c62b3cb..a81909c3c7c 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Ole Holm Frandsen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:17+0200\n" -"PO-Revision-Date: 2013-04-26 16:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-02 02:15+0200\n" +"PO-Revision-Date: 2013-05-01 13:50+0000\n" +"Last-Translator: Ole Holm Frandsen \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" @@ -28,7 +29,7 @@ msgstr "Adgangsfejl" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "Dit skærmnavn blev ændret." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" @@ -328,7 +329,7 @@ msgstr "Mindre" msgid "Version" msgstr "Version" -#: templates/admin.php:238 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:108 msgid "" "Developed by the ownCloud community, the , 2013 +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"PO-Revision-Date: 2013-05-01 18:51+0000\n" +"Last-Translator: lhpalacio \n" +"Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en@pirate\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:97 +#, php-format +msgid "User %s shared a file with you" +msgstr "" + +#: ajax/share.php:99 +#, php-format +msgid "User %s shared a folder with you" +msgstr "" + +#: ajax/share.php:101 +#, php-format +msgid "" +"User %s shared the file \"%s\" with you. It is available for download here: " +"%s" +msgstr "" + +#: ajax/share.php:104 +#, php-format +msgid "" +"User %s shared the folder \"%s\" with you. It is available for download " +"here: %s" +msgstr "" + +#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 +msgid "Category type not provided." +msgstr "" + +#: ajax/vcategories/add.php:30 +msgid "No category to add?" +msgstr "" + +#: ajax/vcategories/add.php:37 +#, php-format +msgid "This category already exists: %s" +msgstr "" + +#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 +#: ajax/vcategories/favorites.php:24 +#: ajax/vcategories/removeFromFavorites.php:26 +msgid "Object type not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:30 +#: ajax/vcategories/removeFromFavorites.php:30 +#, php-format +msgid "%s ID not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:35 +#, php-format +msgid "Error adding %s to favorites." +msgstr "" + +#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 +msgid "No categories selected for deletion." +msgstr "" + +#: ajax/vcategories/removeFromFavorites.php:35 +#, php-format +msgid "Error removing %s from favorites." +msgstr "" + +#: js/config.php:34 +msgid "Sunday" +msgstr "" + +#: js/config.php:35 +msgid "Monday" +msgstr "" + +#: js/config.php:36 +msgid "Tuesday" +msgstr "" + +#: js/config.php:37 +msgid "Wednesday" +msgstr "" + +#: js/config.php:38 +msgid "Thursday" +msgstr "" + +#: js/config.php:39 +msgid "Friday" +msgstr "" + +#: js/config.php:40 +msgid "Saturday" +msgstr "" + +#: js/config.php:45 +msgid "January" +msgstr "" + +#: js/config.php:46 +msgid "February" +msgstr "" + +#: js/config.php:47 +msgid "March" +msgstr "" + +#: js/config.php:48 +msgid "April" +msgstr "" + +#: js/config.php:49 +msgid "May" +msgstr "" + +#: js/config.php:50 +msgid "June" +msgstr "" + +#: js/config.php:51 +msgid "July" +msgstr "" + +#: js/config.php:52 +msgid "August" +msgstr "" + +#: js/config.php:53 +msgid "September" +msgstr "" + +#: js/config.php:54 +msgid "October" +msgstr "" + +#: js/config.php:55 +msgid "November" +msgstr "" + +#: js/config.php:56 +msgid "December" +msgstr "" + +#: js/js.js:286 +msgid "Settings" +msgstr "" + +#: js/js.js:718 +msgid "seconds ago" +msgstr "" + +#: js/js.js:719 +msgid "1 minute ago" +msgstr "" + +#: js/js.js:720 +msgid "{minutes} minutes ago" +msgstr "" + +#: js/js.js:721 +msgid "1 hour ago" +msgstr "" + +#: js/js.js:722 +msgid "{hours} hours ago" +msgstr "" + +#: js/js.js:723 +msgid "today" +msgstr "" + +#: js/js.js:724 +msgid "yesterday" +msgstr "" + +#: js/js.js:725 +msgid "{days} days ago" +msgstr "" + +#: js/js.js:726 +msgid "last month" +msgstr "" + +#: js/js.js:727 +msgid "{months} months ago" +msgstr "" + +#: js/js.js:728 +msgid "months ago" +msgstr "" + +#: js/js.js:729 +msgid "last year" +msgstr "" + +#: js/js.js:730 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "" + +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:215 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "" + +#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 +#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 +msgid "The object type is not specified." +msgstr "" + +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 +msgid "Error" +msgstr "" + +#: js/oc-vcategories.js:179 +msgid "The app name is not specified." +msgstr "" + +#: js/oc-vcategories.js:194 +msgid "The required file {file} is not installed!" +msgstr "" + +#: js/share.js:30 js/share.js:45 js/share.js:87 +msgid "Shared" +msgstr "" + +#: js/share.js:90 +msgid "Share" +msgstr "" + +#: js/share.js:125 js/share.js:617 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:136 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:143 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:152 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:154 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:159 +msgid "Share with" +msgstr "" + +#: js/share.js:164 +msgid "Share with link" +msgstr "" + +#: js/share.js:167 +msgid "Password protect" +msgstr "" + +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 +msgid "Password" +msgstr "Passcode" + +#: js/share.js:173 +msgid "Email link to person" +msgstr "" + +#: js/share.js:174 +msgid "Send" +msgstr "" + +#: js/share.js:178 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:179 +msgid "Expiration date" +msgstr "" + +#: js/share.js:211 +msgid "Share via email:" +msgstr "" + +#: js/share.js:213 +msgid "No people found" +msgstr "" + +#: js/share.js:251 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:287 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:308 +msgid "Unshare" +msgstr "" + +#: js/share.js:320 +msgid "can edit" +msgstr "" + +#: js/share.js:322 +msgid "access control" +msgstr "" + +#: js/share.js:325 +msgid "create" +msgstr "" + +#: js/share.js:328 +msgid "update" +msgstr "" + +#: js/share.js:331 +msgid "delete" +msgstr "" + +#: js/share.js:334 +msgid "share" +msgstr "" + +#: js/share.js:368 js/share.js:564 +msgid "Password protected" +msgstr "" + +#: js/share.js:577 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:589 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:604 +msgid "Sending ..." +msgstr "" + +#: js/share.js:615 +msgid "Email sent" +msgstr "" + +#: js/update.js:14 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "" + +#: js/update.js:18 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:48 +msgid "ownCloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:4 +msgid "" +"The link to reset your password has been sent to your email.
If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:12 +msgid "Request failed!
Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: templates/login.php:19 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:21 +msgid "Request reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "" + +#: templates/edit_categories_dialog.php:16 +msgid "Add" +msgstr "" + +#: templates/installation.php:24 templates/installation.php:31 +#: templates/installation.php:38 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:25 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:26 +msgid "Please update your PHP installation to use ownCloud securely." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:39 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:40 +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:44 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:62 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:64 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:74 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 +msgid "will be used" +msgstr "" + +#: templates/installation.php:137 +msgid "Database user" +msgstr "" + +#: templates/installation.php:144 +msgid "Database password" +msgstr "" + +#: templates/installation.php:149 +msgid "Database name" +msgstr "" + +#: templates/installation.php:159 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:166 +msgid "Database host" +msgstr "" + +#: templates/installation.php:172 +msgid "Finish setup" +msgstr "" + +#: templates/layout.guest.php:40 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:36 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:61 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:34 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:39 +msgid "remember" +msgstr "" + +#: templates/login.php:41 +msgid "Log in" +msgstr "" + +#: templates/login.php:47 +msgid "Alternative Logins" +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "" + +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po new file mode 100644 index 00000000000..5990ec2d715 --- /dev/null +++ b/l10n/en@pirate/files.po @@ -0,0 +1,318 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en@pirate\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:26 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:27 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:29 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:30 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:31 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:32 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:33 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:51 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:83 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:12 +msgid "Files" +msgstr "" + +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +msgid "Delete" +msgstr "" + +#: js/fileactions.js:194 +msgid "Rename" +msgstr "" + +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +msgid "Pending" +msgstr "" + +#: js/filelist.js:252 js/filelist.js:254 +msgid "{new_name} already exists" +msgstr "" + +#: js/filelist.js:252 js/filelist.js:254 +msgid "replace" +msgstr "" + +#: js/filelist.js:252 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:252 js/filelist.js:254 +msgid "cancel" +msgstr "" + +#: js/filelist.js:299 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:299 +msgid "undo" +msgstr "" + +#: js/filelist.js:324 +msgid "perform delete operation" +msgstr "" + +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + +#: js/files.js:52 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:56 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:64 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:78 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:82 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:231 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:264 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:277 +msgid "Not enough space available" +msgstr "" + +#: js/files.js:317 +msgid "Upload cancelled." +msgstr "" + +#: js/files.js:413 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:486 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:491 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 +msgid "Error" +msgstr "" + +#: js/files.js:877 templates/index.php:69 +msgid "Name" +msgstr "" + +#: js/files.js:878 templates/index.php:80 +msgid "Size" +msgstr "" + +#: js/files.js:879 templates/index.php:82 +msgid "Modified" +msgstr "" + +#: js/files.js:898 +msgid "1 folder" +msgstr "" + +#: js/files.js:900 +msgid "{count} folders" +msgstr "" + +#: js/files.js:908 +msgid "1 file" +msgstr "" + +#: js/files.js:910 +msgid "{count} files" +msgstr "" + +#: lib/helper.php:11 templates/index.php:18 +msgid "Upload" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:12 +msgid "Folder" +msgstr "" + +#: templates/index.php:14 +msgid "From link" +msgstr "" + +#: templates/index.php:42 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:48 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:54 +msgid "You don’t have write permissions here." +msgstr "" + +#: templates/index.php:61 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:75 +msgid "Download" +msgstr "" + +#: templates/index.php:87 templates/index.php:88 +msgid "Unshare" +msgstr "" + +#: templates/index.php:107 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:109 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:114 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:117 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/en@pirate/files_encryption.po b/l10n/en@pirate/files_encryption.po new file mode 100644 index 00000000000..a45b1779141 --- /dev/null +++ b/l10n/en@pirate/files_encryption.po @@ -0,0 +1,38 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en@pirate\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings-personal.php:4 templates/settings.php:5 +msgid "Encryption" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" + +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 +msgid "None" +msgstr "" diff --git a/l10n/en@pirate/files_external.po b/l10n/en@pirate/files_external.po new file mode 100644 index 00000000000..fefa9ba8f79 --- /dev/null +++ b/l10n/en@pirate/files_external.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en@pirate\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:66 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:36 js/google.js:93 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:431 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:434 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po new file mode 100644 index 00000000000..0256b0cd296 --- /dev/null +++ b/l10n/en@pirate/files_sharing.po @@ -0,0 +1,49 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# lhpalacio , 2013 +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"PO-Revision-Date: 2013-05-01 18:51+0000\n" +"Last-Translator: lhpalacio \n" +"Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en@pirate\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/authenticate.php:4 +msgid "Password" +msgstr "Secret Code" + +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" + +#: templates/public.php:10 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:13 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:19 templates/public.php:43 +msgid "Download" +msgstr "" + +#: templates/public.php:40 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:50 +msgid "web services under your control" +msgstr "" diff --git a/l10n/en@pirate/files_trashbin.po b/l10n/en@pirate/files_trashbin.po new file mode 100644 index 00000000000..9fd846e6951 --- /dev/null +++ b/l10n/en@pirate/files_trashbin.po @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en@pirate\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:42 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:42 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:96 +msgid "perform restore operation" +msgstr "" + +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "" + +#: js/trash.js:34 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:121 +msgid "Delete permanently" +msgstr "" + +#: js/trash.js:174 templates/index.php:17 +msgid "Name" +msgstr "" + +#: js/trash.js:175 templates/index.php:27 +msgid "Deleted" +msgstr "" + +#: js/trash.js:184 +msgid "1 folder" +msgstr "" + +#: js/trash.js:186 +msgid "{count} folders" +msgstr "" + +#: js/trash.js:194 +msgid "1 file" +msgstr "" + +#: js/trash.js:196 +msgid "{count} files" +msgstr "" + +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 templates/index.php:22 +msgid "Restore" +msgstr "" + +#: templates/index.php:30 templates/index.php:31 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/en@pirate/files_versions.po b/l10n/en@pirate/files_versions.po new file mode 100644 index 00000000000..b1e0a380e95 --- /dev/null +++ b/l10n/en@pirate/files_versions.po @@ -0,0 +1,57 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en@pirate\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:69 +msgid "No old versions available" +msgstr "" + +#: history.php:74 +msgid "No path specified" +msgstr "" + +#: js/versions.js:6 +msgid "Versions" +msgstr "" + +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" diff --git a/l10n/en@pirate/lib.po b/l10n/en@pirate/lib.po new file mode 100644 index 00000000000..73994aee800 --- /dev/null +++ b/l10n/en@pirate/lib.po @@ -0,0 +1,241 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-05-02 02:15+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en@pirate\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: app.php:349 +msgid "Help" +msgstr "" + +#: app.php:362 +msgid "Personal" +msgstr "" + +#: app.php:373 +msgid "Settings" +msgstr "" + +#: app.php:385 +msgid "Users" +msgstr "" + +#: app.php:398 +msgid "Apps" +msgstr "" + +#: app.php:406 +msgid "Admin" +msgstr "" + +#: files.php:209 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:210 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:211 files.php:244 +msgid "Back to Files" +msgstr "" + +#: files.php:241 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:62 json.php:73 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: search/provider/file.php:17 search/provider/file.php:35 +msgid "Files" +msgstr "" + +#: search/provider/file.php:26 search/provider/file.php:33 +msgid "Text" +msgstr "" + +#: search/provider/file.php:29 +msgid "Images" +msgstr "" + +#: setup.php:34 +msgid "Set an admin username." +msgstr "" + +#: setup.php:37 +msgid "Set an admin password." +msgstr "" + +#: setup.php:55 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: setup.php:58 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: setup.php:61 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: setup.php:64 +#, php-format +msgid "%s set the database host." +msgstr "" + +#: setup.php:132 setup.php:325 setup.php:370 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: setup.php:133 setup.php:156 setup.php:234 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: setup.php:155 setup.php:458 setup.php:525 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: setup.php:233 +msgid "MySQL username and/or password not valid" +msgstr "" + +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: setup.php:304 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" + +#: setup.php:310 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: setup.php:636 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: setup.php:858 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: setup.php:859 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: template.php:113 +msgid "seconds ago" +msgstr "" + +#: template.php:114 +msgid "1 minute ago" +msgstr "" + +#: template.php:115 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:116 +msgid "1 hour ago" +msgstr "" + +#: template.php:117 +#, php-format +msgid "%d hours ago" +msgstr "" + +#: template.php:118 +msgid "today" +msgstr "" + +#: template.php:119 +msgid "yesterday" +msgstr "" + +#: template.php:120 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:121 +msgid "last month" +msgstr "" + +#: template.php:122 +#, php-format +msgid "%d months ago" +msgstr "" + +#: template.php:123 +msgid "last year" +msgstr "" + +#: template.php:124 +msgid "years ago" +msgstr "" + +#: vcategories.php:188 vcategories.php:249 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" diff --git a/l10n/en@pirate/settings.po b/l10n/en@pirate/settings.po new file mode 100644 index 00000000000..ef0b0c8304f --- /dev/null +++ b/l10n/en@pirate/settings.po @@ -0,0 +1,492 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-05-02 02:15+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en@pirate\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change display name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/enableapp.php:11 +msgid "Could not enable app. " +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:24 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: js/apps.js:30 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:36 js/apps.js:76 +msgid "Disable" +msgstr "" + +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 +msgid "Enable" +msgstr "" + +#: js/apps.js:55 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + +#: js/apps.js:90 +msgid "Updating...." +msgstr "" + +#: js/apps.js:93 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:96 +msgid "Updated" +msgstr "" + +#: js/personal.js:118 +msgid "Saving..." +msgstr "" + +#: js/users.js:43 +msgid "deleted" +msgstr "" + +#: js/users.js:43 +msgid "undo" +msgstr "" + +#: js/users.js:75 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 +msgid "Groups" +msgstr "" + +#: js/users.js:91 templates/users.php:80 templates/users.php:115 +msgid "Group Admin" +msgstr "" + +#: js/users.js:111 templates/users.php:155 +msgid "Delete" +msgstr "" + +#: js/users.js:262 +msgid "add group" +msgstr "" + +#: js/users.js:414 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:415 js/users.js:421 js/users.js:436 +msgid "Error creating user" +msgstr "" + +#: js/users.js:420 +msgid "A valid password must be provided" +msgstr "" + +#: personal.php:35 personal.php:36 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:15 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:18 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:29 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:32 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:33 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:44 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:47 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:58 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:63 +#, php-format +msgid "" +"This ownCloud server can't set system locale to %s. This means that there " +"might be problems with certain characters in file names. We strongly suggest" +" to install the required packages on your system to support %s." +msgstr "" + +#: templates/admin.php:75 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:78 +msgid "" +"This ownCloud 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" +" of ownCloud." +msgstr "" + +#: templates/admin.php:92 +msgid "Cron" +msgstr "" + +#: templates/admin.php:101 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:111 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" + +#: templates/admin.php:121 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" + +#: templates/admin.php:128 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:134 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:135 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:142 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:143 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:150 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:151 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:158 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:161 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:168 +msgid "Security" +msgstr "" + +#: templates/admin.php:181 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:182 +msgid "" +"Enforces the clients to connect to ownCloud via an encrypted connection." +msgstr "" + +#: templates/admin.php:185 +msgid "" +"Please connect to this ownCloud instance via HTTPS to enable or disable the " +"SSL enforcement." +msgstr "" + +#: templates/admin.php:195 +msgid "Log" +msgstr "" + +#: templates/admin.php:196 +msgid "Log level" +msgstr "" + +#: templates/admin.php:227 +msgid "More" +msgstr "" + +#: templates/admin.php:228 +msgid "Less" +msgstr "" + +#: templates/admin.php:235 templates/personal.php:105 +msgid "Version" +msgstr "" + +#: templates/admin.php:237 templates/personal.php:108 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:11 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:12 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:28 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:34 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:36 +msgid "-licensed by " +msgstr "" + +#: templates/apps.php:38 +msgid "Update" +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:15 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:26 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:37 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Passcode" + +#: templates/personal.php:38 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:39 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:40 +msgid "Current password" +msgstr "" + +#: templates/personal.php:42 +msgid "New password" +msgstr "" + +#: templates/personal.php:44 +msgid "Change password" +msgstr "" + +#: templates/personal.php:56 templates/users.php:76 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:68 +msgid "Email" +msgstr "" + +#: templates/personal.php:70 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:71 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:77 templates/personal.php:78 +msgid "Language" +msgstr "" + +#: templates/personal.php:89 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:94 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:96 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/users.php:21 templates/users.php:75 +msgid "Login Name" +msgstr "" + +#: templates/users.php:30 +msgid "Create" +msgstr "" + +#: templates/users.php:33 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:39 templates/users.php:133 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:57 templates/users.php:148 +msgid "Other" +msgstr "" + +#: templates/users.php:82 +msgid "Storage" +msgstr "" + +#: templates/users.php:93 +msgid "change display name" +msgstr "" + +#: templates/users.php:97 +msgid "set new password" +msgstr "" + +#: templates/users.php:128 +msgid "Default" +msgstr "" diff --git a/l10n/en@pirate/user_ldap.po b/l10n/en@pirate/user_ldap.po new file mode 100644 index 00000000000..084c4ad5edd --- /dev/null +++ b/l10n/en@pirate/user_ldap.po @@ -0,0 +1,333 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en@pirate\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:36 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:43 +msgid "" +"The configuration is invalid. Please look in the ownCloud log for further " +"details." +msgstr "" + +#: js/settings.js:66 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:82 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:83 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:97 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:121 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:126 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:136 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:137 +msgid "Confirm Deletion" +msgstr "" + +#: templates/settings.php:8 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behaviour. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:15 +msgid "Server configuration" +msgstr "" + +#: templates/settings.php:31 +msgid "Add Server Configuration" +msgstr "" + +#: templates/settings.php:36 +msgid "Host" +msgstr "" + +#: templates/settings.php:38 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:39 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:40 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:41 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:43 +msgid "User DN" +msgstr "" + +#: templates/settings.php:45 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/settings.php:46 +msgid "Password" +msgstr "Passcode" + +#: templates/settings.php:49 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:50 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:53 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "" + +#: templates/settings.php:54 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:55 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:58 +msgid "Defines the filter to apply, when retrieving users." +msgstr "" + +#: templates/settings.php:59 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "" + +#: templates/settings.php:60 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:63 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "" + +#: templates/settings.php:64 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "" + +#: templates/settings.php:68 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:70 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:70 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:71 +msgid "Port" +msgstr "" + +#: templates/settings.php:72 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:72 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:73 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:74 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:74 +msgid "When switched on, ownCloud will only connect to the replica server." +msgstr "" + +#: templates/settings.php:75 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:75 +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" + +#: templates/settings.php:76 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:77 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:77 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "" + +#: templates/settings.php:77 +msgid "Not recommended, use for testing only." +msgstr "" + +#: templates/settings.php:78 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:78 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:80 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:82 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:82 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "" + +#: templates/settings.php:83 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:83 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:84 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:84 templates/settings.php:87 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:85 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:85 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "" + +#: templates/settings.php:86 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:86 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:87 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:88 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:90 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:92 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:93 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:93 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:94 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:95 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:95 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:99 +msgid "Test Configuration" +msgstr "" + +#: templates/settings.php:99 +msgid "Help" +msgstr "" diff --git a/l10n/en@pirate/user_webdavauth.po b/l10n/en@pirate/user_webdavauth.po new file mode 100644 index 00000000000..18917231eb6 --- /dev/null +++ b/l10n/en@pirate/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"PO-Revision-Date: 2012-11-09 09:06+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en@pirate\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:7 +msgid "" +"ownCloud will send the user credentials to this URL. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index da161823531..01d9ecc8223 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ggam , 2013 # scambra , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 09:30+0000\n" -"Last-Translator: scambra \n" +"POT-Creation-Date: 2013-05-02 02:15+0200\n" +"PO-Revision-Date: 2013-05-01 18:00+0000\n" +"Last-Translator: ggam \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" @@ -33,7 +34,7 @@ msgstr "Su nombre fue cambiado." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "Incapaz de cambiar el nombre" +msgstr "No se pudo cambiar el nombre" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -45,11 +46,11 @@ msgstr "No se pudo añadir el grupo" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "No puedo habilitar la app." +msgstr "No puedo habilitar la aplicación." #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Correo guardado" +msgstr "E-mail guardado" #: ajax/lostpassword.php:14 msgid "Invalid email" @@ -78,16 +79,16 @@ msgstr "Los administradores no se pueden eliminar a ellos mismos del grupo de ad #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "Imposible añadir el usuario al grupo %s" +msgstr "No se pudo añadir el usuario al grupo %s" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Imposible eliminar al usuario del grupo %s" +msgstr "No se pudo eliminar al usuario del grupo %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "No se puedo actualizar la aplicacion." +msgstr "No se pudo actualizar la aplicacion." #: js/apps.js:30 msgid "Update to {appversion}" @@ -99,11 +100,11 @@ msgstr "Desactivar" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "Habilitar" +msgstr "Activar" #: js/apps.js:55 msgid "Please wait...." -msgstr "Espere por favor...." +msgstr "Espere, por favor...." #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" @@ -115,7 +116,7 @@ msgstr "Actualizando...." #: js/apps.js:93 msgid "Error while updating app" -msgstr "Error mientras se actualizaba" +msgstr "Error mientras se actualizaba la aplicación" #: js/apps.js:96 msgid "Updated" @@ -135,7 +136,7 @@ msgstr "deshacer" #: js/users.js:75 msgid "Unable to remove user" -msgstr "No se puede quitar el usuario" +msgstr "No se puede eliminar el usuario" #: js/users.js:88 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 @@ -144,7 +145,7 @@ msgstr "Grupos" #: js/users.js:91 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "Grupo admin" +msgstr "Grupo administrador" #: js/users.js:111 templates/users.php:155 msgid "Delete" @@ -152,11 +153,11 @@ msgstr "Eliminar" #: js/users.js:262 msgid "add group" -msgstr "Añadir Grupo" +msgstr "añadir Grupo" #: js/users.js:414 msgid "A valid username must be provided" -msgstr "Se debe usar un nombre de usuario valido" +msgstr "Se debe usar un nombre de usuario válido" #: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" @@ -181,11 +182,11 @@ msgid "" "strongly suggest that you configure your webserver in a way that the data " "directory is no longer accessible or you move the data directory outside the" " webserver document root." -msgstr "Su directorio de datos y sus archivos son probablemente accesibles desde internet. El archivo .htaccess que ownCloud provee no está funcionando. Sugerimos fuertemente que configure su servidor web de manera que el directorio de datos ya no esté accesible o mueva el directorio de datos fuera del documento raíz de su servidor web." +msgstr "Su directorio de datos y sus archivos son probablemente accesibles desde internet. El archivo .htaccess que ownCloud provee no está funcionando. Le recomendamos encarecidamente que configure su servidor web de manera que el directorio de datos no esté accesible, o mueva el directorio de datos fuera del documento raíz de su servidor web." #: templates/admin.php:29 msgid "Setup Warning" -msgstr "Advertencia de Configuración" +msgstr "Advertencia de configuración" #: templates/admin.php:32 msgid "" @@ -206,11 +207,11 @@ msgstr "Modulo 'fileinfo' perdido" msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "El modulo PHP 'fileinfo' no se encuentra. Sugerimos habilitar este modulo para tener mejorres resultados con la detección mime-type" +msgstr "El modulo PHP 'fileinfo' no se encuentra. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección del mime-type" #: templates/admin.php:58 msgid "Locale not working" -msgstr "Configuración regional no está funcionando" +msgstr "La configuración regional no está funcionando" #: templates/admin.php:63 #, php-format @@ -218,7 +219,7 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "Este servidor ownCloud no puede establecer la configuración regional a %s. Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivos. Le recomendamos que instale los paquetes requeridos en su sistema para soportar %s." +msgstr "Este servidor ownCloud no puede establecer la configuración regional a %s. Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivos. Le recomendamos que instale los paquetes requeridos en su sistema para soportar el %s." #: templates/admin.php:75 msgid "Internet connection not working" @@ -232,7 +233,7 @@ msgid "" "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" " of ownCloud." -msgstr "Este servidor ownCloud no tiene conexion de internet. Esto quiere decir que algunas caracteristicas como montar almacenamiento externo, notificaciones sobre actualizaciones o la instalacion de apps de terceros no funcionaran. Es posible que no pueda acceder remotamente a los archivos ni enviar notificaciones por correo. Sugerimos habilitar la conexión a internet para este servidor si quiere tener todas las caracteristicas de ownCloud." +msgstr "Este servidor ownCloud no tiene conexion de internet. Esto quiere decir que algunas caracteristicas como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones o la instalacion de apps de terceros no funcionarán. Es posible que no pueda acceder remotamente a los archivos ni enviar notificaciones por correo. Sugerimos habilitar la conexión a Internet para este servidor si quiere disfrutar de todas las características de ownCloud." #: templates/admin.php:92 msgid "Cron" @@ -246,13 +247,13 @@ msgstr "Ejecutar una tarea con cada página cargada" msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "cron.php es un sistema webcron registrado. Llame a la página cron.php en la raíz de owncloud una vez por minuto sobre http." +msgstr "cron.php es un sistema webcron registrado. Llama a la página cron.php en la raíz de owncloud una vez por minuto sobre http." #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Utilizar el servicio cron del sistema. Llame al archivo cron.php en la carpeta de owncloud a través de un cronjob del sistema una vez por minuto." +msgstr "Utilizar el servicio cron del sistema. Llama al archivo cron.php en la carpeta de owncloud a través de un cronjob del sistema una vez por minuto." #: templates/admin.php:128 msgid "Sharing" @@ -284,7 +285,7 @@ msgstr "Permitir a los usuarios compartir elementos ya compartidos con ellos mis #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Permitir a los usuarios compartir con todos" +msgstr "Permitir a los usuarios compartir con todo el mundo" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" @@ -301,7 +302,7 @@ msgstr "Forzar HTTPS" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Forzar la conexión de los clientes a ownCloud con una conexión encriptada." +msgstr "Fuerza la conexión de los clientes a ownCloud con una conexión cifrada." #: templates/admin.php:185 msgid "" @@ -311,11 +312,11 @@ msgstr "Por favor, conecte esta instancia de ownCloud vía HTTPS para activar o #: templates/admin.php:195 msgid "Log" -msgstr "Historial" +msgstr "Registro" #: templates/admin.php:196 msgid "Log level" -msgstr "Nivel de Historial" +msgstr "Nivel de registro" #: templates/admin.php:227 msgid "More" @@ -327,7 +328,7 @@ msgstr "Menos" #: templates/admin.php:235 templates/personal.php:105 msgid "Version" -msgstr "Version" +msgstr "Versión" #: templates/admin.php:237 templates/personal.php:108 msgid "" @@ -365,11 +366,11 @@ msgstr "Actualizar" #: templates/help.php:4 msgid "User Documentation" -msgstr "Documentación del usuario" +msgstr "Documentación de usuario" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "Documentación del adminsitrador" +msgstr "Documentación de adminstrador" #: templates/help.php:9 msgid "Online Documentation" @@ -381,20 +382,20 @@ msgstr "Foro" #: templates/help.php:14 msgid "Bugtracker" -msgstr "Rastreador de Bugs" +msgstr "Rastreador de fallos" #: templates/help.php:17 msgid "Commercial Support" -msgstr "Soporte Comercial" +msgstr "Soporte comercial" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "Ha usado %s de %s disponibles" +msgstr "Ha usado %s de los %s disponibles" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Obtener las apps para sincronizar sus archivos" +msgstr "Obtener las aplicaciones para sincronizar sus archivos" #: templates/personal.php:26 msgid "Show First Run Wizard again" @@ -410,7 +411,7 @@ msgstr "Su contraseña ha sido cambiada" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "No se ha podido cambiar tu contraseña" +msgstr "No se ha podido cambiar su contraseña" #: templates/personal.php:40 msgid "Current password" @@ -434,11 +435,11 @@ msgstr "E-mail" #: templates/personal.php:70 msgid "Your email address" -msgstr "Tu dirección de correo" +msgstr "Su dirección de correo" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "Escribe una dirección de correo electrónico para restablecer la contraseña" +msgstr "Escriba una dirección de correo electrónico para restablecer la contraseña" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" @@ -446,7 +447,7 @@ msgstr "Idioma" #: templates/personal.php:89 msgid "Help translate" -msgstr "Ayúdanos a traducir" +msgstr "Ayúdnos a traducir" #: templates/personal.php:94 msgid "WebDAV" @@ -466,7 +467,7 @@ msgstr "Crear" #: templates/users.php:33 msgid "Default Storage" -msgstr "Almacenamiento Predeterminado" +msgstr "Almacenamiento predeterminado" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 75eab46f630..1ce61dc98c8 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Laszlo Tornoci , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"PO-Revision-Date: 2013-05-01 16:20+0000\n" +"Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -401,11 +402,11 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "Emailben fog kapni egy linket, amivel új jelszót tud majd beállítani magának.
Ha a levél nem jött meg, holott úgy érzi, hogy már meg kellett volna érkeznie, akkor ellenőrizze a spam/levélszemét mappáját.
Ha ott sincsen, akkor érdeklődjön a rendszergazdánál." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "A kérést nem sikerült teljesíteni!
Biztos, hogy jó emailcímet/felhasználónevet adott meg?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -563,7 +564,7 @@ msgstr "webszolgáltatások saját kézben" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s rendelkezésre áll. További információ a frissítéshez." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 898896a6bcc..f040dbabdc8 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Laszlo Tornoci , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:29+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"PO-Revision-Date: 2013-05-01 16:20+0000\n" +"Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +56,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "Figyelmeztetés: A PHP-ben nincs telepítve vagy engedélyezve a Curl támogatás. Nem lehetséges ownCloud / WebDAV ill. GoogleDrive tárolók becsatolása. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot!" #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 7d8b769bd55..d341340b804 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Laszlo Tornoci , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:17+0200\n" -"PO-Revision-Date: 2013-04-26 16:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-02 02:15+0200\n" +"PO-Revision-Date: 2013-05-01 16:10+0000\n" +"Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +29,7 @@ msgstr "Azonosítási hiba" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "Az Ön megjelenítési neve megváltozott." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" @@ -328,7 +329,7 @@ msgstr "Kevesebb" msgid "Version" msgstr "Verzió" -#: templates/admin.php:238 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:108 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"PO-Revision-Date: 2013-05-01 19:40+0000\n" +"Last-Translator: André Koot \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" @@ -564,7 +564,7 @@ msgstr "Webdiensten in eigen beheer" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s is beschikbaar. Verkrijg meer informatie over het bijwerken." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 5cb4935c7fd..22276bcd580 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# foool , 2013 # Vyacheslav Muranov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"PO-Revision-Date: 2013-05-01 19:20+0000\n" +"Last-Translator: foool \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" @@ -564,7 +565,7 @@ msgstr "веб-сервисы под вашим управлением" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s доступно. Получить дополнительную информацию о порядке обновления." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index b237549cfba..1c1568fec1b 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 8c175d24317..96a84b61c91 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 5322808da56..534d0968e13 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index cda82f4b227..295a062866a 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 538b56d89ff..75abe88f114 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 1f99750fa89..b6754e7a6b3 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 033ac74ab0b..fc96e8bc3af 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 1a9868b2bdf..8a98aabbbee 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-01 02:00+0200\n" +"POT-Creation-Date: 2013-05-02 02:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 2c6b96b4ceb..55dda917465 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-01 02:00+0200\n" +"POT-Creation-Date: 2013-05-02 02:15+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index c6a562ed0f2..18385ec238c 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 3f8521d7f3c..567da36153f 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-01 01:59+0200\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 20f16df25d0..787d2a015e9 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ismail yenigül , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"PO-Revision-Date: 2013-05-01 16:40+0000\n" +"Last-Translator: ismail yenigül \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" @@ -401,11 +402,11 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.
I Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk dizinini kontrol ediniz.
Eğer orada da bulamazsanız sistem yöneticinize sorunuz." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "Isteği başarısız oldu!
E-posta / kullanıcı adınızı doğru olduğundan emin misiniz?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -563,7 +564,7 @@ msgstr "Bilgileriniz güvenli ve şifreli" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s mevcuttur. Güncelleştirme hakkında daha fazla bilgi alın." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index becaab7ae21..e14def81bc7 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ismail yenigül , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:17+0200\n" -"PO-Revision-Date: 2013-04-26 16:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-02 02:15+0200\n" +"PO-Revision-Date: 2013-05-01 16:30+0000\n" +"Last-Translator: ismail yenigül \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" @@ -28,7 +29,7 @@ msgstr "Kimlik doğrulama hatası" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "Görüntülenen isminiz değiştirildi." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" @@ -328,7 +329,7 @@ msgstr "Az" msgid "Version" msgstr "Sürüm" -#: templates/admin.php:238 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:108 msgid "" "Developed by the
ownCloud community, the \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ug\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/share.php:97 +#, php-format +msgid "User %s shared a file with you" +msgstr "" + +#: ajax/share.php:99 +#, php-format +msgid "User %s shared a folder with you" +msgstr "" + +#: ajax/share.php:101 +#, php-format +msgid "" +"User %s shared the file \"%s\" with you. It is available for download here: " +"%s" +msgstr "" + +#: ajax/share.php:104 +#, php-format +msgid "" +"User %s shared the folder \"%s\" with you. It is available for download " +"here: %s" +msgstr "" + +#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 +msgid "Category type not provided." +msgstr "" + +#: ajax/vcategories/add.php:30 +msgid "No category to add?" +msgstr "" + +#: ajax/vcategories/add.php:37 +#, php-format +msgid "This category already exists: %s" +msgstr "" + +#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 +#: ajax/vcategories/favorites.php:24 +#: ajax/vcategories/removeFromFavorites.php:26 +msgid "Object type not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:30 +#: ajax/vcategories/removeFromFavorites.php:30 +#, php-format +msgid "%s ID not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:35 +#, php-format +msgid "Error adding %s to favorites." +msgstr "" + +#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 +msgid "No categories selected for deletion." +msgstr "" + +#: ajax/vcategories/removeFromFavorites.php:35 +#, php-format +msgid "Error removing %s from favorites." +msgstr "" + +#: js/config.php:34 +msgid "Sunday" +msgstr "" + +#: js/config.php:35 +msgid "Monday" +msgstr "" + +#: js/config.php:36 +msgid "Tuesday" +msgstr "" + +#: js/config.php:37 +msgid "Wednesday" +msgstr "" + +#: js/config.php:38 +msgid "Thursday" +msgstr "" + +#: js/config.php:39 +msgid "Friday" +msgstr "" + +#: js/config.php:40 +msgid "Saturday" +msgstr "" + +#: js/config.php:45 +msgid "January" +msgstr "" + +#: js/config.php:46 +msgid "February" +msgstr "" + +#: js/config.php:47 +msgid "March" +msgstr "" + +#: js/config.php:48 +msgid "April" +msgstr "" + +#: js/config.php:49 +msgid "May" +msgstr "" + +#: js/config.php:50 +msgid "June" +msgstr "" + +#: js/config.php:51 +msgid "July" +msgstr "" + +#: js/config.php:52 +msgid "August" +msgstr "" + +#: js/config.php:53 +msgid "September" +msgstr "" + +#: js/config.php:54 +msgid "October" +msgstr "" + +#: js/config.php:55 +msgid "November" +msgstr "" + +#: js/config.php:56 +msgid "December" +msgstr "" + +#: js/js.js:286 +msgid "Settings" +msgstr "" + +#: js/js.js:718 +msgid "seconds ago" +msgstr "" + +#: js/js.js:719 +msgid "1 minute ago" +msgstr "" + +#: js/js.js:720 +msgid "{minutes} minutes ago" +msgstr "" + +#: js/js.js:721 +msgid "1 hour ago" +msgstr "" + +#: js/js.js:722 +msgid "{hours} hours ago" +msgstr "" + +#: js/js.js:723 +msgid "today" +msgstr "" + +#: js/js.js:724 +msgid "yesterday" +msgstr "" + +#: js/js.js:725 +msgid "{days} days ago" +msgstr "" + +#: js/js.js:726 +msgid "last month" +msgstr "" + +#: js/js.js:727 +msgid "{months} months ago" +msgstr "" + +#: js/js.js:728 +msgid "months ago" +msgstr "" + +#: js/js.js:729 +msgid "last year" +msgstr "" + +#: js/js.js:730 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "" + +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:215 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "" + +#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 +#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 +msgid "The object type is not specified." +msgstr "" + +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 +msgid "Error" +msgstr "" + +#: js/oc-vcategories.js:179 +msgid "The app name is not specified." +msgstr "" + +#: js/oc-vcategories.js:194 +msgid "The required file {file} is not installed!" +msgstr "" + +#: js/share.js:30 js/share.js:45 js/share.js:87 +msgid "Shared" +msgstr "" + +#: js/share.js:90 +msgid "Share" +msgstr "" + +#: js/share.js:125 js/share.js:617 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:136 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:143 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:152 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:154 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:159 +msgid "Share with" +msgstr "" + +#: js/share.js:164 +msgid "Share with link" +msgstr "" + +#: js/share.js:167 +msgid "Password protect" +msgstr "" + +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 +msgid "Password" +msgstr "" + +#: js/share.js:173 +msgid "Email link to person" +msgstr "" + +#: js/share.js:174 +msgid "Send" +msgstr "" + +#: js/share.js:178 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:179 +msgid "Expiration date" +msgstr "" + +#: js/share.js:211 +msgid "Share via email:" +msgstr "" + +#: js/share.js:213 +msgid "No people found" +msgstr "" + +#: js/share.js:251 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:287 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:308 +msgid "Unshare" +msgstr "" + +#: js/share.js:320 +msgid "can edit" +msgstr "" + +#: js/share.js:322 +msgid "access control" +msgstr "" + +#: js/share.js:325 +msgid "create" +msgstr "" + +#: js/share.js:328 +msgid "update" +msgstr "" + +#: js/share.js:331 +msgid "delete" +msgstr "" + +#: js/share.js:334 +msgid "share" +msgstr "" + +#: js/share.js:368 js/share.js:564 +msgid "Password protected" +msgstr "" + +#: js/share.js:577 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:589 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:604 +msgid "Sending ..." +msgstr "" + +#: js/share.js:615 +msgid "Email sent" +msgstr "" + +#: js/update.js:14 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "" + +#: js/update.js:18 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:48 +msgid "ownCloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:4 +msgid "" +"The link to reset your password has been sent to your email.
If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:12 +msgid "Request failed!
Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: templates/login.php:19 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:21 +msgid "Request reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "" + +#: templates/edit_categories_dialog.php:16 +msgid "Add" +msgstr "" + +#: templates/installation.php:24 templates/installation.php:31 +#: templates/installation.php:38 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:25 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:26 +msgid "Please update your PHP installation to use ownCloud securely." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:39 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:40 +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:44 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:62 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:64 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:74 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 +msgid "will be used" +msgstr "" + +#: templates/installation.php:137 +msgid "Database user" +msgstr "" + +#: templates/installation.php:144 +msgid "Database password" +msgstr "" + +#: templates/installation.php:149 +msgid "Database name" +msgstr "" + +#: templates/installation.php:159 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:166 +msgid "Database host" +msgstr "" + +#: templates/installation.php:172 +msgid "Finish setup" +msgstr "" + +#: templates/layout.guest.php:40 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:36 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:61 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:34 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:39 +msgid "remember" +msgstr "" + +#: templates/login.php:41 +msgid "Log in" +msgstr "" + +#: templates/login.php:47 +msgid "Alternative Logins" +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "" + +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/ug/files.po b/l10n/ug/files.po new file mode 100644 index 00000000000..03b8fe9308e --- /dev/null +++ b/l10n/ug/files.po @@ -0,0 +1,318 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ug\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:26 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:27 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:29 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:30 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:31 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:32 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:33 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:51 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:83 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:12 +msgid "Files" +msgstr "" + +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +msgid "Delete" +msgstr "" + +#: js/fileactions.js:194 +msgid "Rename" +msgstr "" + +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +msgid "Pending" +msgstr "" + +#: js/filelist.js:252 js/filelist.js:254 +msgid "{new_name} already exists" +msgstr "" + +#: js/filelist.js:252 js/filelist.js:254 +msgid "replace" +msgstr "" + +#: js/filelist.js:252 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:252 js/filelist.js:254 +msgid "cancel" +msgstr "" + +#: js/filelist.js:299 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:299 +msgid "undo" +msgstr "" + +#: js/filelist.js:324 +msgid "perform delete operation" +msgstr "" + +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + +#: js/files.js:52 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:56 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:64 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:78 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:82 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:231 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:264 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:277 +msgid "Not enough space available" +msgstr "" + +#: js/files.js:317 +msgid "Upload cancelled." +msgstr "" + +#: js/files.js:413 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:486 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:491 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 +msgid "Error" +msgstr "" + +#: js/files.js:877 templates/index.php:69 +msgid "Name" +msgstr "" + +#: js/files.js:878 templates/index.php:80 +msgid "Size" +msgstr "" + +#: js/files.js:879 templates/index.php:82 +msgid "Modified" +msgstr "" + +#: js/files.js:898 +msgid "1 folder" +msgstr "" + +#: js/files.js:900 +msgid "{count} folders" +msgstr "" + +#: js/files.js:908 +msgid "1 file" +msgstr "" + +#: js/files.js:910 +msgid "{count} files" +msgstr "" + +#: lib/helper.php:11 templates/index.php:18 +msgid "Upload" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:12 +msgid "Folder" +msgstr "" + +#: templates/index.php:14 +msgid "From link" +msgstr "" + +#: templates/index.php:42 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:48 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:54 +msgid "You don’t have write permissions here." +msgstr "" + +#: templates/index.php:61 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:75 +msgid "Download" +msgstr "" + +#: templates/index.php:87 templates/index.php:88 +msgid "Unshare" +msgstr "" + +#: templates/index.php:107 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:109 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:114 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:117 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/ug/files_encryption.po b/l10n/ug/files_encryption.po new file mode 100644 index 00000000000..f41668c2584 --- /dev/null +++ b/l10n/ug/files_encryption.po @@ -0,0 +1,38 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ug\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: templates/settings-personal.php:4 templates/settings.php:5 +msgid "Encryption" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" + +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 +msgid "None" +msgstr "" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po new file mode 100644 index 00000000000..eb512c8a138 --- /dev/null +++ b/l10n/ug/files_external.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ug\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:66 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:36 js/google.js:93 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:431 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:434 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:437 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po new file mode 100644 index 00000000000..b8c70243a8d --- /dev/null +++ b/l10n/ug/files_sharing.po @@ -0,0 +1,48 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ug\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" + +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" + +#: templates/public.php:10 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:13 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:19 templates/public.php:43 +msgid "Download" +msgstr "" + +#: templates/public.php:40 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:50 +msgid "web services under your control" +msgstr "" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po new file mode 100644 index 00000000000..50afd6bcf85 --- /dev/null +++ b/l10n/ug/files_trashbin.po @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ug\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/delete.php:42 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:42 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:96 +msgid "perform restore operation" +msgstr "" + +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "" + +#: js/trash.js:34 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:121 +msgid "Delete permanently" +msgstr "" + +#: js/trash.js:174 templates/index.php:17 +msgid "Name" +msgstr "" + +#: js/trash.js:175 templates/index.php:27 +msgid "Deleted" +msgstr "" + +#: js/trash.js:184 +msgid "1 folder" +msgstr "" + +#: js/trash.js:186 +msgid "{count} folders" +msgstr "" + +#: js/trash.js:194 +msgid "1 file" +msgstr "" + +#: js/trash.js:196 +msgid "{count} files" +msgstr "" + +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 templates/index.php:22 +msgid "Restore" +msgstr "" + +#: templates/index.php:30 templates/index.php:31 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/ug/files_versions.po b/l10n/ug/files_versions.po new file mode 100644 index 00000000000..7237f3fcb8c --- /dev/null +++ b/l10n/ug/files_versions.po @@ -0,0 +1,57 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ug\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:69 +msgid "No old versions available" +msgstr "" + +#: history.php:74 +msgid "No path specified" +msgstr "" + +#: js/versions.js:6 +msgid "Versions" +msgstr "" + +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po new file mode 100644 index 00000000000..c1abb1aaa8f --- /dev/null +++ b/l10n/ug/lib.po @@ -0,0 +1,241 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-05-02 02:15+0200\n" +"PO-Revision-Date: 2013-04-26 08:01+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ug\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: app.php:349 +msgid "Help" +msgstr "" + +#: app.php:362 +msgid "Personal" +msgstr "" + +#: app.php:373 +msgid "Settings" +msgstr "" + +#: app.php:385 +msgid "Users" +msgstr "" + +#: app.php:398 +msgid "Apps" +msgstr "" + +#: app.php:406 +msgid "Admin" +msgstr "" + +#: files.php:209 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:210 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:211 files.php:244 +msgid "Back to Files" +msgstr "" + +#: files.php:241 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:62 json.php:73 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: search/provider/file.php:17 search/provider/file.php:35 +msgid "Files" +msgstr "" + +#: search/provider/file.php:26 search/provider/file.php:33 +msgid "Text" +msgstr "" + +#: search/provider/file.php:29 +msgid "Images" +msgstr "" + +#: setup.php:34 +msgid "Set an admin username." +msgstr "" + +#: setup.php:37 +msgid "Set an admin password." +msgstr "" + +#: setup.php:55 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: setup.php:58 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: setup.php:61 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: setup.php:64 +#, php-format +msgid "%s set the database host." +msgstr "" + +#: setup.php:132 setup.php:325 setup.php:370 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: setup.php:133 setup.php:156 setup.php:234 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: setup.php:155 setup.php:458 setup.php:525 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: setup.php:233 +msgid "MySQL username and/or password not valid" +msgstr "" + +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: setup.php:304 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:305 +msgid "Drop this user from MySQL" +msgstr "" + +#: setup.php:310 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: setup.php:311 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:584 setup.php:616 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: setup.php:636 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: setup.php:858 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: setup.php:859 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: template.php:113 +msgid "seconds ago" +msgstr "" + +#: template.php:114 +msgid "1 minute ago" +msgstr "" + +#: template.php:115 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:116 +msgid "1 hour ago" +msgstr "" + +#: template.php:117 +#, php-format +msgid "%d hours ago" +msgstr "" + +#: template.php:118 +msgid "today" +msgstr "" + +#: template.php:119 +msgid "yesterday" +msgstr "" + +#: template.php:120 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:121 +msgid "last month" +msgstr "" + +#: template.php:122 +#, php-format +msgid "%d months ago" +msgstr "" + +#: template.php:123 +msgid "last year" +msgstr "" + +#: template.php:124 +msgid "years ago" +msgstr "" + +#: vcategories.php:188 vcategories.php:249 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po new file mode 100644 index 00000000000..8908acf11ab --- /dev/null +++ b/l10n/ug/settings.po @@ -0,0 +1,492 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-05-02 02:15+0200\n" +"PO-Revision-Date: 2013-04-26 08:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ug\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change display name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/enableapp.php:11 +msgid "Could not enable app. " +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:24 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: js/apps.js:30 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:36 js/apps.js:76 +msgid "Disable" +msgstr "" + +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 +msgid "Enable" +msgstr "" + +#: js/apps.js:55 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + +#: js/apps.js:90 +msgid "Updating...." +msgstr "" + +#: js/apps.js:93 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:96 +msgid "Updated" +msgstr "" + +#: js/personal.js:118 +msgid "Saving..." +msgstr "" + +#: js/users.js:43 +msgid "deleted" +msgstr "" + +#: js/users.js:43 +msgid "undo" +msgstr "" + +#: js/users.js:75 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: templates/users.php:103 +msgid "Groups" +msgstr "" + +#: js/users.js:91 templates/users.php:80 templates/users.php:115 +msgid "Group Admin" +msgstr "" + +#: js/users.js:111 templates/users.php:155 +msgid "Delete" +msgstr "" + +#: js/users.js:262 +msgid "add group" +msgstr "" + +#: js/users.js:414 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:415 js/users.js:421 js/users.js:436 +msgid "Error creating user" +msgstr "" + +#: js/users.js:420 +msgid "A valid password must be provided" +msgstr "" + +#: personal.php:35 personal.php:36 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:15 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:18 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:29 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:32 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:33 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:44 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:47 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:58 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:63 +#, php-format +msgid "" +"This ownCloud server can't set system locale to %s. This means that there " +"might be problems with certain characters in file names. We strongly suggest" +" to install the required packages on your system to support %s." +msgstr "" + +#: templates/admin.php:75 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:78 +msgid "" +"This ownCloud 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" +" of ownCloud." +msgstr "" + +#: templates/admin.php:92 +msgid "Cron" +msgstr "" + +#: templates/admin.php:101 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:111 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" + +#: templates/admin.php:121 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" + +#: templates/admin.php:128 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:134 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:135 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:142 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:143 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:150 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:151 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:158 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:161 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:168 +msgid "Security" +msgstr "" + +#: templates/admin.php:181 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:182 +msgid "" +"Enforces the clients to connect to ownCloud via an encrypted connection." +msgstr "" + +#: templates/admin.php:185 +msgid "" +"Please connect to this ownCloud instance via HTTPS to enable or disable the " +"SSL enforcement." +msgstr "" + +#: templates/admin.php:195 +msgid "Log" +msgstr "" + +#: templates/admin.php:196 +msgid "Log level" +msgstr "" + +#: templates/admin.php:227 +msgid "More" +msgstr "" + +#: templates/admin.php:228 +msgid "Less" +msgstr "" + +#: templates/admin.php:235 templates/personal.php:105 +msgid "Version" +msgstr "" + +#: templates/admin.php:237 templates/personal.php:108 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:11 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:12 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:28 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:34 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:36 +msgid "-licensed by " +msgstr "" + +#: templates/apps.php:38 +msgid "Update" +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:15 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:26 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:37 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "" + +#: templates/personal.php:38 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:39 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:40 +msgid "Current password" +msgstr "" + +#: templates/personal.php:42 +msgid "New password" +msgstr "" + +#: templates/personal.php:44 +msgid "Change password" +msgstr "" + +#: templates/personal.php:56 templates/users.php:76 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:68 +msgid "Email" +msgstr "" + +#: templates/personal.php:70 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:71 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:77 templates/personal.php:78 +msgid "Language" +msgstr "" + +#: templates/personal.php:89 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:94 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:96 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/users.php:21 templates/users.php:75 +msgid "Login Name" +msgstr "" + +#: templates/users.php:30 +msgid "Create" +msgstr "" + +#: templates/users.php:33 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:39 templates/users.php:133 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:57 templates/users.php:148 +msgid "Other" +msgstr "" + +#: templates/users.php:82 +msgid "Storage" +msgstr "" + +#: templates/users.php:93 +msgid "change display name" +msgstr "" + +#: templates/users.php:97 +msgid "set new password" +msgstr "" + +#: templates/users.php:128 +msgid "Default" +msgstr "" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po new file mode 100644 index 00000000000..a8ca272882e --- /dev/null +++ b/l10n/ug/user_ldap.po @@ -0,0 +1,333 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"PO-Revision-Date: 2013-04-26 08:02+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ug\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:36 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:43 +msgid "" +"The configuration is invalid. Please look in the ownCloud log for further " +"details." +msgstr "" + +#: js/settings.js:66 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:82 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:83 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:97 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:121 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:126 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:136 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:137 +msgid "Confirm Deletion" +msgstr "" + +#: templates/settings.php:8 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behaviour. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:15 +msgid "Server configuration" +msgstr "" + +#: templates/settings.php:31 +msgid "Add Server Configuration" +msgstr "" + +#: templates/settings.php:36 +msgid "Host" +msgstr "" + +#: templates/settings.php:38 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:39 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:40 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:41 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:43 +msgid "User DN" +msgstr "" + +#: templates/settings.php:45 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/settings.php:46 +msgid "Password" +msgstr "" + +#: templates/settings.php:49 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:50 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:53 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "" + +#: templates/settings.php:54 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:55 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:58 +msgid "Defines the filter to apply, when retrieving users." +msgstr "" + +#: templates/settings.php:59 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "" + +#: templates/settings.php:60 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:63 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "" + +#: templates/settings.php:64 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "" + +#: templates/settings.php:68 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:70 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:70 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:71 +msgid "Port" +msgstr "" + +#: templates/settings.php:72 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:72 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:73 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:74 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:74 +msgid "When switched on, ownCloud will only connect to the replica server." +msgstr "" + +#: templates/settings.php:75 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:75 +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" + +#: templates/settings.php:76 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:77 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:77 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "" + +#: templates/settings.php:77 +msgid "Not recommended, use for testing only." +msgstr "" + +#: templates/settings.php:78 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:78 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:80 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:82 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:82 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "" + +#: templates/settings.php:83 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:83 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:84 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:84 templates/settings.php:87 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:85 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:85 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "" + +#: templates/settings.php:86 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:86 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:87 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:88 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:90 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:92 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:93 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:93 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:94 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:95 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:95 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:99 +msgid "Test Configuration" +msgstr "" + +#: templates/settings.php:99 +msgid "Help" +msgstr "" diff --git a/l10n/ug/user_webdavauth.po b/l10n/ug/user_webdavauth.po new file mode 100644 index 00000000000..5af76959104 --- /dev/null +++ b/l10n/ug/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"PO-Revision-Date: 2012-11-09 09:06+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ug\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:7 +msgid "" +"ownCloud will send the user credentials to this URL. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 0c9bb1109dc..a01a90337da 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -1,6 +1,7 @@ "Kunne ikke indlæse listen fra App Store", "Authentication error" => "Adgangsfejl", +"Your display name has been changed." => "Dit skærmnavn blev ændret.", "Unable to change display name" => "Kunne ikke skifte skærmnavn", "Group already exists" => "Gruppen findes allerede", "Unable to add group" => "Gruppen kan ikke oprettes", diff --git a/settings/l10n/en@pirate.php b/settings/l10n/en@pirate.php new file mode 100644 index 00000000000..482632f3fda --- /dev/null +++ b/settings/l10n/en@pirate.php @@ -0,0 +1,3 @@ + "Passcode" +); diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 3db3169ca87..aaf858cf2cf 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -2,55 +2,55 @@ "Unable to load list from App Store" => "Imposible cargar la lista desde el App Store", "Authentication error" => "Error de autenticación", "Your display name has been changed." => "Su nombre fue cambiado.", -"Unable to change display name" => "Incapaz de cambiar el nombre", +"Unable to change display name" => "No se pudo cambiar el nombre", "Group already exists" => "El grupo ya existe", "Unable to add group" => "No se pudo añadir el grupo", -"Could not enable app. " => "No puedo habilitar la app.", -"Email saved" => "Correo guardado", +"Could not enable app. " => "No puedo habilitar la aplicación.", +"Email saved" => "E-mail guardado", "Invalid email" => "Correo no válido", "Unable to delete group" => "No se pudo eliminar el grupo", "Unable to delete user" => "No se pudo eliminar el usuario", "Language changed" => "Idioma cambiado", "Invalid request" => "Petición no válida", "Admins can't remove themself from the admin group" => "Los administradores no se pueden eliminar a ellos mismos del grupo de administrador", -"Unable to add user to group %s" => "Imposible añadir el usuario al grupo %s", -"Unable to remove user from group %s" => "Imposible eliminar al usuario del grupo %s", -"Couldn't update app." => "No se puedo actualizar la aplicacion.", +"Unable to add user to group %s" => "No se pudo añadir el usuario al grupo %s", +"Unable to remove user from group %s" => "No se pudo eliminar al usuario del grupo %s", +"Couldn't update app." => "No se pudo actualizar la aplicacion.", "Update to {appversion}" => "Actualizado a {appversion}", "Disable" => "Desactivar", -"Enable" => "Habilitar", -"Please wait...." => "Espere por favor....", +"Enable" => "Activar", +"Please wait...." => "Espere, por favor....", "Error" => "Error", "Updating...." => "Actualizando....", -"Error while updating app" => "Error mientras se actualizaba", +"Error while updating app" => "Error mientras se actualizaba la aplicación", "Updated" => "Actualizado", "Saving..." => "Guardando...", "deleted" => "borrado", "undo" => "deshacer", -"Unable to remove user" => "No se puede quitar el usuario", +"Unable to remove user" => "No se puede eliminar el usuario", "Groups" => "Grupos", -"Group Admin" => "Grupo admin", +"Group Admin" => "Grupo administrador", "Delete" => "Eliminar", -"add group" => "Añadir Grupo", -"A valid username must be provided" => "Se debe usar un nombre de usuario valido", +"add group" => "añadir Grupo", +"A valid username must be provided" => "Se debe usar un nombre de usuario válido", "Error creating user" => "Error al crear usuario", "A valid password must be provided" => "Se debe usar una contraseña valida", "__language_name__" => "Castellano", "Security Warning" => "Advertencia de seguridad", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Su directorio de datos y sus archivos son probablemente accesibles desde internet. El archivo .htaccess que ownCloud provee no está funcionando. Sugerimos fuertemente que configure su servidor web de manera que el directorio de datos ya no esté accesible o mueva el directorio de datos fuera del documento raíz de su servidor web.", -"Setup Warning" => "Advertencia de Configuración", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Su directorio de datos y sus archivos son probablemente accesibles desde internet. El archivo .htaccess que ownCloud provee no está funcionando. Le recomendamos encarecidamente que configure su servidor web de manera que el directorio de datos no esté accesible, o mueva el directorio de datos fuera del documento raíz de su servidor web.", +"Setup Warning" => "Advertencia de configuración", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando.", "Please double check the installation guides." => "Por favor, vuelva a comprobar las guías de instalación.", "Module 'fileinfo' missing" => "Modulo 'fileinfo' perdido", -"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "El modulo PHP 'fileinfo' no se encuentra. Sugerimos habilitar este modulo para tener mejorres resultados con la detección mime-type", -"Locale not working" => "Configuración regional no está funcionando", -"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Este servidor ownCloud no puede establecer la configuración regional a %s. Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivos. Le recomendamos que instale los paquetes requeridos en su sistema para soportar %s.", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "El modulo PHP 'fileinfo' no se encuentra. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección del mime-type", +"Locale not working" => "La configuración regional no está funcionando", +"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Este servidor ownCloud no puede establecer la configuración regional a %s. Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivos. Le recomendamos que instale los paquetes requeridos en su sistema para soportar el %s.", "Internet connection not working" => "La conexion a internet no esta funcionando", -"This ownCloud 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 of ownCloud." => "Este servidor ownCloud no tiene conexion de internet. Esto quiere decir que algunas caracteristicas como montar almacenamiento externo, notificaciones sobre actualizaciones o la instalacion de apps de terceros no funcionaran. Es posible que no pueda acceder remotamente a los archivos ni enviar notificaciones por correo. Sugerimos habilitar la conexión a internet para este servidor si quiere tener todas las caracteristicas de ownCloud.", +"This ownCloud 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 of ownCloud." => "Este servidor ownCloud no tiene conexion de internet. Esto quiere decir que algunas caracteristicas como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones o la instalacion de apps de terceros no funcionarán. Es posible que no pueda acceder remotamente a los archivos ni enviar notificaciones por correo. Sugerimos habilitar la conexión a Internet para este servidor si quiere disfrutar de todas las características de ownCloud.", "Cron" => "Cron", "Execute one task with each page loaded" => "Ejecutar una tarea con cada página cargada", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php es un sistema webcron registrado. Llame a la página cron.php en la raíz de owncloud una vez por minuto sobre http.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Utilizar el servicio cron del sistema. Llame al archivo cron.php en la carpeta de owncloud a través de un cronjob del sistema una vez por minuto.", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php es un sistema webcron registrado. Llama a la página cron.php en la raíz de owncloud una vez por minuto sobre http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Utilizar el servicio cron del sistema. Llama al archivo cron.php en la carpeta de owncloud a través de un cronjob del sistema una vez por minuto.", "Sharing" => "Compartiendo", "Enable Share API" => "Activar API de Compartición", "Allow apps to use the Share API" => "Permitir a las aplicaciones utilizar la API de Compartición", @@ -58,17 +58,17 @@ "Allow users to share items to the public with links" => "Permitir a los usuarios compartir elementos al público con enlaces", "Allow resharing" => "Permitir re-compartición", "Allow users to share items shared with them again" => "Permitir a los usuarios compartir elementos ya compartidos con ellos mismos", -"Allow users to share with anyone" => "Permitir a los usuarios compartir con todos", +"Allow users to share with anyone" => "Permitir a los usuarios compartir con todo el mundo", "Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los usuarios en sus grupos", "Security" => "Seguridad", "Enforce HTTPS" => "Forzar HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Forzar la conexión de los clientes a ownCloud con una conexión encriptada.", +"Enforces the clients to connect to ownCloud via an encrypted connection." => "Fuerza la conexión de los clientes a ownCloud con una conexión cifrada.", "Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Por favor, conecte esta instancia de ownCloud vía HTTPS para activar o desactivar la aplicación de SSL.", -"Log" => "Historial", -"Log level" => "Nivel de Historial", +"Log" => "Registro", +"Log level" => "Nivel de registro", "More" => "Más", "Less" => "Menos", -"Version" => "Version", +"Version" => "Versión", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desarrollado por la comunidad ownCloud, el código fuente está bajo licencia AGPL.", "Add your App" => "Añade tu aplicación", "More Apps" => "Más aplicaciones", @@ -76,32 +76,32 @@ "See application page at apps.owncloud.com" => "Echa un vistazo a la web de aplicaciones apps.owncloud.com", "-licensed by " => "-licenciado por ", "Update" => "Actualizar", -"User Documentation" => "Documentación del usuario", -"Administrator Documentation" => "Documentación del adminsitrador", +"User Documentation" => "Documentación de usuario", +"Administrator Documentation" => "Documentación de adminstrador", "Online Documentation" => "Documentación en linea", "Forum" => "Foro", -"Bugtracker" => "Rastreador de Bugs", -"Commercial Support" => "Soporte Comercial", -"You have used %s of the available %s" => "Ha usado %s de %s disponibles", -"Get the apps to sync your files" => "Obtener las apps para sincronizar sus archivos", +"Bugtracker" => "Rastreador de fallos", +"Commercial Support" => "Soporte comercial", +"You have used %s of the available %s" => "Ha usado %s de los %s disponibles", +"Get the apps to sync your files" => "Obtener las aplicaciones para sincronizar sus archivos", "Show First Run Wizard again" => "Mostrar asistente para iniciar otra vez", "Password" => "Contraseña", "Your password was changed" => "Su contraseña ha sido cambiada", -"Unable to change your password" => "No se ha podido cambiar tu contraseña", +"Unable to change your password" => "No se ha podido cambiar su contraseña", "Current password" => "Contraseña actual", "New password" => "Nueva contraseña", "Change password" => "Cambiar contraseña", "Display Name" => "Nombre a mostrar", "Email" => "E-mail", -"Your email address" => "Tu dirección de correo", -"Fill in an email address to enable password recovery" => "Escribe una dirección de correo electrónico para restablecer la contraseña", +"Your email address" => "Su dirección de correo", +"Fill in an email address to enable password recovery" => "Escriba una dirección de correo electrónico para restablecer la contraseña", "Language" => "Idioma", -"Help translate" => "Ayúdanos a traducir", +"Help translate" => "Ayúdnos a traducir", "WebDAV" => "WebDAV", "Use this address to connect to your ownCloud in your file manager" => "Use esta dirección para conectarse a su cuenta de ownCloud en el administrador de archivos", "Login Name" => "Nombre de usuario", "Create" => "Crear", -"Default Storage" => "Almacenamiento Predeterminado", +"Default Storage" => "Almacenamiento predeterminado", "Unlimited" => "Ilimitado", "Other" => "Otro", "Storage" => "Almacenamiento", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 498e886077a..178fd1d73e1 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -1,6 +1,7 @@ "Nem tölthető le a lista az App Store-ból", "Authentication error" => "Azonosítási hiba", +"Your display name has been changed." => "Az Ön megjelenítési neve megváltozott.", "Unable to change display name" => "Nem sikerült megváltoztatni a megjelenítési nevet", "Group already exists" => "A csoport már létezik", "Unable to add group" => "A csoport nem hozható létre", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 29f7504a521..0a803d64ec0 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -1,6 +1,7 @@ "App Store'dan liste yüklenemiyor", "Authentication error" => "Kimlik doğrulama hatası", +"Your display name has been changed." => "Görüntülenen isminiz değiştirildi.", "Unable to change display name" => "Ekran adı değiştirilemiyor", "Group already exists" => "Grup zaten mevcut", "Unable to add group" => "Gruba eklenemiyor", -- GitLab From 04b7a9902d113f51c1da12a1bc0bd1b0cb975ae4 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Wed, 1 May 2013 20:29:07 -0400 Subject: [PATCH 061/135] Fix #2816 renaming shared files --- apps/files_sharing/lib/cache.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 9fccd0b46f3..a2b7e22d1b3 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -182,12 +182,10 @@ class Shared_Cache extends Cache { */ public function move($source, $target) { if ($cache = $this->getSourceCache($source)) { - $targetPath = \OC_Share_Backend_File::getSourcePath(dirname($target)); - if ($targetPath) { - $targetPath .= '/' . basename($target); - $cache->move($this->files[$source], $targetPath); + $file = \OC_Share_Backend_File::getSource($target); + if ($file && isset($file['path'])) { + $cache->move($this->files[$source], $file['path']); } - } } -- GitLab From 274bf3c6bdb4dc1ccf4f88d485b5bffe85d8a8ea Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Wed, 1 May 2013 20:39:02 -0400 Subject: [PATCH 062/135] Don't display shared links if disabled --- apps/files_sharing/public.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index c8aca498f8c..2b283375a67 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -3,6 +3,13 @@ $RUNTIME_NOSETUPFS = true; // Load other apps for file previews OC_App::loadApps(); +if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') !== 'yes') { + header('HTTP/1.0 404 Not Found'); + $tmpl = new OCP\Template('', '404', 'guest'); + $tmpl->printPage(); + exit(); +} + function fileCmp($a, $b) { if ($a['type'] == 'dir' and $b['type'] != 'dir') { return -1; -- GitLab From ed0c23a9cc49f10c741a84dc6c95e1dfef6ee61b Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Thu, 2 May 2013 14:36:16 +0200 Subject: [PATCH 063/135] fix bug that would only return error responses for 3rdparty apps --- lib/api.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/api.php b/lib/api.php index 249d7a90350..8e4c3ef29b9 100644 --- a/lib/api.php +++ b/lib/api.php @@ -147,6 +147,7 @@ class OC_API { } } } + // Remove any error responses if there is one shipped response that succeeded if(!empty($shipped['succeeded'])) { $responses = array_merge($shipped['succeeded'], $thirdparty['succeeded']); @@ -157,14 +158,17 @@ class OC_API { // Maybe any that are not OC_API::RESPOND_SERVER_ERROR $response = reset($shipped['failed']); return $response; - } else { + } elseif(!empty($thirdparty['failed'])) { // Return the third party failure result $response = reset($thirdparty['failed']); return $response; + } else { + $responses = array_merge($shipped['succeeded'], $thirdparty['succeeded']); } // Merge the successful responses $meta = array(); $data = array(); + foreach($responses as $app => $response) { if(OC_App::isShipped($app)) { $data = array_merge_recursive($response->getData(), $data); -- GitLab From 0f38e6ec9caa726be646b6e25f7db10c5fa911ea Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Thu, 2 May 2013 14:49:05 +0200 Subject: [PATCH 064/135] logout before output to not run into header already sent problems --- lib/api.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/api.php b/lib/api.php index 8e4c3ef29b9..c74ffc1a557 100644 --- a/lib/api.php +++ b/lib/api.php @@ -112,8 +112,9 @@ class OC_API { $response = self::mergeResponses($responses); $formats = array('json', 'xml'); $format = !empty($_GET['format']) && in_array($_GET['format'], $formats) ? $_GET['format'] : 'xml'; - self::respond($response); OC_User::logout(); + + self::respond($response); } /** -- GitLab From 11afb2e5a80bb29a48717b0a9b6a9e034fd55497 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Thu, 2 May 2013 14:51:53 +0200 Subject: [PATCH 065/135] respect format output --- lib/api.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/api.php b/lib/api.php index c74ffc1a557..fc76836995b 100644 --- a/lib/api.php +++ b/lib/api.php @@ -111,10 +111,11 @@ class OC_API { } $response = self::mergeResponses($responses); $formats = array('json', 'xml'); + $format = !empty($_GET['format']) && in_array($_GET['format'], $formats) ? $_GET['format'] : 'xml'; OC_User::logout(); - - self::respond($response); + + self::respond($response, $format); } /** -- GitLab From 371b0d9583a91df9b046dcd9935e8cbadee03704 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 2 May 2013 11:47:38 -0400 Subject: [PATCH 066/135] ignore themes --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 9da4d972909..1cb83d48d1b 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,9 @@ apps/* !apps/user_ldap !apps/user_webdavauth +# ignore themes +themes/* + # just sane ignores .*.sw[po] *.bak -- GitLab From 8a2ac273eb7051e4036c997ace85d726a547fcc2 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 2 May 2013 11:51:29 -0400 Subject: [PATCH 067/135] don't ignore themes README --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1cb83d48d1b..b57dd3d2058 100644 --- a/.gitignore +++ b/.gitignore @@ -16,8 +16,9 @@ apps/* !apps/user_ldap !apps/user_webdavauth -# ignore themes +# ignore themes except the README themes/* +!themes/README # just sane ignores .*.sw[po] -- GitLab From 7039421efc80f3551026d3f16ba6887e7be02234 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Thu, 2 May 2013 17:47:11 -0400 Subject: [PATCH 068/135] Fix retrieving of mount points for shared storage, fix #3218 --- apps/files_sharing/lib/cache.php | 27 +++++++++++++++++++++--- apps/files_sharing/lib/sharedstorage.php | 4 ++-- lib/files/filesystem.php | 2 +- 3 files changed, 27 insertions(+), 6 deletions(-) diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 1cb457cb987..2160fe9a393 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -45,8 +45,8 @@ class Shared_Cache extends Cache { if (isset($source['path']) && isset($source['fileOwner'])) { \OC\Files\Filesystem::initMountPoints($source['fileOwner']); $mount = \OC\Files\Filesystem::getMountByNumericId($source['storage']); - if ($mount) { - $fullPath = $mount->getMountPoint().$source['path']; + if (is_array($mount)) { + $fullPath = $mount[key($mount)]->getMountPoint().$source['path']; list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($fullPath); if ($storage) { $this->files[$target] = $internalPath; @@ -60,6 +60,14 @@ class Shared_Cache extends Cache { return false; } + public function getNumericStorageId() { + if (isset($this->numericId)) { + return $this->numericId; + } else { + return false; + } + } + /** * get the stored metadata of a file or folder * @@ -267,4 +275,17 @@ class Shared_Cache extends Cache { return \OCP\Share::getItemsSharedWith('file', \OC_Share_Backend_File::FORMAT_GET_ALL); } -} + /** + * find a folder in the cache which has not been fully scanned + * + * If multiply incomplete folders are in the cache, the one with the highest id will be returned, + * use the one with the highest id gives the best result with the background scanner, since that is most + * likely the folder where we stopped scanning previously + * + * @return string|bool the path of the folder or false when no folder matched + */ + public function getIncomplete() { + return false; + } + +} \ No newline at end of file diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 2facad0f7e2..5c23a9eb0d0 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -72,8 +72,8 @@ class Shared extends \OC\Files\Storage\Common { if (!isset($source['fullPath'])) { \OC\Files\Filesystem::initMountPoints($source['fileOwner']); $mount = \OC\Files\Filesystem::getMountByNumericId($source['storage']); - if ($mount) { - $this->files[$target]['fullPath'] = $mount->getMountPoint().$source['path']; + if (is_array($mount)) { + $this->files[$target]['fullPath'] = $mount[key($mount)]->getMountPoint().$source['path']; } else { $this->files[$target]['fullPath'] = false; } diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php index ad21a98fabc..eadd8a93faf 100644 --- a/lib/files/filesystem.php +++ b/lib/files/filesystem.php @@ -199,7 +199,7 @@ class Filesystem { * @return Mount\Mount[] */ public static function getMountByNumericId($id) { - return self::$mounts->findByStorageId($id); + return self::$mounts->findByNumericId($id); } /** -- GitLab From 73d7cae6dfc5574c5b1699ba2982c7c10dfbb955 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Thu, 2 May 2013 18:22:43 -0400 Subject: [PATCH 069/135] One more mount point fix --- lib/public/share.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/public/share.php b/lib/public/share.php index 525fe7e8533..a561319e9bd 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -875,7 +875,10 @@ class Share { $row['path'] = '/Shared/'.basename($row['path']); } else { if (!isset($mounts[$row['storage']])) { - $mounts[$row['storage']] = \OC\Files\Filesystem::getMountByNumericId($row['storage']); + $mountPoints = \OC\Files\Filesystem::getMountByNumericId($row['storage']); + if (is_array($mountPoints)) { + $mounts[$row['storage']] = $mountPoints[key($mountPoints)]; + } } if ($mounts[$row['storage']]) { $path = $mounts[$row['storage']]->getMountPoint().$row['path']; -- GitLab From 4f6565d8e7479ed637cc5e418e7dc768a54c4b0a Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 3 May 2013 02:05:10 +0200 Subject: [PATCH 070/135] [tx-robot] updated from transifex --- apps/files_encryption/l10n/ca.php | 10 +++++----- apps/user_ldap/l10n/he.php | 8 ++++++++ core/l10n/cs_CZ.php | 1 + core/l10n/he.php | 1 + l10n/ca/files_encryption.po | 17 +++++++++-------- l10n/cs_CZ/core.po | 8 ++++---- l10n/he/core.po | 9 +++++---- l10n/he/user_ldap.po | 23 ++++++++++++----------- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- 19 files changed, 56 insertions(+), 43 deletions(-) diff --git a/apps/files_encryption/l10n/ca.php b/apps/files_encryption/l10n/ca.php index ce9fe38996b..2d59a306d33 100644 --- a/apps/files_encryption/l10n/ca.php +++ b/apps/files_encryption/l10n/ca.php @@ -1,7 +1,7 @@ "Encriptatge", -"File encryption is enabled." => "L'encriptació de fitxers està activada.", -"The following file types will not be encrypted:" => "Els tipus de fitxers següents no s'encriptaran:", -"Exclude the following file types from encryption:" => "Exclou els tipus de fitxers següents de l'encriptatge:", -"None" => "cap" +"Encryption" => "Xifrat", +"File encryption is enabled." => "El xifrat de fitxers està activat.", +"The following file types will not be encrypted:" => "Els tipus de fitxers següents no es xifraran:", +"Exclude the following file types from encryption:" => "Exclou els tipus de fitxers següents del xifratge:", +"None" => "Cap" ); diff --git a/apps/user_ldap/l10n/he.php b/apps/user_ldap/l10n/he.php index c9b0e282f1d..97259a0ddd5 100644 --- a/apps/user_ldap/l10n/he.php +++ b/apps/user_ldap/l10n/he.php @@ -1,5 +1,13 @@ "מחיקה נכשלה", +"Keep settings?" => "האם לשמור את ההגדרות?", +"Cannot add server configuration" => "לא ניתן להוסיף את הגדרות השרת", +"Connection test succeeded" => "בדיקת החיבור עברה בהצלחה", +"Connection test failed" => "בדיקת החיבור נכשלה", +"Do you really want to delete the current Server Configuration?" => "האם אכן למחוק את הגדרות השרת הנוכחיות?", +"Confirm Deletion" => "אישור המחיקה", +"Server configuration" => "הגדרות השרת", +"Add Server Configuration" => "הוספת הגדרות השרת", "Host" => "מארח", "User DN" => "DN משתמש", "Password" => "סיסמא", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index d64bda88df8..be354386e10 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -125,6 +125,7 @@ "Database host" => "Hostitel databáze", "Finish setup" => "Dokončit nastavení", "web services under your control" => "služby webu pod Vaší kontrolou", +"%s is available. Get more information on how to update." => "%s je dostupná. Získejte více informací k postupu aktualizace.", "Log out" => "Odhlásit se", "Automatic logon rejected!" => "Automatické přihlášení odmítnuto.", "If you did not change your password recently, your account may be compromised!" => "V nedávné době jste nezměnili své heslo, Váš účet může být kompromitován.", diff --git a/core/l10n/he.php b/core/l10n/he.php index f161c356cae..25603360741 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -105,6 +105,7 @@ "Edit categories" => "ערוך קטגוריות", "Add" => "הוספה", "Security Warning" => "אזהרת אבטחה", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "גרסת ה־PHP פגיעה בפני התקפת בית NULL/ריק (CVE-2006-7243)", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "אין מחולל מספרים אקראיים מאובטח, נא להפעיל את ההרחבה OpenSSL ב־PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "ללא מחולל מספרים אקראיים מאובטח תוקף יכול לנבא את מחרוזות איפוס הססמה ולהשתלט על החשבון שלך.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "תיקיית וקבצי המידע שלך כנראה נגישים מהאינטרנט מכיוון שקובץ ה.htaccess לא עובד.", diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index b01e6a02dae..98fd3185f0b 100644 --- a/l10n/ca/files_encryption.po +++ b/l10n/ca/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Jordi Vilalta Prat , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:29+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-03 02:02+0200\n" +"PO-Revision-Date: 2013-05-02 10:40+0000\n" +"Last-Translator: Jordi Vilalta Prat \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,20 +20,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "Encriptatge" +msgstr "Xifrat" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "L'encriptació de fitxers està activada." +msgstr "El xifrat de fitxers està activat." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "Els tipus de fitxers següents no s'encriptaran:" +msgstr "Els tipus de fitxers següents no es xifraran:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "Exclou els tipus de fitxers següents de l'encriptatge:" +msgstr "Exclou els tipus de fitxers següents del xifratge:" #: templates/settings.php:12 msgid "None" -msgstr "cap" +msgstr "Cap" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 76830c09503..275c6f62f9e 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-03 02:02+0200\n" +"PO-Revision-Date: 2013-05-02 06:00+0000\n" +"Last-Translator: Tomáš Chvátal \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" @@ -564,7 +564,7 @@ msgstr "služby webu pod Vaší kontrolou" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s je dostupná. Získejte více informací k postupu aktualizace." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/he/core.po b/l10n/he/core.po index 88f6865e1bd..e37d0c016b4 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Yaron Shahrabani , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-03 02:02+0200\n" +"PO-Revision-Date: 2013-05-02 09:10+0000\n" +"Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -479,7 +480,7 @@ msgstr "אזהרת אבטחה" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "גרסת ה־PHP פגיעה בפני התקפת בית NULL/ריק (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 92e6ef6be1b..dea5250c455 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Yaron Shahrabani , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:31+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-03 02:02+0200\n" +"PO-Revision-Date: 2013-05-02 13:50+0000\n" +"Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,27 +48,27 @@ msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "" +msgstr "האם לשמור את ההגדרות?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "" +msgstr "לא ניתן להוסיף את הגדרות השרת" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "" +msgstr "בדיקת החיבור עברה בהצלחה" #: js/settings.js:126 msgid "Connection test failed" -msgstr "" +msgstr "בדיקת החיבור נכשלה" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "האם אכן למחוק את הגדרות השרת הנוכחיות?" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "" +msgstr "אישור המחיקה" #: templates/settings.php:8 msgid "" @@ -84,11 +85,11 @@ msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "" +msgstr "הגדרות השרת" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "" +msgstr "הוספת הגדרות השרת" #: templates/settings.php:36 msgid "Host" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 1c1568fec1b..335109ff801 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"POT-Creation-Date: 2013-05-03 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 96a84b61c91..9b68d7cb8f6 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"POT-Creation-Date: 2013-05-03 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 534d0968e13..f03efb72e21 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"POT-Creation-Date: 2013-05-03 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 295a062866a..ee90c1e50e5 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"POT-Creation-Date: 2013-05-03 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 75abe88f114..20769d5c9aa 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"POT-Creation-Date: 2013-05-03 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index b6754e7a6b3..47c0473b7e5 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"POT-Creation-Date: 2013-05-03 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index fc96e8bc3af..b3e86bb6021 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"POT-Creation-Date: 2013-05-03 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 8a98aabbbee..c328cfc66ed 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-02 02:15+0200\n" +"POT-Creation-Date: 2013-05-03 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 55dda917465..590c9af7b7a 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-02 02:15+0200\n" +"POT-Creation-Date: 2013-05-03 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 18385ec238c..e14dc12ac1e 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"POT-Creation-Date: 2013-05-03 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 567da36153f..776217d3aec 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"POT-Creation-Date: 2013-05-03 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -- GitLab From 9c3b83e28c8a10f9ad38d3487dae1a3bc9601635 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Tue, 30 Apr 2013 19:51:28 +0200 Subject: [PATCH 071/135] Fix retrieval of users with multiple backends --- settings/ajax/userlist.php | 9 +++++++-- settings/js/users.js | 12 +++++++++--- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/settings/ajax/userlist.php b/settings/ajax/userlist.php index 87b42395749..4abf54b8987 100644 --- a/settings/ajax/userlist.php +++ b/settings/ajax/userlist.php @@ -27,9 +27,14 @@ if (isset($_GET['offset'])) { } else { $offset = 0; } +if (isset($_GET['limit'])) { + $limit = $_GET['limit']; +} else { + $limit = 10; +} $users = array(); if (OC_User::isAdminUser(OC_User::getUser())) { - $batch = OC_User::getDisplayNames('', 10, $offset); + $batch = OC_User::getDisplayNames('', $limit, $offset); foreach ($batch as $user => $displayname) { $users[] = array( 'name' => $user, @@ -40,7 +45,7 @@ if (OC_User::isAdminUser(OC_User::getUser())) { } } else { $groups = OC_SubAdmin::getSubAdminsGroups(OC_User::getUser()); - $batch = OC_Group::usersInGroups($groups, '', 10, $offset); + $batch = OC_Group::usersInGroups($groups, '', $limit, $offset); foreach ($batch as $user) { $users[] = array( 'name' => $user, diff --git a/settings/js/users.js b/settings/js/users.js index 4a358a4392d..690c9ad0464 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -19,6 +19,10 @@ function setQuota (uid, quota, ready) { var UserList = { useUndo: true, availableGroups: [], + offset: 30, //The first 30 users are there. No prob, if less in total. + //hardcoded in settings/users.php + + usersToLoad: 10, //So many users will be loaded when user scrolls down /** * @brief Initiate user deletion process in UI @@ -192,14 +196,17 @@ var UserList = { return; } UserList.updating = true; - $.get(OC.Router.generate('settings_ajax_userlist', { offset: UserList.offset }), function (result) { + $.get(OC.Router.generate('settings_ajax_userlist', { offset: UserList.offset, limit: UserList.usersToLoad }), function (result) { if (result.status === 'success') { + //The offset does not mirror the amount of users available, + //because it is backend-dependent. For correct retrieval, + //always the limit(requested amount of users) needs to be added. + UserList.offset += UserList.usersToLoad; $.each(result.data, function (index, user) { if($('tr[data-uid="' + user.name + '"]').length > 0) { return true; } var tr = UserList.add(user.name, user.displayname, user.groups, user.subadmin, user.quota, false); - UserList.offset++; if (index == 9) { $(tr).bind('inview', function (event, isInView, visiblePartX, visiblePartY) { $(this).unbind(event); @@ -315,7 +322,6 @@ $(document).ready(function () { UserList.doSort(); UserList.availableGroups = $('#content table').attr('data-groups').split(', '); - UserList.offset = $('tbody tr').length; $('tbody tr:last').bind('inview', function (event, isInView, visiblePartX, visiblePartY) { OC.Router.registerLoadedCallback(function () { UserList.update(); -- GitLab From 22a8e7ad55629eb5b14b286dcbb99ab2611a2b67 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 3 May 2013 14:11:06 +0200 Subject: [PATCH 072/135] LDAP: remove restriction from group names to be in line with core behaviour again --- apps/user_ldap/lib/access.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 6d32e9b2ab0..6794e424fdc 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -317,7 +317,7 @@ abstract class Access { } $ldapname = $ldapname[0]; } - $intname = $isUser ? $this->sanitizeUsername($uuid) : $this->sanitizeUsername($ldapname); + $intname = $isUser ? $this->sanitizeUsername($uuid) : $ldapname; //a new user/group! Add it only if it doesn't conflict with other backend's users or existing groups //disabling Cache is required to avoid that the new user is cached as not-existing in fooExists check -- GitLab From 1e2b87216022803a2f749f3dac34e65150572dfb Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 3 May 2013 15:13:37 +0200 Subject: [PATCH 073/135] LDAP: cachekey in set method needs to match with that one from get --- apps/user_ldap/lib/access.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 6794e424fdc..234e91f792f 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -1031,7 +1031,7 @@ abstract class Access { */ private function setPagedResultCookie($base, $filter, $limit, $offset, $cookie) { if(!empty($cookie)) { - $cachekey = 'lc' . dechex(crc32($base)) . '-' . dechex(crc32($filter)) . '-' .$limit . '-' . $offset; + $cachekey = 'lc' . crc32($base) . '-' . crc32($filter) . '-' .$limit . '-' . $offset; $cookie = $this->connection->writeToCache($cachekey, $cookie); } } -- GitLab From a876240b32ec4322d9e01cb6111bb4b5ee3374b7 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 4 May 2013 02:00:54 +0200 Subject: [PATCH 074/135] [tx-robot] updated from transifex --- apps/files/l10n/ia.php | 1 + apps/files_trashbin/l10n/ia.php | 1 + core/l10n/de.php | 16 ++++----- core/l10n/de_DE.php | 8 ++--- core/l10n/ia.php | 2 ++ core/l10n/sl.php | 1 + l10n/de/core.po | 23 ++++++------ l10n/de_DE/core.po | 15 ++++---- l10n/de_DE/lib.po | 12 +++---- l10n/ia/core.po | 8 ++--- l10n/ia/files.po | 54 ++++++++++++++--------------- l10n/ia/files_trashbin.po | 6 ++-- l10n/ia/settings.po | 30 ++++++++-------- l10n/sl/core.po | 8 ++--- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 10 +++--- l10n/templates/settings.pot | 24 ++++++------- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/tr/lib.po | 31 +++++++++-------- lib/l10n/tr.php | 8 +++++ settings/l10n/ia.php | 1 + 28 files changed, 147 insertions(+), 130 deletions(-) diff --git a/apps/files/l10n/ia.php b/apps/files/l10n/ia.php index 74aad4df389..886922d9546 100644 --- a/apps/files/l10n/ia.php +++ b/apps/files/l10n/ia.php @@ -5,6 +5,7 @@ "Files" => "Files", "Share" => "Compartir", "Delete" => "Deler", +"Error" => "Error", "Name" => "Nomine", "Size" => "Dimension", "Modified" => "Modificate", diff --git a/apps/files_trashbin/l10n/ia.php b/apps/files_trashbin/l10n/ia.php index 0a51752312f..dea25b30ba4 100644 --- a/apps/files_trashbin/l10n/ia.php +++ b/apps/files_trashbin/l10n/ia.php @@ -1,4 +1,5 @@ "Error", "Name" => "Nomine", "Delete" => "Deler" ); diff --git a/core/l10n/de.php b/core/l10n/de.php index c173e56c1f7..6a77757d31a 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -56,7 +56,7 @@ "Shared" => "Geteilt", "Share" => "Teilen", "Error while sharing" => "Fehler beim Teilen", -"Error while unsharing" => "Fehler beim Aufheben der Teilung", +"Error while unsharing" => "Fehler beim Aufheben der Freigabe", "Error while changing permissions" => "Fehler beim Ändern der Rechte", "Shared with you and the group {group} by {owner}" => "{owner} hat dies mit Dir und der Gruppe {group} geteilt", "Shared with you by {owner}" => "{owner} hat dies mit Dir geteilt", @@ -80,15 +80,15 @@ "delete" => "löschen", "share" => "teilen", "Password protected" => "Durch ein Passwort geschützt", -"Error unsetting expiration date" => "Fehler beim entfernen des Ablaufdatums", +"Error unsetting expiration date" => "Fehler beim Entfernen des Ablaufdatums", "Error setting expiration date" => "Fehler beim Setzen des Ablaufdatums", "Sending ..." => "Sende ...", "Email sent" => "E-Mail wurde verschickt", -"The update was unsuccessful. Please report this issue to the ownCloud community." => "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die ownCloud Community.", -"The update was successful. Redirecting you to ownCloud now." => "Das Update war erfolgreich. Sie werden nun zu ownCloud weitergeleitet.", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "Das Update ist fehlgeschlagen. Bitte melde dieses Problem an die ownCloud Community.", +"The update was successful. Redirecting you to ownCloud now." => "Das Update war erfolgreich. Du wirst nun zu ownCloud weitergeleitet.", "ownCloud password reset" => "ownCloud-Passwort zurücksetzen", "Use the following link to reset your password: {link}" => "Nutze den nachfolgenden Link, um Dein Passwort zurückzusetzen: {link}", -"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Der Link zum Rücksetzen Deines Passwort ist an Deine E-Mail-Adresse geschickt worden.
Wenn Du ihn nicht innerhalb einer vernünftigen Zeit empfängst prüfe Deine Spam-Verzeichnisse.
Wenn er nicht dort ist frage Deinen lokalen Administrator.", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Der Link zum Rücksetzen Deines Passwort ist an Deine E-Mail-Adresse geschickt worden.
Wenn Du ihn nicht innerhalb einer vernünftigen Zeit empfängst, prüfe Deine Spam-Verzeichnisse.
Wenn er nicht dort ist, frage Deinen lokalen Administrator.", "Request failed!
Did you make sure your email/username was right?" => "Anfrage fehlgeschlagen!
Hast Du darauf geachtet, dass Deine E-Mail/Dein Benutzername korrekt war?", "You will receive a link to reset your password via Email." => "Du erhältst einen Link per E-Mail, um Dein Passwort zurückzusetzen.", "Username" => "Benutzername", @@ -108,11 +108,11 @@ "Add" => "Hinzufügen", "Security Warning" => "Sicherheitswarnung", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Deine PHP Version ist durch die NULL Byte Attacke (CVE-2006-7243) angreifbar", -"Please update your PHP installation to use ownCloud securely." => "Bitte bringe deine PHP Installation auf den neuesten Stand, um ownCloud sicher nutzen zu können.", +"Please update your PHP installation to use ownCloud securely." => "Bitte bringe Deine PHP Installation auf den neuesten Stand, um ownCloud sicher nutzen zu können.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Es ist kein sicherer Zufallszahlengenerator verfügbar, bitte aktiviere die PHP-Erweiterung für OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Ohne einen sicheren Zufallszahlengenerator sind Angreifer in der Lage die Tokens für das Zurücksetzen der Passwörter vorherzusehen und Konten zu übernehmen.", -"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Dein Datenverzeichnis und deine Dateien sind wahrscheinlich vom Internet aus erreichbar, weil die .htaccess-Datei nicht funktioniert.", -"For information how to properly configure your server, please see the documentation." => "Bitte lesen Sie die Dokumentation für Informationen, wie Sie Ihren Server konfigurieren.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Dein Datenverzeichnis und Deine Dateien sind wahrscheinlich vom Internet aus erreichbar, weil die .htaccess-Datei nicht funktioniert.", +"For information how to properly configure your server, please see the documentation." => "Bitte ließ die Dokumentation für Informationen, wie Du Deinen Server konfigurierst.", "Create an admin account" => "Administrator-Konto anlegen", "Advanced" => "Fortgeschritten", "Data folder" => "Datenverzeichnis", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index d0f2b3505d9..397bd2e6277 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -43,7 +43,7 @@ "{months} months ago" => "Vor {months} Monaten", "months ago" => "Vor Monaten", "last year" => "Letztes Jahr", -"years ago" => "Vor Jahren", +"years ago" => "Vor Jahren", "Ok" => "OK", "Cancel" => "Abbrechen", "Choose" => "Auswählen", @@ -56,7 +56,7 @@ "Shared" => "Geteilt", "Share" => "Teilen", "Error while sharing" => "Fehler beim Teilen", -"Error while unsharing" => "Fehler bei der Aufhebung der Teilung", +"Error while unsharing" => "Fehler beim Aufheben der Freigabe", "Error while changing permissions" => "Fehler bei der Änderung der Rechte", "Shared with you and the group {group} by {owner}" => "Von {owner} mit Ihnen und der Gruppe {group} geteilt.", "Shared with you by {owner}" => "Von {owner} mit Ihnen geteilt.", @@ -88,7 +88,7 @@ "The update was successful. Redirecting you to ownCloud now." => "Das Update war erfolgreich. Sie werden nun zu ownCloud weitergeleitet.", "ownCloud password reset" => "ownCloud-Passwort zurücksetzen", "Use the following link to reset your password: {link}" => "Nutzen Sie den nachfolgenden Link, um Ihr Passwort zurückzusetzen: {link}", -"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Der Link zum Rücksetzen Ihres Passworts ist an Ihre E-Mail-Adresse gesendet worde.
Wenn Sie ihn nicht innerhalb einer sinnvollen Zeitspanne erhalten prüfen Sie bitte Ihre Spam-Verzeichnisse.
Wenn er nicht dort ist fragen Sie Ihren lokalen Administrator.", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Der Link zum Rücksetzen Ihres Passworts ist an Ihre E-Mail-Adresse gesendet worde.
Wenn Sie ihn nicht innerhalb einer vernünftigen Zeitspanne erhalten, prüfen Sie bitte Ihre Spam-Verzeichnisse.
Wenn er nicht dort ist, fragen Sie Ihren lokalen Administrator.", "Request failed!
Did you make sure your email/username was right?" => "Anfrage fehlgeschlagen!
Haben Sie darauf geachtet, dass E-Mail-Adresse/Nutzername korrekt waren?", "You will receive a link to reset your password via Email." => "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen.", "Username" => "Benutzername", @@ -127,7 +127,7 @@ "web services under your control" => "Web-Services unter Ihrer Kontrolle", "%s is available. Get more information on how to update." => "%s ist nicht verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein.", "Log out" => "Abmelden", -"Automatic logon rejected!" => "Automatische Anmeldung verweigert.", +"Automatic logon rejected!" => "Automatische Anmeldung verweigert!", "If you did not change your password recently, your account may be compromised!" => "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAccount kompromittiert sein!", "Please change your password to secure your account again." => "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern.", "Lost your password?" => "Passwort vergessen?", diff --git a/core/l10n/ia.php b/core/l10n/ia.php index 8adc38f0bba..b6bb75f2b3b 100644 --- a/core/l10n/ia.php +++ b/core/l10n/ia.php @@ -20,8 +20,10 @@ "December" => "Decembre", "Settings" => "Configurationes", "Cancel" => "Cancellar", +"Error" => "Error", "Share" => "Compartir", "Password" => "Contrasigno", +"Send" => "Invia", "ownCloud password reset" => "Reinitialisation del contrasigno de ownCLoud", "Username" => "Nomine de usator", "Request reset" => "Requestar reinitialisation", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index db5583c6101..28548071306 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -125,6 +125,7 @@ "Database host" => "Gostitelj podatkovne zbirke", "Finish setup" => "Končaj namestitev", "web services under your control" => "spletne storitve pod vašim nadzorom", +"%s is available. Get more information on how to update." => "%s je na voljo. Pridobite več podrobnosti za posodobitev.", "Log out" => "Odjava", "Automatic logon rejected!" => "Samodejno prijavljanje je zavrnjeno!", "If you did not change your password recently, your account may be compromised!" => "V primeru, da gesla za dostop že nekaj časa niste spremenili, je račun lahko ogrožen!", diff --git a/l10n/de/core.po b/l10n/de/core.po index 2057a46835c..f882bf72085 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -4,13 +4,14 @@ # # Translators: # arkascha , 2013 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-04 01:58+0200\n" +"PO-Revision-Date: 2013-05-03 21:50+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -268,7 +269,7 @@ msgstr "Fehler beim Teilen" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Fehler beim Aufheben der Teilung" +msgstr "Fehler beim Aufheben der Freigabe" #: js/share.js:143 msgid "Error while changing permissions" @@ -364,7 +365,7 @@ msgstr "Durch ein Passwort geschützt" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Fehler beim entfernen des Ablaufdatums" +msgstr "Fehler beim Entfernen des Ablaufdatums" #: js/share.js:589 msgid "Error setting expiration date" @@ -383,11 +384,11 @@ msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die ownCloud Community." +msgstr "Das Update ist fehlgeschlagen. Bitte melde dieses Problem an die ownCloud Community." #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Das Update war erfolgreich. Sie werden nun zu ownCloud weitergeleitet." +msgstr "Das Update war erfolgreich. Du wirst nun zu ownCloud weitergeleitet." #: lostpassword/controller.php:48 msgid "ownCloud password reset" @@ -402,7 +403,7 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "Der Link zum Rücksetzen Deines Passwort ist an Deine E-Mail-Adresse geschickt worden.
Wenn Du ihn nicht innerhalb einer vernünftigen Zeit empfängst prüfe Deine Spam-Verzeichnisse.
Wenn er nicht dort ist frage Deinen lokalen Administrator." +msgstr "Der Link zum Rücksetzen Deines Passwort ist an Deine E-Mail-Adresse geschickt worden.
Wenn Du ihn nicht innerhalb einer vernünftigen Zeit empfängst, prüfe Deine Spam-Verzeichnisse.
Wenn er nicht dort ist, frage Deinen lokalen Administrator." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" @@ -484,7 +485,7 @@ msgstr "Deine PHP Version ist durch die NULL Byte Attacke (CVE-2006-7243) angrei #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Bitte bringe deine PHP Installation auf den neuesten Stand, um ownCloud sicher nutzen zu können." +msgstr "Bitte bringe Deine PHP Installation auf den neuesten Stand, um ownCloud sicher nutzen zu können." #: templates/installation.php:32 msgid "" @@ -502,14 +503,14 @@ msgstr "Ohne einen sicheren Zufallszahlengenerator sind Angreifer in der Lage di msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Dein Datenverzeichnis und deine Dateien sind wahrscheinlich vom Internet aus erreichbar, weil die .htaccess-Datei nicht funktioniert." +msgstr "Dein Datenverzeichnis und Deine Dateien sind wahrscheinlich vom Internet aus erreichbar, weil die .htaccess-Datei nicht funktioniert." #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Bitte lesen Sie die Dokumentation für Informationen, wie Sie Ihren Server konfigurieren." +msgstr "Bitte ließ die Dokumentation für Informationen, wie Du Deinen Server konfigurierst." #: templates/installation.php:44 msgid "Create an admin account" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 46673041ec1..5920087fce1 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -5,13 +5,14 @@ # Translators: # arkascha , 2013 # traductor , 2013 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-01 01:59+0200\n" -"PO-Revision-Date: 2013-04-30 16:00+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2013-05-04 01:58+0200\n" +"PO-Revision-Date: 2013-05-03 21:40+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -212,7 +213,7 @@ msgstr "Letztes Jahr" #: js/js.js:730 msgid "years ago" -msgstr "Vor Jahren" +msgstr "Vor Jahren" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" @@ -269,7 +270,7 @@ msgstr "Fehler beim Teilen" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Fehler bei der Aufhebung der Teilung" +msgstr "Fehler beim Aufheben der Freigabe" #: js/share.js:143 msgid "Error while changing permissions" @@ -403,7 +404,7 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "Der Link zum Rücksetzen Ihres Passworts ist an Ihre E-Mail-Adresse gesendet worde.
Wenn Sie ihn nicht innerhalb einer sinnvollen Zeitspanne erhalten prüfen Sie bitte Ihre Spam-Verzeichnisse.
Wenn er nicht dort ist fragen Sie Ihren lokalen Administrator." +msgstr "Der Link zum Rücksetzen Ihres Passworts ist an Ihre E-Mail-Adresse gesendet worde.
Wenn Sie ihn nicht innerhalb einer vernünftigen Zeitspanne erhalten, prüfen Sie bitte Ihre Spam-Verzeichnisse.
Wenn er nicht dort ist, fragen Sie Ihren lokalen Administrator." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" @@ -573,7 +574,7 @@ msgstr "Abmelden" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Automatische Anmeldung verweigert." +msgstr "Automatische Anmeldung verweigert!" #: templates/login.php:10 msgid "" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index bfad776e8e5..c36b64e3cb8 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-05-04 01:59+0200\n" +"PO-Revision-Date: 2013-05-03 21:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -41,19 +41,19 @@ msgstr "Apps" msgid "Admin" msgstr "Administrator" -#: files.php:209 +#: files.php:207 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: files.php:210 +#: files.php:208 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: files.php:211 files.php:244 +#: files.php:209 files.php:242 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: files.php:241 +#: files.php:239 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 8968d1e0668..1b1eef6e69a 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 23:57+0000\n" +"POT-Creation-Date: 2013-05-04 01:58+0200\n" +"PO-Revision-Date: 2013-05-03 13:10+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" @@ -243,7 +243,7 @@ msgstr "" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "" +msgstr "Error" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -303,7 +303,7 @@ msgstr "" #: js/share.js:174 msgid "Send" -msgstr "" +msgstr "Invia" #: js/share.js:178 msgid "Set expiration date" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 30778185039..4e14c66dfd8 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-04 01:58+0200\n" +"PO-Revision-Date: 2013-05-03 13:10+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" @@ -86,7 +86,7 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Deler" @@ -156,66 +156,66 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" -msgstr "" +msgstr "Error" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Nomine" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Dimension" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Modificate" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "" @@ -279,37 +279,37 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Nihil hic. Incarga alcun cosa!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Discargar" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Incargamento troppo longe" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index b4969f152eb..19c5329f297 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:30+0000\n" +"POT-Creation-Date: 2013-05-04 01:58+0200\n" +"PO-Revision-Date: 2013-05-03 13:10+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" @@ -33,7 +33,7 @@ msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "" +msgstr "Error" #: js/trash.js:34 msgid "delete file permanently" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 401027e5623..76a8123d801 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:17+0200\n" -"PO-Revision-Date: 2013-04-26 08:31+0000\n" +"POT-Creation-Date: 2013-05-04 01:59+0200\n" +"PO-Revision-Date: 2013-05-03 13:10+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" @@ -106,7 +106,7 @@ msgstr "" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "" +msgstr "Error" #: js/apps.js:90 msgid "Updating...." @@ -124,48 +124,48 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:43 +#: js/users.js:47 msgid "deleted" msgstr "" -#: js/users.js:43 +#: js/users.js:47 msgid "undo" msgstr "" -#: js/users.js:75 +#: js/users.js:79 msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: js/users.js:92 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" msgstr "Gruppos" -#: js/users.js:91 templates/users.php:80 templates/users.php:115 +#: js/users.js:95 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:155 +#: js/users.js:115 templates/users.php:155 msgid "Delete" msgstr "Deler" -#: js/users.js:262 +#: js/users.js:269 msgid "add group" msgstr "" -#: js/users.js:414 +#: js/users.js:420 msgid "A valid username must be provided" msgstr "" -#: js/users.js:415 js/users.js:421 js/users.js:436 +#: js/users.js:421 js/users.js:427 js/users.js:442 msgid "Error creating user" msgstr "" -#: js/users.js:420 +#: js/users.js:426 msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:36 personal.php:37 msgid "__language_name__" msgstr "Interlingua" @@ -328,7 +328,7 @@ msgstr "" msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:108 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-05-04 01:58+0200\n" +"PO-Revision-Date: 2013-05-03 19:30+0000\n" +"Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -564,7 +564,7 @@ msgstr "spletne storitve pod vašim nadzorom" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s je na voljo. Pridobite več podrobnosti za posodobitev." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 335109ff801..aad1a7178c4 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-03 02:02+0200\n" +"POT-Creation-Date: 2013-05-04 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 9b68d7cb8f6..9a782d94338 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-03 02:02+0200\n" +"POT-Creation-Date: 2013-05-04 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index f03efb72e21..8eff1b3b7f5 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-03 02:02+0200\n" +"POT-Creation-Date: 2013-05-04 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index ee90c1e50e5..2853fa3428d 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-03 02:02+0200\n" +"POT-Creation-Date: 2013-05-04 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 20769d5c9aa..44a659ca12b 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-03 02:02+0200\n" +"POT-Creation-Date: 2013-05-04 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 47c0473b7e5..cd86ea36e1d 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-03 02:02+0200\n" +"POT-Creation-Date: 2013-05-04 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index b3e86bb6021..7f02a875eec 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-03 02:02+0200\n" +"POT-Creation-Date: 2013-05-04 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index c328cfc66ed..79f16cb3358 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-03 02:02+0200\n" +"POT-Creation-Date: 2013-05-04 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:209 +#: files.php:207 msgid "ZIP download is turned off." msgstr "" -#: files.php:210 +#: files.php:208 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:211 files.php:244 +#: files.php:209 files.php:242 msgid "Back to Files" msgstr "" -#: files.php:241 +#: files.php:239 msgid "Selected files too large to generate zip file." msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 590c9af7b7a..b0388cd0404 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-03 02:02+0200\n" +"POT-Creation-Date: 2013-05-04 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -124,48 +124,48 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/users.js:43 +#: js/users.js:47 msgid "deleted" msgstr "" -#: js/users.js:43 +#: js/users.js:47 msgid "undo" msgstr "" -#: js/users.js:75 +#: js/users.js:79 msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: js/users.js:92 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" msgstr "" -#: js/users.js:91 templates/users.php:80 templates/users.php:115 +#: js/users.js:95 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "" -#: js/users.js:111 templates/users.php:155 +#: js/users.js:115 templates/users.php:155 msgid "Delete" msgstr "" -#: js/users.js:262 +#: js/users.js:269 msgid "add group" msgstr "" -#: js/users.js:414 +#: js/users.js:420 msgid "A valid username must be provided" msgstr "" -#: js/users.js:415 js/users.js:421 js/users.js:436 +#: js/users.js:421 js/users.js:427 js/users.js:442 msgid "Error creating user" msgstr "" -#: js/users.js:420 +#: js/users.js:426 msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:36 personal.php:37 msgid "__language_name__" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index e14dc12ac1e..5a1fafb41da 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-03 02:02+0200\n" +"POT-Creation-Date: 2013-05-04 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 776217d3aec..e1e122832b1 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-03 02:02+0200\n" +"POT-Creation-Date: 2013-05-04 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 8c795e8401c..851ae213cc8 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ismail yenigül , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-04 01:59+0200\n" +"PO-Revision-Date: 2013-05-03 12:40+0000\n" +"Last-Translator: ismail yenigül \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" @@ -41,19 +42,19 @@ msgstr "Uygulamalar" msgid "Admin" msgstr "Yönetici" -#: files.php:209 +#: files.php:207 msgid "ZIP download is turned off." msgstr "ZIP indirmeleri kapatılmıştır." -#: files.php:210 +#: files.php:208 msgid "Files need to be downloaded one by one." msgstr "Dosyaların birer birer indirilmesi gerekmektedir." -#: files.php:211 files.php:244 +#: files.php:209 files.php:242 msgid "Back to Files" msgstr "Dosyalara dön" -#: files.php:241 +#: files.php:239 msgid "Selected files too large to generate zip file." msgstr "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyüktür." @@ -96,22 +97,22 @@ msgstr "Parola yonetici birlemek. " #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "" +msgstr "%s veritabanı kullanıcı adını gir." #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "" +msgstr "%s veritabanı adını gir." #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "" +msgstr "%s veritabanı adında nokta kullanamayabilirsiniz" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "" +msgstr "%s veritabanı sunucu adını tanımla" #: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" @@ -127,7 +128,7 @@ msgstr "Adi klullanici ve/veya parola Oracle mantikli değildir. " #: setup.php:233 msgid "MySQL username and/or password not valid" -msgstr "" +msgstr "MySQL kullanıcı adı ve/veya parolası geçerli değil" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 @@ -160,17 +161,17 @@ msgstr "MySQL kullanici '%s @ % % zaten var (zaten yazili)" #: setup.php:311 msgid "Drop this user from MySQL." -msgstr "" +msgstr "Bu kulanıcıyı MySQL veritabanından kaldır" #: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" +msgstr "Hatalı komut: \"%s\", ad: %s, parola: %s" #: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "MS SQL kullanıcı adı ve/veya parolası geçersiz: %s" #: setup.php:858 msgid "" diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 94ffed067c6..641da2447ee 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -18,14 +18,22 @@ "Images" => "Resimler", "Set an admin username." => "Bir adi kullanici vermek. ", "Set an admin password." => "Parola yonetici birlemek. ", +"%s enter the database username." => "%s veritabanı kullanıcı adını gir.", +"%s enter the database name." => "%s veritabanı adını gir.", +"%s you may not use dots in the database name" => "%s veritabanı adında nokta kullanamayabilirsiniz", +"%s set the database host." => "%s veritabanı sunucu adını tanımla", "PostgreSQL username and/or password not valid" => "PostgreSQL adi kullanici ve/veya parola yasal degildir. ", "You need to enter either an existing account or the administrator." => "Bir konto veya kullanici birlemek ihtiyacin. ", "Oracle username and/or password not valid" => "Adi klullanici ve/veya parola Oracle mantikli değildir. ", +"MySQL username and/or password not valid" => "MySQL kullanıcı adı ve/veya parolası geçerli değil", "DB Error: \"%s\"" => "DB Hata: ''%s''", "Offending command was: \"%s\"" => "Komut rahasiz ''%s''. ", "MySQL user '%s'@'localhost' exists already." => "MySQL kullanici '%s @local host zatan var. ", "Drop this user from MySQL" => "Bu kullanici MySQLden list disari koymak. ", "MySQL user '%s'@'%%' already exists" => "MySQL kullanici '%s @ % % zaten var (zaten yazili)", +"Drop this user from MySQL." => "Bu kulanıcıyı MySQL veritabanından kaldır", +"Offending command was: \"%s\", name: %s, password: %s" => "Hatalı komut: \"%s\", ad: %s, parola: %s", +"MS SQL username and/or password not valid: %s" => "MS SQL kullanıcı adı ve/veya parolası geçersiz: %s", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor.", "Please double check the installation guides." => "Lütfen kurulum kılavuzlarını iki kez kontrol edin.", "seconds ago" => "saniye önce", diff --git a/settings/l10n/ia.php b/settings/l10n/ia.php index b9869e26f0c..8d67b45347a 100644 --- a/settings/l10n/ia.php +++ b/settings/l10n/ia.php @@ -1,6 +1,7 @@ "Linguage cambiate", "Invalid request" => "Requesta invalide", +"Error" => "Error", "Groups" => "Gruppos", "Delete" => "Deler", "__language_name__" => "Interlingua", -- GitLab From 340940389350747c14acad89ced6ae5f731a6e65 Mon Sep 17 00:00:00 2001 From: Pellaeon Lin Date: Sat, 4 May 2013 20:22:21 +0800 Subject: [PATCH 075/135] Modify zh_* language codes --- settings/languageCodes.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/settings/languageCodes.php b/settings/languageCodes.php index c25fbb434a7..40213b3a7e5 100644 --- a/settings/languageCodes.php +++ b/settings/languageCodes.php @@ -34,7 +34,7 @@ return array( 'sr'=>'Српски', 'sr@latin'=>'Srpski', 'sv'=>'Svenska', -'zh_CN'=>'中文', +'zh_CN'=>'简体中文', 'sk_SK'=>'Slovenčina', 'hu_HU'=>'Magyar', 'eu'=>'Euskara', @@ -51,11 +51,11 @@ return array( 'mk'=>'македонски', 'uk'=>'Українська', 'vi'=>'Tiếng Việt', -'zh_TW'=>'臺灣話', +'zh_TW'=>'正體中文(臺灣)', 'af_ZA'=> 'Afrikaans', 'bn_BD'=>'Bengali', 'ta_LK'=>'தமிழ்', -'zh_HK'=>'Chinese (Hong Kong)', +'zh_HK'=>'繁體中文(香港)', 'oc'=>'Occitan (post 1500)', 'is'=>'Icelandic', 'pl_PL'=>'Polski', -- GitLab From d659d8e1931eb36de88b21647234ef3748ef7e5a Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 26 Apr 2013 15:02:05 +0200 Subject: [PATCH 076/135] LDAP: do not reset UUID attribute setting when guid is detected --- apps/user_ldap/lib/connection.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php index 20784570e93..ef7cc5295b3 100644 --- a/apps/user_ldap/lib/connection.php +++ b/apps/user_ldap/lib/connection.php @@ -427,7 +427,9 @@ class Connection { 'No group filter is specified, LDAP group feature will not be used.', \OCP\Util::INFO); } - if(!in_array($this->config['ldapUuidAttribute'], array('auto', 'entryuuid', 'nsuniqueid', 'objectguid')) + $uuidAttributes = array( + 'auto', 'entryuuid', 'nsuniqueid', 'objectguid', 'guid'); + if(!in_array($this->config['ldapUuidAttribute'], $uuidAttributes) && (!is_null($this->configID))) { \OCP\Config::setAppValue($this->configID, $this->configPrefix.'ldap_uuid_attribute', 'auto'); \OCP\Util::writeLog('user_ldap', -- GitLab From b13b19c58b802bee42be5efe40aca77519c365ff Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Mon, 6 May 2013 13:43:23 +0300 Subject: [PATCH 077/135] Use the internal ownCloud view --- apps/files_trashbin/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php index 8a5875b9ce6..285d5d915f4 100644 --- a/apps/files_trashbin/index.php +++ b/apps/files_trashbin/index.php @@ -22,7 +22,7 @@ $result = array(); if ($dir) { $dirlisting = true; $fullpath = \OCP\Config::getSystemValue('datadirectory').$view->getAbsolutePath($dir); - $dirContent = opendir($fullpath); + $dirContent = $view->opendir($fullpath); $i = 0; while($entryName = readdir($dirContent)) { if ( $entryName != '.' && $entryName != '..' ) { -- GitLab From db1e6b5f3b578e1f3e4b8020507af8d3b36530fb Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Mon, 6 May 2013 14:28:01 +0300 Subject: [PATCH 078/135] Use $dir instead of $fullpath --- apps/files_trashbin/index.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php index 285d5d915f4..a32b7414ac6 100644 --- a/apps/files_trashbin/index.php +++ b/apps/files_trashbin/index.php @@ -21,8 +21,7 @@ $dir = isset($_GET['dir']) ? stripslashes($_GET['dir']) : ''; $result = array(); if ($dir) { $dirlisting = true; - $fullpath = \OCP\Config::getSystemValue('datadirectory').$view->getAbsolutePath($dir); - $dirContent = $view->opendir($fullpath); + $dirContent = $view->opendir($dir); $i = 0; while($entryName = readdir($dirContent)) { if ( $entryName != '.' && $entryName != '..' ) { -- GitLab From 3de40f7cfb779b570761dedc837cb3a6bfd0e878 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 6 May 2013 17:55:22 +0200 Subject: [PATCH 079/135] Files: set the proper mimetype when creating a new text file --- apps/files/ajax/newfile.php | 2 +- apps/files/js/files.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index 38714f34a63..8548fc95ddf 100644 --- a/apps/files/ajax/newfile.php +++ b/apps/files/ajax/newfile.php @@ -85,7 +85,7 @@ if($source) { }elseif(\OC\Files\Filesystem::touch($dir . '/' . $filename)) { $meta = \OC\Files\Filesystem::getFileInfo($dir.'/'.$filename); $id = $meta['fileid']; - OCP\JSON::success(array("data" => array('content'=>$content, 'id' => $id))); + OCP\JSON::success(array("data" => array('content'=>$content, 'id' => $id, 'mime' => $meta['mimetype']))); exit(); } } diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 296e54e3568..a15f0588f9f 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -511,9 +511,9 @@ $(document).ready(function() { var date=new Date(); FileList.addFile(name,0,date,false,hidden); var tr=$('tr').filterAttr('data-file',name); - tr.attr('data-mime','text/plain'); + tr.attr('data-mime',result.data.mime); tr.attr('data-id', result.data.id); - getMimeIcon('text/plain',function(path){ + getMimeIcon(result.data.mime,function(path){ tr.find('td.filename').attr('style','background-image:url('+path+')'); }); } else { -- GitLab From 9b258929c6828432b23da859e60492ee470c4f48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Mon, 6 May 2013 11:43:50 +0200 Subject: [PATCH 080/135] allow to set quota to zero, issue #2696 --- settings/ajax/setquota.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/settings/ajax/setquota.php b/settings/ajax/setquota.php index cd8dc0e2796..8dcb7ddd424 100644 --- a/settings/ajax/setquota.php +++ b/settings/ajax/setquota.php @@ -22,11 +22,7 @@ if(($username == '' && !OC_User::isAdminUser(OC_User::getUser())) $quota=$_POST["quota"]; if($quota!='none' and $quota!='default') { $quota= OC_Helper::computerFileSize($quota); - if($quota==0) { - $quota='default'; - }else{ - $quota=OC_Helper::humanFileSize($quota); - } + $quota=OC_Helper::humanFileSize($quota); } // Return Success story -- GitLab From 2b9da8a6c9314d2279725c345f6e25a70fb9a30d Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 7 May 2013 13:51:30 +0200 Subject: [PATCH 081/135] remove hard php-intl requirement --- lib/util.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/util.php b/lib/util.php index 348163d9a29..48889cea1fb 100755 --- a/lib/util.php +++ b/lib/util.php @@ -252,11 +252,6 @@ class OC_Util { 'hint'=>'Please ask your server administrator to install the module.'); $web_server_restart= false; } - if(!class_exists('Locale')) { - $errors[]=array('error'=>'PHP module intl is not installed.', - 'hint'=>'Please ask your server administrator to install the module.'); - $web_server_restart= false; - } if(!function_exists('gzencode')) { $errors[]=array('error'=>'PHP module zlib is not installed.', 'hint'=>'Please ask your server administrator to install the module.'); -- GitLab From 0b5f6b9c13f5516c2d16fb938e77c9168a74b76d Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 7 May 2013 22:16:02 +0200 Subject: [PATCH 082/135] Move autoloader to it's own class --- lib/autoloader.php | 65 ++++++++++++++++++++++++++++++++++++++++++++++ lib/base.php | 62 +++++-------------------------------------- 2 files changed, 71 insertions(+), 56 deletions(-) create mode 100644 lib/autoloader.php diff --git a/lib/autoloader.php b/lib/autoloader.php new file mode 100644 index 00000000000..27052e60a79 --- /dev/null +++ b/lib/autoloader.php @@ -0,0 +1,65 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC; + +class Autoloader { + public function load($class) { + $class = trim($class, '\\'); + + if (array_key_exists($class, \OC::$CLASSPATH)) { + $path = \OC::$CLASSPATH[$class]; + /** @TODO: Remove this when necessary + Remove "apps/" from inclusion path for smooth migration to mutli app dir + */ + if (strpos($path, 'apps/') === 0) { + \OC_Log::write('core', 'include path for class "' . $class . '" starts with "apps/"', \OC_Log::DEBUG); + $path = str_replace('apps/', '', $path); + } + } elseif (strpos($class, 'OC_') === 0) { + $path = strtolower(str_replace('_', '/', substr($class, 3)) . '.php'); + } elseif (strpos($class, 'OC\\') === 0) { + $path = strtolower(str_replace('\\', '/', substr($class, 3)) . '.php'); + } elseif (strpos($class, 'OCP\\') === 0) { + $path = 'public/' . strtolower(str_replace('\\', '/', substr($class, 3)) . '.php'); + } elseif (strpos($class, 'OCA\\') === 0) { + foreach (\OC::$APPSROOTS as $appDir) { + $path = strtolower(str_replace('\\', '/', substr($class, 4)) . '.php'); + $fullPath = stream_resolve_include_path($appDir['path'] . '/' . $path); + if (file_exists($fullPath)) { + require_once $fullPath; + return false; + } + // If not found in the root of the app directory, insert '/lib' after app id and try again. + $libpath = substr($path, 0, strpos($path, '/')) . '/lib' . substr($path, strpos($path, '/')); + $fullPath = stream_resolve_include_path($appDir['path'] . '/' . $libpath); + if (file_exists($fullPath)) { + require_once $fullPath; + return false; + } + } + } elseif (strpos($class, 'Sabre_') === 0) { + $path = str_replace('_', '/', $class) . '.php'; + } elseif (strpos($class, 'Symfony\\Component\\Routing\\') === 0) { + $path = 'symfony/routing/' . str_replace('\\', '/', $class) . '.php'; + } elseif (strpos($class, 'Sabre\\VObject') === 0) { + $path = str_replace('\\', '/', $class) . '.php'; + } elseif (strpos($class, 'Test_') === 0) { + $path = 'tests/lib/' . strtolower(str_replace('_', '/', substr($class, 5)) . '.php'); + } elseif (strpos($class, 'Test\\') === 0) { + $path = 'tests/lib/' . strtolower(str_replace('\\', '/', substr($class, 5)) . '.php'); + } else { + return false; + } + + if ($fullPath = stream_resolve_include_path($path)) { + require_once $fullPath; + } + return false; + } +} diff --git a/lib/base.php b/lib/base.php index 8633ae9b637..eb3bd410d3b 100644 --- a/lib/base.php +++ b/lib/base.php @@ -75,61 +75,9 @@ class OC { protected static $router = null; /** - * SPL autoload + * @var \OC\Autoloader $loader */ - public static function autoload($className) { - $className = trim($className, '\\'); - - if (array_key_exists($className, OC::$CLASSPATH)) { - $path = OC::$CLASSPATH[$className]; - /** @TODO: Remove this when necessary - Remove "apps/" from inclusion path for smooth migration to mutli app dir - */ - if (strpos($path, 'apps/') === 0) { - OC_Log::write('core', 'include path for class "' . $className . '" starts with "apps/"', OC_Log::DEBUG); - $path = str_replace('apps/', '', $path); - } - } elseif (strpos($className, 'OC_') === 0) { - $path = strtolower(str_replace('_', '/', substr($className, 3)) . '.php'); - } elseif (strpos($className, 'OC\\') === 0) { - $path = strtolower(str_replace('\\', '/', substr($className, 3)) . '.php'); - } elseif (strpos($className, 'OCP\\') === 0) { - $path = 'public/' . strtolower(str_replace('\\', '/', substr($className, 3)) . '.php'); - } elseif (strpos($className, 'OCA\\') === 0) { - foreach (self::$APPSROOTS as $appDir) { - $path = strtolower(str_replace('\\', '/', substr($className, 4)) . '.php'); - $fullPath = stream_resolve_include_path($appDir['path'] . '/' . $path); - if (file_exists($fullPath)) { - require_once $fullPath; - return false; - } - // If not found in the root of the app directory, insert '/lib' after app id and try again. - $libpath = substr($path, 0, strpos($path, '/')) . '/lib' . substr($path, strpos($path, '/')); - $fullPath = stream_resolve_include_path($appDir['path'] . '/' . $libpath); - if (file_exists($fullPath)) { - require_once $fullPath; - return false; - } - } - } elseif (strpos($className, 'Sabre_') === 0) { - $path = str_replace('_', '/', $className) . '.php'; - } elseif (strpos($className, 'Symfony\\Component\\Routing\\') === 0) { - $path = 'symfony/routing/' . str_replace('\\', '/', $className) . '.php'; - } elseif (strpos($className, 'Sabre\\VObject') === 0) { - $path = str_replace('\\', '/', $className) . '.php'; - } elseif (strpos($className, 'Test_') === 0) { - $path = 'tests/lib/' . strtolower(str_replace('_', '/', substr($className, 5)) . '.php'); - } elseif (strpos($className, 'Test\\') === 0) { - $path = 'tests/lib/' . strtolower(str_replace('\\', '/', substr($className, 5)) . '.php'); - } else { - return false; - } - - if ($fullPath = stream_resolve_include_path($path)) { - require_once $fullPath; - } - return false; - } + public static $loader = null; public static function initPaths() { // calculate the root directories @@ -396,7 +344,9 @@ class OC { public static function init() { // register autoloader - spl_autoload_register(array('OC', 'autoload')); + require_once 'autoloader.php'; + self::$loader=new \OC\Autoloader(); + spl_autoload_register(array(self::$loader, 'load')); OC_Util::issetlocaleworking(); // set some stuff @@ -643,7 +593,7 @@ class OC { // Deny the redirect if the URL contains a @ // This prevents unvalidated redirects like ?redirect_url=:user@domain.com - if (strpos($location, '@') === FALSE) { + if (strpos($location, '@') === false) { header('Location: ' . $location); return; } -- GitLab From 19cfe74bf5d74c6f761513baf60da9ef7945f30e Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 7 May 2013 22:19:00 +0200 Subject: [PATCH 083/135] Add per-autoloader classPath --- lib/autoloader.php | 27 ++++++++++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) diff --git a/lib/autoloader.php b/lib/autoloader.php index 27052e60a79..091c4de9674 100644 --- a/lib/autoloader.php +++ b/lib/autoloader.php @@ -9,13 +9,34 @@ namespace OC; class Autoloader { + private $classPaths = array(); + + /** + * Add a custom classpath to the autoloader + * + * @param string $class + * @param string $path + */ + public function registerClass($class, $path) { + $this->classPaths[$class] = $path; + } + + /** + * Load the specified class + * + * @param string $class + * @return bool + */ public function load($class) { $class = trim($class, '\\'); - if (array_key_exists($class, \OC::$CLASSPATH)) { + if (array_key_exists($class, $this->classPaths)) { + $path = $this->classPaths[$class]; + } else if (array_key_exists($class, \OC::$CLASSPATH)) { $path = \OC::$CLASSPATH[$class]; - /** @TODO: Remove this when necessary - Remove "apps/" from inclusion path for smooth migration to mutli app dir + /** + * @TODO: Remove this when necessary + * Remove "apps/" from inclusion path for smooth migration to mutli app dir */ if (strpos($path, 'apps/') === 0) { \OC_Log::write('core', 'include path for class "' . $class . '" starts with "apps/"', \OC_Log::DEBUG); -- GitLab From d1fcb7eb5237d597a878e5f7b61693e7dee29ca8 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 7 May 2013 22:21:59 +0200 Subject: [PATCH 084/135] Allow the autoloader to try mutliple possible paths for each path --- lib/autoloader.php | 41 +++++++++++++++++------------------------ 1 file changed, 17 insertions(+), 24 deletions(-) diff --git a/lib/autoloader.php b/lib/autoloader.php index 091c4de9674..9547ddc7d91 100644 --- a/lib/autoloader.php +++ b/lib/autoloader.php @@ -30,10 +30,11 @@ class Autoloader { public function load($class) { $class = trim($class, '\\'); + $paths = array(); if (array_key_exists($class, $this->classPaths)) { - $path = $this->classPaths[$class]; + $paths[] = $this->classPaths[$class]; } else if (array_key_exists($class, \OC::$CLASSPATH)) { - $path = \OC::$CLASSPATH[$class]; + $paths[] = \OC::$CLASSPATH[$class]; /** * @TODO: Remove this when necessary * Remove "apps/" from inclusion path for smooth migration to mutli app dir @@ -43,43 +44,35 @@ class Autoloader { $path = str_replace('apps/', '', $path); } } elseif (strpos($class, 'OC_') === 0) { - $path = strtolower(str_replace('_', '/', substr($class, 3)) . '.php'); + $paths[] = strtolower(str_replace('_', '/', substr($class, 3)) . '.php'); } elseif (strpos($class, 'OC\\') === 0) { - $path = strtolower(str_replace('\\', '/', substr($class, 3)) . '.php'); + $paths[] = strtolower(str_replace('\\', '/', substr($class, 3)) . '.php'); } elseif (strpos($class, 'OCP\\') === 0) { - $path = 'public/' . strtolower(str_replace('\\', '/', substr($class, 3)) . '.php'); + $paths[] = 'public/' . strtolower(str_replace('\\', '/', substr($class, 3)) . '.php'); } elseif (strpos($class, 'OCA\\') === 0) { foreach (\OC::$APPSROOTS as $appDir) { - $path = strtolower(str_replace('\\', '/', substr($class, 4)) . '.php'); - $fullPath = stream_resolve_include_path($appDir['path'] . '/' . $path); - if (file_exists($fullPath)) { - require_once $fullPath; - return false; - } + $paths[] = $appDir['path'] . '/' . strtolower(str_replace('\\', '/', substr($class, 4)) . '.php'); // If not found in the root of the app directory, insert '/lib' after app id and try again. - $libpath = substr($path, 0, strpos($path, '/')) . '/lib' . substr($path, strpos($path, '/')); - $fullPath = stream_resolve_include_path($appDir['path'] . '/' . $libpath); - if (file_exists($fullPath)) { - require_once $fullPath; - return false; - } + $paths[] = $appDir['path'] . '/lib/' . strtolower(str_replace('\\', '/', substr($class, 4)) . '.php'); } } elseif (strpos($class, 'Sabre_') === 0) { - $path = str_replace('_', '/', $class) . '.php'; + $paths[] = str_replace('_', '/', $class) . '.php'; } elseif (strpos($class, 'Symfony\\Component\\Routing\\') === 0) { - $path = 'symfony/routing/' . str_replace('\\', '/', $class) . '.php'; + $paths[] = 'symfony/routing/' . str_replace('\\', '/', $class) . '.php'; } elseif (strpos($class, 'Sabre\\VObject') === 0) { - $path = str_replace('\\', '/', $class) . '.php'; + $paths[] = str_replace('\\', '/', $class) . '.php'; } elseif (strpos($class, 'Test_') === 0) { - $path = 'tests/lib/' . strtolower(str_replace('_', '/', substr($class, 5)) . '.php'); + $paths[] = 'tests/lib/' . strtolower(str_replace('_', '/', substr($class, 5)) . '.php'); } elseif (strpos($class, 'Test\\') === 0) { - $path = 'tests/lib/' . strtolower(str_replace('\\', '/', substr($class, 5)) . '.php'); + $paths[] = 'tests/lib/' . strtolower(str_replace('\\', '/', substr($class, 5)) . '.php'); } else { return false; } - if ($fullPath = stream_resolve_include_path($path)) { - require_once $fullPath; + foreach ($paths as $path) { + if ($fullPath = stream_resolve_include_path($path)) { + require_once $fullPath; + } } return false; } -- GitLab From cac86bb4db670e868ae61aef176d229c814452c0 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 7 May 2013 22:24:47 +0200 Subject: [PATCH 085/135] Allow disabling the global classpath in an autoloader --- lib/autoloader.php | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/lib/autoloader.php b/lib/autoloader.php index 9547ddc7d91..94c0ac7cb5d 100644 --- a/lib/autoloader.php +++ b/lib/autoloader.php @@ -9,6 +9,8 @@ namespace OC; class Autoloader { + private $useGlobalClassPath = true; + private $classPaths = array(); /** @@ -21,6 +23,20 @@ class Autoloader { $this->classPaths[$class] = $path; } + /** + * disable the usage of the global classpath \OC::$CLASSPATH + */ + public function disableGlobalClassPath() { + $this->useGlobalClassPath = false; + } + + /** + * enable the usage of the global classpath \OC::$CLASSPATH + */ + public function enableGlobalClassPath() { + $this->useGlobalClassPath = true; + } + /** * Load the specified class * @@ -33,15 +49,15 @@ class Autoloader { $paths = array(); if (array_key_exists($class, $this->classPaths)) { $paths[] = $this->classPaths[$class]; - } else if (array_key_exists($class, \OC::$CLASSPATH)) { + } else if ($this->useGlobalClassPath and array_key_exists($class, \OC::$CLASSPATH)) { $paths[] = \OC::$CLASSPATH[$class]; /** * @TODO: Remove this when necessary * Remove "apps/" from inclusion path for smooth migration to mutli app dir */ - if (strpos($path, 'apps/') === 0) { + if (strpos(\OC::$CLASSPATH[$class], 'apps/') === 0) { \OC_Log::write('core', 'include path for class "' . $class . '" starts with "apps/"', \OC_Log::DEBUG); - $path = str_replace('apps/', '', $path); + $path = str_replace('apps/', '', \OC::$CLASSPATH[$class]); } } elseif (strpos($class, 'OC_') === 0) { $paths[] = strtolower(str_replace('_', '/', substr($class, 3)) . '.php'); -- GitLab From 03d8907df8e3d109f12b8d9b88e6597022dd6981 Mon Sep 17 00:00:00 2001 From: Florin Peter Date: Tue, 7 May 2013 22:19:48 +0200 Subject: [PATCH 086/135] fix for tearDownFS, after filesystem::tearDown() the root is not mounted --- lib/util.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/util.php b/lib/util.php index 79509b1c3b2..f30cdf6a534 100755 --- a/lib/util.php +++ b/lib/util.php @@ -67,6 +67,7 @@ class OC_Util { public static function tearDownFS() { \OC\Files\Filesystem::tearDown(); self::$fsSetup=false; + self::$rootMounted=false; } /** -- GitLab From 72ed74f28acc9f7897e1591e1d7f6e4e28e8b107 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 7 May 2013 22:26:55 +0200 Subject: [PATCH 087/135] Autoloader: split getting the class paths and loading the class --- lib/autoloader.php | 27 ++++++++++++++++++++------- 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/lib/autoloader.php b/lib/autoloader.php index 94c0ac7cb5d..95b73fe8903 100644 --- a/lib/autoloader.php +++ b/lib/autoloader.php @@ -38,12 +38,12 @@ class Autoloader { } /** - * Load the specified class + * get the possible paths for a class * * @param string $class - * @return bool + * @return array|bool an array of possible paths or false if the class is not part of ownCloud */ - public function load($class) { + public function findClass($class) { $class = trim($class, '\\'); $paths = array(); @@ -57,7 +57,7 @@ class Autoloader { */ if (strpos(\OC::$CLASSPATH[$class], 'apps/') === 0) { \OC_Log::write('core', 'include path for class "' . $class . '" starts with "apps/"', \OC_Log::DEBUG); - $path = str_replace('apps/', '', \OC::$CLASSPATH[$class]); + $paths[] = str_replace('apps/', '', \OC::$CLASSPATH[$class]); } } elseif (strpos($class, 'OC_') === 0) { $paths[] = strtolower(str_replace('_', '/', substr($class, 3)) . '.php'); @@ -84,10 +84,23 @@ class Autoloader { } else { return false; } + return $paths; + } + + /** + * Load the specified class + * + * @param string $class + * @return bool + */ + public function load($class) { + $paths = $this->findClass($class); - foreach ($paths as $path) { - if ($fullPath = stream_resolve_include_path($path)) { - require_once $fullPath; + if (is_array($paths)) { + foreach ($paths as $path) { + if ($fullPath = stream_resolve_include_path($path)) { + require_once $fullPath; + } } } return false; -- GitLab From 6d903cf7ae30ef3b9fb9faa34ee8b8347ac47e93 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 7 May 2013 22:39:35 +0200 Subject: [PATCH 088/135] Autoloader: add support for custom namespace paths --- lib/autoloader.php | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/lib/autoloader.php b/lib/autoloader.php index 95b73fe8903..976ec6b1a87 100644 --- a/lib/autoloader.php +++ b/lib/autoloader.php @@ -11,8 +11,20 @@ namespace OC; class Autoloader { private $useGlobalClassPath = true; + private $namespacePaths = array(); + private $classPaths = array(); + /** + * Add a custom namespace to the autoloader + * + * @param string $namespace + * @param string $path + */ + public function registerNamespace($namespace, $path) { + $this->namespacePaths[$namespace] = $path; + } + /** * Add a custom classpath to the autoloader * @@ -60,6 +72,8 @@ class Autoloader { $paths[] = str_replace('apps/', '', \OC::$CLASSPATH[$class]); } } elseif (strpos($class, 'OC_') === 0) { + // first check for legacy classes if underscores are used + $paths[] = 'legacy/' . strtolower(str_replace('_', '/', substr($class, 3)) . '.php'); $paths[] = strtolower(str_replace('_', '/', substr($class, 3)) . '.php'); } elseif (strpos($class, 'OC\\') === 0) { $paths[] = strtolower(str_replace('\\', '/', substr($class, 3)) . '.php'); @@ -82,7 +96,11 @@ class Autoloader { } elseif (strpos($class, 'Test\\') === 0) { $paths[] = 'tests/lib/' . strtolower(str_replace('\\', '/', substr($class, 5)) . '.php'); } else { - return false; + foreach ($this->namespacePaths as $namespace => $dir) { + if (0 === strpos($class, $namespace)) { + $paths[] = $dir . '/' . str_replace('\\', DIRECTORY_SEPARATOR, $class) . '.php'; + } + } } return $paths; } -- GitLab From 0d25c0001ca276c3262476ebadcaba4f33bcd54a Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 7 May 2013 22:53:07 +0200 Subject: [PATCH 089/135] check for setlocale after setting up the paths to prevent autoloader confusion --- lib/base.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lib/base.php b/lib/base.php index eb3bd410d3b..667202d3aef 100644 --- a/lib/base.php +++ b/lib/base.php @@ -344,10 +344,14 @@ class OC { public static function init() { // register autoloader - require_once 'autoloader.php'; + require_once __DIR__ . '/autoloader.php'; self::$loader=new \OC\Autoloader(); + self::$loader->registerPrefix('Doctrine\\Common', 'doctrine/common/lib'); + self::$loader->registerPrefix('Doctrine\\DBAL', 'doctrine/dbal/lib'); + self::$loader->registerPrefix('Symfony\\Component\\Routing', 'symfony/routing'); + self::$loader->registerPrefix('Sabre\\VObject', '3rdparty'); + self::$loader->registerPrefix('Sabre_', '3rdparty'); spl_autoload_register(array(self::$loader, 'load')); - OC_Util::issetlocaleworking(); // set some stuff //ob_start(); @@ -404,6 +408,7 @@ class OC { } self::initPaths(); + OC_Util::issetlocaleworking(); // set debug mode if an xdebug session is active if (!defined('DEBUG') || !DEBUG) { -- GitLab From 2a01d3994080756316017e34b8c46c773332283f Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 7 May 2013 23:07:47 +0200 Subject: [PATCH 090/135] Autoloader: load the 3rdparty libraries using prefixes --- lib/autoloader.php | 33 ++++++++++++++++----------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/lib/autoloader.php b/lib/autoloader.php index 976ec6b1a87..d84924d5969 100644 --- a/lib/autoloader.php +++ b/lib/autoloader.php @@ -11,18 +11,18 @@ namespace OC; class Autoloader { private $useGlobalClassPath = true; - private $namespacePaths = array(); + private $prefixPaths = array(); private $classPaths = array(); /** - * Add a custom namespace to the autoloader + * Add a custom prefix to the autoloader * - * @param string $namespace + * @param string $prefix * @param string $path */ - public function registerNamespace($namespace, $path) { - $this->namespacePaths[$namespace] = $path; + public function registerPrefix($prefix, $path) { + $this->prefixPaths[$prefix] = $path; } /** @@ -81,24 +81,23 @@ class Autoloader { $paths[] = 'public/' . strtolower(str_replace('\\', '/', substr($class, 3)) . '.php'); } elseif (strpos($class, 'OCA\\') === 0) { foreach (\OC::$APPSROOTS as $appDir) { - $paths[] = $appDir['path'] . '/' . strtolower(str_replace('\\', '/', substr($class, 4)) . '.php'); - // If not found in the root of the app directory, insert '/lib' after app id and try again. - $paths[] = $appDir['path'] . '/lib/' . strtolower(str_replace('\\', '/', substr($class, 4)) . '.php'); + list(, $app,) = explode('\\', $class); + if (stream_resolve_include_path($appDir['path'] . '/' . strtolower($app))) { + $paths[] = $appDir['path'] . '/' . strtolower(str_replace('\\', '/', substr($class, 4)) . '.php'); + // If not found in the root of the app directory, insert '/lib' after app id and try again. + $paths[] = $appDir['path'] . '/lib/' . strtolower(str_replace('\\', '/', substr($class, 4)) . '.php'); + } } - } elseif (strpos($class, 'Sabre_') === 0) { - $paths[] = str_replace('_', '/', $class) . '.php'; - } elseif (strpos($class, 'Symfony\\Component\\Routing\\') === 0) { - $paths[] = 'symfony/routing/' . str_replace('\\', '/', $class) . '.php'; - } elseif (strpos($class, 'Sabre\\VObject') === 0) { - $paths[] = str_replace('\\', '/', $class) . '.php'; } elseif (strpos($class, 'Test_') === 0) { $paths[] = 'tests/lib/' . strtolower(str_replace('_', '/', substr($class, 5)) . '.php'); } elseif (strpos($class, 'Test\\') === 0) { $paths[] = 'tests/lib/' . strtolower(str_replace('\\', '/', substr($class, 5)) . '.php'); } else { - foreach ($this->namespacePaths as $namespace => $dir) { - if (0 === strpos($class, $namespace)) { - $paths[] = $dir . '/' . str_replace('\\', DIRECTORY_SEPARATOR, $class) . '.php'; + foreach ($this->prefixPaths as $prefix => $dir) { + if (0 === strpos($class, $prefix)) { + $path = str_replace('\\', DIRECTORY_SEPARATOR, $class) . '.php'; + $path = str_replace('_', DIRECTORY_SEPARATOR, $path); + $paths[] = $dir . '/' . $path; } } } -- GitLab From e21a3a1a2324684f2e34bce024082d7d1d244b6a Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 7 May 2013 23:08:36 +0200 Subject: [PATCH 091/135] Autoloader: test cases --- tests/lib/autoloader.php | 58 ++++++++++++++++++++++++++++++++++++---- 1 file changed, 53 insertions(+), 5 deletions(-) diff --git a/tests/lib/autoloader.php b/tests/lib/autoloader.php index e769bf3bcf6..d9fc016adf5 100644 --- a/tests/lib/autoloader.php +++ b/tests/lib/autoloader.php @@ -6,14 +6,62 @@ * See the COPYING-README file. */ -class Test_AutoLoader extends PHPUnit_Framework_TestCase { +namespace Test; - public function testLeadingSlashOnClassName(){ - $this->assertTrue(class_exists('\OC\Files\Storage\Local')); +class AutoLoader extends \PHPUnit_Framework_TestCase { + /** + * @var \OC\Autoloader $loader + */ + private $loader; + + public function setUp() { + $this->loader = new \OC\AutoLoader(); + } + + public function testLeadingSlashOnClassName() { + $this->assertEquals(array('files/storage/local.php'), $this->loader->findClass('\OC\Files\Storage\Local')); + } + + public function testNoLeadingSlashOnClassName() { + $this->assertEquals(array('files/storage/local.php'), $this->loader->findClass('OC\Files\Storage\Local')); + } + + public function testLegacyPath() { + $this->assertEquals(array('legacy/files.php', 'files.php'), $this->loader->findClass('OC_Files')); + } + + public function testClassPath() { + $this->loader->registerClass('Foo\Bar', 'foobar.php'); + $this->assertEquals(array('foobar.php'), $this->loader->findClass('Foo\Bar')); + } + + public function testPrefixNamespace() { + $this->loader->registerPrefix('Foo', 'foo'); + $this->assertEquals(array('foo/Foo/Bar.php'), $this->loader->findClass('Foo\Bar')); + } + + public function testPrefix() { + $this->loader->registerPrefix('Foo_', 'foo'); + $this->assertEquals(array('foo/Foo/Bar.php'), $this->loader->findClass('Foo_Bar')); + } + + public function loadTestNamespace() { + $this->assertEquals(array('test/foo/bar.php'), $this->loader->findClass('Test\Foo\Bar')); } - public function testNoLeadingSlashOnClassName(){ - $this->assertTrue(class_exists('OC\Files\Storage\Local')); + public function loadTest() { + $this->assertEquals(array('test/foo/bar.php'), $this->loader->findClass('Test_Foo_Bar')); } + public function loadCoreNamespace() { + $this->assertEquals(array('lib/foo/bar.php'), $this->loader->findClass('OC\Foo\Bar')); + } + + public function loadCore() { + $this->assertEquals(array('lib/legacy/foo/bar.php', 'lib/foo/bar.php'), $this->loader->findClass('OC_Foo_Bar')); + } + + public function loadPublicNamespace() { + $this->assertEquals(array('lib/public/foo/bar.php'), $this->loader->findClass('OCP\Foo\Bar')); + } } -- GitLab From 71fc4a2cf4b5eaabdf44fae0fffe73690eb506dd Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 8 May 2013 00:50:33 +0200 Subject: [PATCH 092/135] Autoloader: fix loading app clases located in lib/ --- lib/autoloader.php | 11 ++++++----- tests/lib/autoloader.php | 27 +++++++++++++++++---------- 2 files changed, 23 insertions(+), 15 deletions(-) diff --git a/lib/autoloader.php b/lib/autoloader.php index d84924d5969..9615838a9a2 100644 --- a/lib/autoloader.php +++ b/lib/autoloader.php @@ -78,14 +78,15 @@ class Autoloader { } elseif (strpos($class, 'OC\\') === 0) { $paths[] = strtolower(str_replace('\\', '/', substr($class, 3)) . '.php'); } elseif (strpos($class, 'OCP\\') === 0) { - $paths[] = 'public/' . strtolower(str_replace('\\', '/', substr($class, 3)) . '.php'); + $paths[] = 'public/' . strtolower(str_replace('\\', '/', substr($class, 4)) . '.php'); } elseif (strpos($class, 'OCA\\') === 0) { + list(, $app, $rest) = explode('\\', $class, 3); + $app = strtolower($app); foreach (\OC::$APPSROOTS as $appDir) { - list(, $app,) = explode('\\', $class); - if (stream_resolve_include_path($appDir['path'] . '/' . strtolower($app))) { - $paths[] = $appDir['path'] . '/' . strtolower(str_replace('\\', '/', substr($class, 4)) . '.php'); + if (stream_resolve_include_path($appDir['path'] . '/' . $app)) { + $paths[] = $appDir['path'] . '/' . $app . '/' . strtolower(str_replace('\\', '/', $rest) . '.php'); // If not found in the root of the app directory, insert '/lib' after app id and try again. - $paths[] = $appDir['path'] . '/lib/' . strtolower(str_replace('\\', '/', substr($class, 4)) . '.php'); + $paths[] = $appDir['path'] . '/' . $app . '/lib/' . strtolower(str_replace('\\', '/', $rest) . '.php'); } } } elseif (strpos($class, 'Test_') === 0) { diff --git a/tests/lib/autoloader.php b/tests/lib/autoloader.php index d9fc016adf5..0e7d606ccf6 100644 --- a/tests/lib/autoloader.php +++ b/tests/lib/autoloader.php @@ -45,23 +45,30 @@ class AutoLoader extends \PHPUnit_Framework_TestCase { $this->assertEquals(array('foo/Foo/Bar.php'), $this->loader->findClass('Foo_Bar')); } - public function loadTestNamespace() { - $this->assertEquals(array('test/foo/bar.php'), $this->loader->findClass('Test\Foo\Bar')); + public function testLoadTestNamespace() { + $this->assertEquals(array('tests/lib/foo/bar.php'), $this->loader->findClass('Test\Foo\Bar')); } - public function loadTest() { - $this->assertEquals(array('test/foo/bar.php'), $this->loader->findClass('Test_Foo_Bar')); + public function testLoadTest() { + $this->assertEquals(array('tests/lib/foo/bar.php'), $this->loader->findClass('Test_Foo_Bar')); } - public function loadCoreNamespace() { - $this->assertEquals(array('lib/foo/bar.php'), $this->loader->findClass('OC\Foo\Bar')); + public function testLoadCoreNamespace() { + $this->assertEquals(array('foo/bar.php'), $this->loader->findClass('OC\Foo\Bar')); } - public function loadCore() { - $this->assertEquals(array('lib/legacy/foo/bar.php', 'lib/foo/bar.php'), $this->loader->findClass('OC_Foo_Bar')); + public function testLoadCore() { + $this->assertEquals(array('legacy/foo/bar.php', 'foo/bar.php'), $this->loader->findClass('OC_Foo_Bar')); } - public function loadPublicNamespace() { - $this->assertEquals(array('lib/public/foo/bar.php'), $this->loader->findClass('OCP\Foo\Bar')); + public function testLoadPublicNamespace() { + $this->assertEquals(array('public/foo/bar.php'), $this->loader->findClass('OCP\Foo\Bar')); + } + + public function testLoadAppNamespace() { + $result = $this->loader->findClass('OCA\Files\Foobar'); + $this->assertEquals(2, count($result)); + $this->assertStringEndsWith('apps/files/foobar.php', $result[0]); + $this->assertStringEndsWith('apps/files/lib/foobar.php', $result[1]); } } -- GitLab From 135991474b7674881676dc6a9913bf6c778fdebc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Wed, 8 May 2013 12:38:09 +0200 Subject: [PATCH 093/135] fix inconsistent post parameters in change password operation --- settings/ajax/changepassword.php | 2 +- settings/templates/personal.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/settings/ajax/changepassword.php b/settings/ajax/changepassword.php index 1fc6d0e1000..4f16bff63d5 100644 --- a/settings/ajax/changepassword.php +++ b/settings/ajax/changepassword.php @@ -8,7 +8,7 @@ OC_JSON::checkLoggedIn(); OC_APP::loadApps(); $username = isset($_POST["username"]) ? $_POST["username"] : OC_User::getUser(); -$password = isset($_POST["password"]) ? $_POST["password"] : null; +$password = isset($_POST["newpassword"]) ? $_POST["newpassword"] : null; $oldPassword=isset($_POST["oldpassword"])?$_POST["oldpassword"]:''; $userstatus = null; diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 666cb9d0b36..cfb45e99c4d 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -38,7 +38,7 @@ if($_['passwordChangeSupported']) {
t('Your password was changed');?>
t('Unable to change your password');?>
- -- GitLab From d9c19fa8d700a64054b29d8a1e4faaffc036c717 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 8 May 2013 16:48:47 +0200 Subject: [PATCH 094/135] Move legacy filesystem classes --- lib/{ => legacy}/filesystem.php | 0 lib/{ => legacy}/filesystemview.php | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename lib/{ => legacy}/filesystem.php (100%) rename lib/{ => legacy}/filesystemview.php (100%) diff --git a/lib/filesystem.php b/lib/legacy/filesystem.php similarity index 100% rename from lib/filesystem.php rename to lib/legacy/filesystem.php diff --git a/lib/filesystemview.php b/lib/legacy/filesystemview.php similarity index 100% rename from lib/filesystemview.php rename to lib/legacy/filesystemview.php -- GitLab From b9134dcd6a997f252db8498dec7b422e148a5681 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Wed, 8 May 2013 15:05:03 +0200 Subject: [PATCH 095/135] touch file relative to users file folder, otherwise the hooks will be ignored --- apps/files_versions/lib/versions.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index c38ba688fe0..836e3914dc0 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -184,11 +184,12 @@ class Storage { /** * rollback to an old version of a file. */ - public static function rollback($filename, $revision) { + public static function rollback($file, $revision) { if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { - list($uid, $filename) = self::getUidAndFilename($filename); + list($uid, $filename) = self::getUidAndFilename($file); $users_view = new \OC\Files\View('/'.$uid); + $files_view = new \OC\Files\View('/'.\OCP\User::getUser().'/files'); $versionCreated = false; //first create a new version @@ -200,8 +201,8 @@ class Storage { // rollback if( @$users_view->copy('files_versions'.$filename.'.v'.$revision, 'files'.$filename) ) { - $users_view->touch('files'.$filename, $revision); - Storage::expire($filename); + $files_view->touch($file, $revision); + Storage::expire($file); return true; }else if ( $versionCreated ) { -- GitLab From 0e30e68b22bf3db2872dcff50fe1c0186aa1c57e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Wed, 8 May 2013 15:49:45 +0200 Subject: [PATCH 096/135] update etag for for the touched file --- lib/files/cache/updater.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lib/files/cache/updater.php b/lib/files/cache/updater.php index 92a16d9d9b6..e054b9dafcf 100644 --- a/lib/files/cache/updater.php +++ b/lib/files/cache/updater.php @@ -132,7 +132,15 @@ class Updater { * @param array $params */ static public function touchHook($params) { - self::writeUpdate($params['path']); + $path = $params['path']; + list($storage, $internalPath) = self::resolvePath($path); + $cache = $storage->getCache(); + $id = $cache->getId($internalPath); + if ($id !== -1) { + $cache->update($id, array('etag' => $storage->getETag($internalPath))); + self::correctFolder($parent, $time); + } + self::writeUpdate($path); } /** -- GitLab From bda8187f3b305d0d1d7843bb9eaf0074ae5009d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Wed, 8 May 2013 16:32:29 +0200 Subject: [PATCH 097/135] rename a file if it gets restored so that it no longer exists as a version. Otherwise it can happen that the expire() function removes all other versions so that we end up with only one version which is exactly the same as the original file --- apps/files_versions/lib/versions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 836e3914dc0..5fdbef27743 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -200,7 +200,7 @@ class Storage { } // rollback - if( @$users_view->copy('files_versions'.$filename.'.v'.$revision, 'files'.$filename) ) { + if( @$users_view->rename('files_versions'.$filename.'.v'.$revision, 'files'.$filename) ) { $files_view->touch($file, $revision); Storage::expire($file); return true; -- GitLab From 2e81efc37eeb95b7e5d392349ad393bb94d6928a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Wed, 8 May 2013 22:57:08 +0200 Subject: [PATCH 098/135] don't call correctFolder() in touchHook, it will be called later in the writeUpdate() --- lib/files/cache/updater.php | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/files/cache/updater.php b/lib/files/cache/updater.php index e054b9dafcf..417a47f3830 100644 --- a/lib/files/cache/updater.php +++ b/lib/files/cache/updater.php @@ -138,7 +138,6 @@ class Updater { $id = $cache->getId($internalPath); if ($id !== -1) { $cache->update($id, array('etag' => $storage->getETag($internalPath))); - self::correctFolder($parent, $time); } self::writeUpdate($path); } -- GitLab From ee1ce055fc6bbd543d31ef8c443bc379e7476e8d Mon Sep 17 00:00:00 2001 From: kondou Date: Tue, 7 May 2013 06:27:52 +0200 Subject: [PATCH 099/135] Fix #3251 Using ksort now, instead of prefilling the commonlanguages array. --- settings/personal.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/settings/personal.php b/settings/personal.php index de029770d98..cab6e56dada 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -29,8 +29,7 @@ $commonlangcodes = array( $languageNames=include 'languageCodes.php'; $languages=array(); -// Initialize array, so we can substitue later with our in $commonlangcodes specified order -$commonlanguages = array_fill(0, count($commonlangcodes), ""); +$commonlanguages = array(); foreach($languageCodes as $lang) { $l=OC_L10N::get('settings', $lang); if(substr($l->t('__language_name__'), 0, 1)!='_') {//first check if the language name is in the translation file @@ -52,6 +51,8 @@ foreach($languageCodes as $lang) { } } +ksort($commonlanguages); + // sort now by displayed language not the iso-code usort( $languages, function ($a, $b) { return strcmp($a['name'], $b['name']); -- GitLab From 78559c0863dad56ddf71f1e4c296fabe0e75de35 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Fri, 10 May 2013 02:13:59 +0300 Subject: [PATCH 100/135] disable mbstring.func_overload --- .htaccess | 1 + 1 file changed, 1 insertion(+) diff --git a/.htaccess b/.htaccess index 201e0d605b7..08e2a82facb 100755 --- a/.htaccess +++ b/.htaccess @@ -12,6 +12,7 @@ ErrorDocument 404 /core/templates/404.php php_value upload_max_filesize 513M php_value post_max_size 513M php_value memory_limit 512M +php_value mbstring.func_overload 0 SetEnv htaccessWorking true -- GitLab From c3b0d3d38cb2cfe1501a28081dde34dbec2d2621 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 10 May 2013 12:00:13 +0200 Subject: [PATCH 101/135] rename isIgnoredFile to isPartialFile, remove check of blacklisted files in isPartialFile, correct usage of isPartialFile and isFileBlacklisted --- lib/files/cache/scanner.php | 10 +++++----- lib/files/view.php | 16 +++++++++++----- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/lib/files/cache/scanner.php b/lib/files/cache/scanner.php index 5241acec1ee..661bc486330 100644 --- a/lib/files/cache/scanner.php +++ b/lib/files/cache/scanner.php @@ -62,7 +62,9 @@ class Scanner { * @return array with metadata of the scanned file */ public function scanFile($file, $checkExisting = false) { - if (!self::isIgnoredFile($file)) { + if ( ! self::isPartialFile($file) + and ! \OC\Files\Filesystem::isFileBlacklisted($file) + ) { \OC_Hook::emit('\OC\Files\Cache\Scanner', 'scan_file', array('path' => $file, 'storage' => $this->storageId)); $data = $this->getData($file); if ($data) { @@ -166,10 +168,8 @@ class Scanner { * @param String $file * @return boolean */ - public static function isIgnoredFile($file) { - if (pathinfo($file, PATHINFO_EXTENSION) === 'part' - || \OC\Files\Filesystem::isFileBlacklisted($file) - ) { + public static function isPartialFile($file) { + if (pathinfo($file, PATHINFO_EXTENSION) === 'part') { return true; } return false; diff --git a/lib/files/view.php b/lib/files/view.php index f89b7f66ffd..35053e0729c 100644 --- a/lib/files/view.php +++ b/lib/files/view.php @@ -263,12 +263,13 @@ class View { if (is_resource($data)) { //not having to deal with streams in file_put_contents makes life easier $absolutePath = Filesystem::normalizePath($this->getAbsolutePath($path)); if (\OC_FileProxy::runPreProxies('file_put_contents', $absolutePath, $data) - && Filesystem::isValidPath($path) + and Filesystem::isValidPath($path) + and ! Filesystem::isFileBlacklisted($path) ) { $path = $this->getRelativePath($absolutePath); $exists = $this->file_exists($path); $run = true; - if ($this->fakeRoot == Filesystem::getRoot() && !Cache\Scanner::isIgnoredFile($path)) { + if ($this->fakeRoot == Filesystem::getRoot() && !Cache\Scanner::isPartialFile($path)) { if (!$exists) { \OC_Hook::emit( Filesystem::CLASSNAME, @@ -296,7 +297,7 @@ class View { list ($count, $result) = \OC_Helper::streamCopy($data, $target); fclose($target); fclose($data); - if ($this->fakeRoot == Filesystem::getRoot() && !Cache\Scanner::isIgnoredFile($path)) { + if ($this->fakeRoot == Filesystem::getRoot() && !Cache\Scanner::isPartialFile($path)) { if (!$exists) { \OC_Hook::emit( Filesystem::CLASSNAME, @@ -340,6 +341,7 @@ class View { \OC_FileProxy::runPreProxies('rename', $absolutePath1, $absolutePath2) and Filesystem::isValidPath($path2) and Filesystem::isValidPath($path1) + and ! Filesystem::isFileBlacklisted($path2) ) { $path1 = $this->getRelativePath($absolutePath1); $path2 = $this->getRelativePath($absolutePath2); @@ -404,6 +406,7 @@ class View { \OC_FileProxy::runPreProxies('copy', $absolutePath1, $absolutePath2) and Filesystem::isValidPath($path2) and Filesystem::isValidPath($path1) + and ! Filesystem::isFileBlacklisted($path2) ) { $path1 = $this->getRelativePath($absolutePath1); $path2 = $this->getRelativePath($absolutePath2); @@ -606,7 +609,10 @@ class View { private function basicOperation($operation, $path, $hooks = array(), $extraParam = null) { $postFix = (substr($path, -1, 1) === '/') ? '/' : ''; $absolutePath = Filesystem::normalizePath($this->getAbsolutePath($path)); - if (\OC_FileProxy::runPreProxies($operation, $absolutePath, $extraParam) and Filesystem::isValidPath($path)) { + if (\OC_FileProxy::runPreProxies($operation, $absolutePath, $extraParam) + and Filesystem::isValidPath($path) + and ! Filesystem::isFileBlacklisted($path) + ) { $path = $this->getRelativePath($absolutePath); if ($path == null) { return false; @@ -635,7 +641,7 @@ class View { private function runHooks($hooks, $path, $post = false) { $prefix = ($post) ? 'post_' : ''; $run = true; - if (Filesystem::$loaded and $this->fakeRoot == Filesystem::getRoot() && !Cache\Scanner::isIgnoredFile($path)) { + if (Filesystem::$loaded and $this->fakeRoot == Filesystem::getRoot()) { foreach ($hooks as $hook) { if ($hook != 'read') { \OC_Hook::emit( -- GitLab From 9134395b43bb92d31abc5de95fb00a024898cfc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 10 May 2013 12:01:50 +0200 Subject: [PATCH 102/135] don't emit rename hooks on partial file renames --- lib/files/view.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/files/view.php b/lib/files/view.php index 35053e0729c..f35e1e3dc16 100644 --- a/lib/files/view.php +++ b/lib/files/view.php @@ -350,7 +350,7 @@ class View { return false; } $run = true; - if ($this->fakeRoot == Filesystem::getRoot()) { + if ($this->fakeRoot == Filesystem::getRoot() && !Cache\Scanner::isPartialFile($path1)) { \OC_Hook::emit( Filesystem::CLASSNAME, Filesystem::signal_rename, array( @@ -378,7 +378,7 @@ class View { list($storage1, $internalPath1) = Filesystem::resolvePath($absolutePath1 . $postFix1); $storage1->unlink($internalPath1); } - if ($this->fakeRoot == Filesystem::getRoot()) { + if ($this->fakeRoot == Filesystem::getRoot() && !Cache\Scanner::isPartialFile($path1)) { \OC_Hook::emit( Filesystem::CLASSNAME, Filesystem::signal_post_rename, -- GitLab From cc433d47cb102d0dca50b925c7519c803ccce48b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Fri, 10 May 2013 12:05:11 +0200 Subject: [PATCH 103/135] touch() needs to be performed relative to user/files otherwise ownCloud doesn't execute the hooks which means that etags aren't updated properly --- apps/files_trashbin/lib/trash.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/files_trashbin/lib/trash.php b/apps/files_trashbin/lib/trash.php index 88c71a75ab0..7fda855d0c2 100644 --- a/apps/files_trashbin/lib/trash.php +++ b/apps/files_trashbin/lib/trash.php @@ -266,7 +266,10 @@ class Trashbin { // handle the restore result if( $restoreResult ) { - $view->touch($target.$ext, $mtime); + $fakeRoot = $view->getRoot(); + $view->chroot('/'.$user.'/files'); + $view->touch('/'.$location.'/'.$filename.$ext, $mtime); + $view->chroot($fakeRoot); \OCP\Util::emitHook('\OCA\Files_Trashbin\Trashbin', 'post_restore', array('filePath' => \OC\Files\Filesystem::normalizePath('/'.$location.'/'.$filename.$ext), 'trashPath' => \OC\Files\Filesystem::normalizePath($file))); -- GitLab From 0d852dce3b060537ceb1418d97d00426f437527c Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Sat, 11 May 2013 22:44:45 +0200 Subject: [PATCH 104/135] Use new autoloader class --- tests/lib/public/contacts.php | 2 -- tests/lib/template.php | 7 +++++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/lib/public/contacts.php b/tests/lib/public/contacts.php index ce5d762226b..d6008876a00 100644 --- a/tests/lib/public/contacts.php +++ b/tests/lib/public/contacts.php @@ -19,8 +19,6 @@ * License along with this library. If not, see . */ -OC::autoload('OCP\Contacts'); - class Test_Contacts extends PHPUnit_Framework_TestCase { diff --git a/tests/lib/template.php b/tests/lib/template.php index 6e88d4c07fc..fd12119da58 100644 --- a/tests/lib/template.php +++ b/tests/lib/template.php @@ -20,10 +20,13 @@ * */ -OC::autoload('OC_Template'); - class Test_TemplateFunctions extends PHPUnit_Framework_TestCase { + public function setUp() { + $loader = new \OC\Autoloader(); + $loader->load('OC_Template'); + } + public function testP() { // FIXME: do we need more testcases? $htmlString = ""; -- GitLab From 74f92d0c7fa1afa181837a9e827933769816ecbb Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 12 May 2013 02:05:29 +0200 Subject: [PATCH 105/135] [tx-robot] updated from transifex --- apps/files/l10n/de.php | 24 ++-- apps/files/l10n/de_DE.php | 26 ++-- apps/files/l10n/en@pirate.php | 3 + apps/files/l10n/es.php | 20 ++-- apps/files/l10n/fr.php | 14 +-- apps/files/l10n/gl.php | 2 +- apps/files/l10n/ko.php | 6 + apps/files/l10n/ug.php | 44 +++++++ apps/files/l10n/vi.php | 6 +- apps/files_encryption/l10n/ug.php | 7 ++ apps/files_external/l10n/de_DE.php | 2 +- apps/files_external/l10n/pt_PT.php | 1 + apps/files_external/l10n/ug.php | 9 ++ apps/files_external/l10n/vi.php | 3 + apps/files_sharing/l10n/en@pirate.php | 8 +- apps/files_sharing/l10n/ug.php | 5 + apps/files_trashbin/l10n/ko.php | 1 + apps/files_trashbin/l10n/ug.php | 11 ++ apps/files_versions/l10n/ug.php | 9 ++ apps/files_versions/l10n/zh_TW.php | 4 +- apps/user_ldap/l10n/de.php | 24 ++-- apps/user_ldap/l10n/de_DE.php | 42 +++---- apps/user_ldap/l10n/ja_JP.php | 2 +- apps/user_ldap/l10n/ug.php | 13 ++ apps/user_webdavauth/l10n/ug.php | 4 + apps/user_webdavauth/l10n/zh_TW.php | 2 +- core/l10n/de.php | 1 + core/l10n/de_DE.php | 4 +- core/l10n/en@pirate.php | 4 +- core/l10n/es.php | 50 ++++---- core/l10n/fr.php | 1 + core/l10n/ja_JP.php | 2 +- core/l10n/lt_LT.php | 2 + core/l10n/pt_PT.php | 3 + core/l10n/sk_SK.php | 1 + core/l10n/ug.php | 48 ++++++++ core/l10n/vi.php | 5 + core/l10n/zh_CN.php | 3 + core/l10n/zh_TW.php | 3 + l10n/de/core.po | 9 +- l10n/de/files.po | 79 ++++++------ l10n/de/files_encryption.po | 6 +- l10n/de/files_external.po | 6 +- l10n/de/files_sharing.po | 6 +- l10n/de/files_trashbin.po | 6 +- l10n/de/files_versions.po | 6 +- l10n/de/lib.po | 17 +-- l10n/de/settings.po | 45 +++---- l10n/de/user_ldap.po | 31 ++--- l10n/de_DE/core.po | 11 +- l10n/de_DE/files.po | 34 +++--- l10n/de_DE/files_encryption.po | 6 +- l10n/de_DE/files_external.po | 9 +- l10n/de_DE/files_sharing.po | 6 +- l10n/de_DE/files_trashbin.po | 6 +- l10n/de_DE/lib.po | 6 +- l10n/de_DE/settings.po | 36 +++--- l10n/de_DE/user_ldap.po | 49 ++++---- l10n/en@pirate/core.po | 8 +- l10n/en@pirate/files.po | 4 +- l10n/en@pirate/files_sharing.po | 16 +-- l10n/es/core.po | 57 ++++----- l10n/es/files.po | 75 ++++++------ l10n/es/lib.po | 12 +- l10n/fr/core.po | 9 +- l10n/fr/files.po | 69 +++++------ l10n/gl/files.po | 57 ++++----- l10n/gl/settings.po | 26 ++-- l10n/ja_JP/core.po | 6 +- l10n/ja_JP/user_ldap.po | 9 +- l10n/ko/files.po | 68 ++++++----- l10n/ko/files_trashbin.po | 6 +- l10n/ko/settings.po | 26 ++-- l10n/lt_LT/core.po | 11 +- l10n/nn_NO/core.po | 4 +- l10n/nn_NO/files.po | 4 +- l10n/pt_PT/core.po | 13 +- l10n/pt_PT/files_external.po | 9 +- l10n/pt_PT/settings.po | 31 ++--- l10n/sk_SK/core.po | 8 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 4 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/ug/core.po | 100 ++++++++-------- l10n/ug/files.po | 92 +++++++------- l10n/ug/files_encryption.po | 18 +-- l10n/ug/files_external.po | 22 ++-- l10n/ug/files_sharing.po | 15 +-- l10n/ug/files_trashbin.po | 26 ++-- l10n/ug/files_versions.po | 22 ++-- l10n/ug/lib.po | 50 ++++---- l10n/ug/settings.po | 166 +++++++++++++------------- l10n/ug/user_ldap.po | 30 ++--- l10n/ug/user_webdavauth.po | 13 +- l10n/vi/core.po | 17 +-- l10n/vi/files.po | 63 +++++----- l10n/vi/files_external.po | 13 +- l10n/zh_CN/core.po | 13 +- l10n/zh_CN/settings.po | 31 ++--- l10n/zh_TW/core.po | 13 +- l10n/zh_TW/files_versions.po | 11 +- l10n/zh_TW/user_ldap.po | 4 +- l10n/zh_TW/user_webdavauth.po | 15 +-- lib/l10n/de.php | 2 +- lib/l10n/ug.php | 19 +++ settings/l10n/de.php | 18 +-- settings/l10n/de_DE.php | 8 +- settings/l10n/gl.php | 2 +- settings/l10n/pt_PT.php | 1 + settings/l10n/ug.php | 71 +++++++++++ settings/l10n/zh_CN.php | 1 + 119 files changed, 1260 insertions(+), 941 deletions(-) create mode 100644 apps/files/l10n/en@pirate.php create mode 100644 apps/files/l10n/ug.php create mode 100644 apps/files_encryption/l10n/ug.php create mode 100644 apps/files_external/l10n/ug.php create mode 100644 apps/files_sharing/l10n/ug.php create mode 100644 apps/files_trashbin/l10n/ug.php create mode 100644 apps/files_versions/l10n/ug.php create mode 100644 apps/user_ldap/l10n/ug.php create mode 100644 apps/user_webdavauth/l10n/ug.php create mode 100644 core/l10n/ug.php create mode 100644 lib/l10n/ug.php create mode 100644 settings/l10n/ug.php diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index f8ad5993af6..14d084bc211 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -1,16 +1,16 @@ "%s konnte nicht verschoben werden - eine Datei mit diesem Namen existiert bereits.", -"Could not move %s" => "%s konnte nicht verschoben werden", -"Unable to rename file" => "Die Datei konnte nicht umbenannt werden", +"Could not move %s - File with this name already exists" => "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert bereits", +"Could not move %s" => "Konnte %s nicht verschieben", +"Unable to rename file" => "Konnte Datei nicht umbenennen", "No file was uploaded. Unknown error" => "Keine Datei hochgeladen. Unbekannter Fehler", -"There is no error, the file uploaded with success" => "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich übertragen.", +"There is no error, the file uploaded with success" => "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die Datei ist größer, als die MAX_FILE_SIZE Direktive erlaubt, die im HTML-Formular spezifiziert ist", "The uploaded file was only partially uploaded" => "Die Datei konnte nur teilweise übertragen werden", "No file was uploaded" => "Keine Datei konnte übertragen werden.", "Missing a temporary folder" => "Kein temporärer Ordner vorhanden", "Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", -"Not enough storage available" => "Nicht genug Speicherplatz verfügbar", +"Not enough storage available" => "Nicht genug Speicher vorhanden.", "Invalid directory." => "Ungültiges Verzeichnis.", "Files" => "Dateien", "Share" => "Teilen", @@ -20,20 +20,20 @@ "Pending" => "Ausstehend", "{new_name} already exists" => "{new_name} existiert bereits", "replace" => "ersetzen", -"suggest name" => "Name vorschlagen", +"suggest name" => "Namen vorschlagen", "cancel" => "abbrechen", "replaced {new_name} with {old_name}" => "{old_name} ersetzt durch {new_name}", "undo" => "rückgängig machen", "perform delete operation" => "Löschvorgang ausführen", -"1 file uploading" => "Eine Datei wird hoch geladen", +"1 file uploading" => "1 Datei wird hochgeladen", "files uploading" => "Dateien werden hoch geladen", "'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.", "File name cannot be empty." => "Der Dateiname darf nicht leer sein.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.", -"Your storage is full, files can not be updated or synced anymore!" => "Ihr Speicherplatz ist voll, Dateien können nicht mehr aktualisiert oder synchronisiert werden!", -"Your storage is almost full ({usedSpacePercent}%)" => "Ihr Speicherplatz ist fast aufgebraucht ({usedSpacePercent}%)", +"Your storage is full, files can not be updated or synced anymore!" => "Dein Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!", +"Your storage is almost full ({usedSpacePercent}%)" => "Dein Speicher ist fast voll ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Dein Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern.", -"Unable to upload your file as it is a directory or has 0 bytes" => "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Deine Datei kann nicht hochgeladen werden, weil es sich um einen Ordner handelt oder 0 Bytes groß ist.", "Not enough space available" => "Nicht genug Speicherplatz verfügbar", "Upload cancelled." => "Upload abgebrochen.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen.", @@ -62,9 +62,9 @@ "From link" => "Von einem Link", "Deleted files" => "Gelöschte Dateien", "Cancel upload" => "Upload abbrechen", -"You don’t have write permissions here." => "Du besitzt hier keine Schreib-Berechtigung.", +"You don’t have write permissions here." => "Du hast hier keine Schreib-Berechtigung.", "Nothing in here. Upload something!" => "Alles leer. Lade etwas hoch!", -"Download" => "Download", +"Download" => "Herunterladen", "Unshare" => "Freigabe aufheben", "Upload too large" => "Der Upload ist zu groß", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 8a977710a2a..6f912976939 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -3,12 +3,12 @@ "Could not move %s" => "Konnte %s nicht verschieben", "Unable to rename file" => "Konnte Datei nicht umbenennen", "No file was uploaded. Unknown error" => "Keine Datei hochgeladen. Unbekannter Fehler", -"There is no error, the file uploaded with success" => "Es sind keine Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.", -"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in der php.ini:", -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die Datei ist größer, als die MAX_FILE_SIZE Direktive erlaubt, die im HTML-Formular spezifiziert ist", +"There is no error, the file uploaded with success" => "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die Datei ist größer, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist", "The uploaded file was only partially uploaded" => "Die Datei konnte nur teilweise übertragen werden", "No file was uploaded" => "Keine Datei konnte übertragen werden.", -"Missing a temporary folder" => "Der temporäre Ordner fehlt.", +"Missing a temporary folder" => "Kein temporärer Ordner vorhanden", "Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", "Not enough storage available" => "Nicht genug Speicher vorhanden.", "Invalid directory." => "Ungültiges Verzeichnis.", @@ -20,29 +20,29 @@ "Pending" => "Ausstehend", "{new_name} already exists" => "{new_name} existiert bereits", "replace" => "ersetzen", -"suggest name" => "Einen Namen vorschlagen", +"suggest name" => "Namen vorschlagen", "cancel" => "abbrechen", "replaced {new_name} with {old_name}" => "{old_name} wurde ersetzt durch {new_name}", "undo" => "rückgängig machen", -"perform delete operation" => "führe das Löschen aus", +"perform delete operation" => "Löschvorgang ausführen", "1 file uploading" => "1 Datei wird hochgeladen", "files uploading" => "Dateien werden hoch geladen", "'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.", "File name cannot be empty." => "Der Dateiname darf nicht leer sein.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name! Die Zeichen '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.", -"Your storage is full, files can not be updated or synced anymore!" => "Ihr Speicher ist voll. Daher können keine Dateien mehr aktualisiert oder synchronisiert werden!", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.", +"Your storage is full, files can not be updated or synced anymore!" => "Ihr Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!", "Your storage is almost full ({usedSpacePercent}%)" => "Ihr Speicher ist fast voll ({usedSpacePercent}%)", -"Your download is being prepared. This might take some time if the files are big." => "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien einen Moment dauern.", +"Your download is being prepared. This might take some time if the files are big." => "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern.", "Unable to upload your file as it is a directory or has 0 bytes" => "Ihre Datei kann nicht hochgeladen werden, weil es sich um einen Ordner handelt oder 0 Bytes groß ist.", "Not enough space available" => "Nicht genügend Speicherplatz verfügbar", "Upload cancelled." => "Upload abgebrochen.", -"File upload is in progress. Leaving the page now will cancel the upload." => "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.", "URL cannot be empty." => "Die URL darf nicht leer sein.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten", "Error" => "Fehler", "Name" => "Name", "Size" => "Größe", -"Modified" => "Bearbeitet", +"Modified" => "Geändert", "1 folder" => "1 Ordner", "{count} folders" => "{count} Ordner", "1 file" => "1 Datei", @@ -63,12 +63,12 @@ "Deleted files" => "Gelöschte Dateien", "Cancel upload" => "Upload abbrechen", "You don’t have write permissions here." => "Sie haben hier keine Schreib-Berechtigungen.", -"Nothing in here. Upload something!" => "Alles leer. Bitte laden Sie etwas hoch!", +"Nothing in here. Upload something!" => "Alles leer. Laden Sie etwas hoch!", "Download" => "Herunterladen", "Unshare" => "Freigabe aufheben", "Upload too large" => "Der Upload ist zu groß", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.", "Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten.", "Current scanning" => "Scanne", -"Upgrading filesystem cache..." => "Aktualisiere den Dateisystem-Cache..." +"Upgrading filesystem cache..." => "Dateisystem-Cache wird aktualisiert ..." ); diff --git a/apps/files/l10n/en@pirate.php b/apps/files/l10n/en@pirate.php new file mode 100644 index 00000000000..fdd1850da90 --- /dev/null +++ b/apps/files/l10n/en@pirate.php @@ -0,0 +1,3 @@ + "Download" +); diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index c9bc5ed6293..dd756142e42 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -27,18 +27,18 @@ "perform delete operation" => "Eliminar", "1 file uploading" => "subiendo 1 archivo", "files uploading" => "subiendo archivos", -"'.' is an invalid file name." => "'.' es un nombre de archivo inválido.", +"'.' is an invalid file name." => "'.' no es un nombre de archivo válido.", "File name cannot be empty." => "El nombre de archivo no puede estar vacío.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos ", -"Your storage is full, files can not be updated or synced anymore!" => "Su almacenamiento esta lleno, los archivos no pueden ser mas actualizados o sincronizados!", -"Your storage is almost full ({usedSpacePercent}%)" => "Su almacenamiento esta lleno en un ({usedSpacePercent}%)", -"Your download is being prepared. This might take some time if the files are big." => "Tu descarga esta siendo preparada. Esto puede tardar algun tiempo si los archivos son muy grandes.", +"Your storage is full, files can not be updated or synced anymore!" => "Su almacenamiento está lleno, ¡no se pueden actualizar ni sincronizar archivos!", +"Your storage is almost full ({usedSpacePercent}%)" => "Su almacenamiento está casi lleno ({usedSpacePercent}%)", +"Your download is being prepared. This might take some time if the files are big." => "Su descarga está siendo preparada. Esto puede tardar algún tiempo si los archivos son muy grandes.", "Unable to upload your file as it is a directory or has 0 bytes" => "Imposible subir su archivo, es un directorio o tiene 0 bytes", "Not enough space available" => "No hay suficiente espacio disponible", "Upload cancelled." => "Subida cancelada.", -"File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida.", +"File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si sale de la página ahora, se cancelará la subida.", "URL cannot be empty." => "La URL no puede estar vacía.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nombre de carpeta invalido. El uso de \"Shared\" esta reservado para Owncloud", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "El nombre de carpeta no es válido. El uso de \"Shared\" está reservado para Owncloud", "Error" => "Error", "Name" => "Nombre", "Size" => "Tamaño", @@ -65,10 +65,10 @@ "You don’t have write permissions here." => "No tienes permisos para escribir aquí.", "Nothing in here. Upload something!" => "Aquí no hay nada. ¡Sube algo!", "Download" => "Descargar", -"Unshare" => "No compartir", -"Upload too large" => "bida demasido grande", +"Unshare" => "Dejar de compartir", +"Upload too large" => "Subida demasido grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido por este servidor.", "Files are being scanned, please wait." => "Se están escaneando los archivos, por favor espere.", -"Current scanning" => "Ahora escaneando", -"Upgrading filesystem cache..." => "Actualizando cache de archivos de sistema" +"Current scanning" => "Escaneo actual", +"Upgrading filesystem cache..." => "Actualizando caché del sistema de archivos" ); diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 3e2bdd4db02..e4793ab5264 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -2,11 +2,11 @@ "Could not move %s - File with this name already exists" => "Impossible de déplacer %s - Un fichier possédant ce nom existe déjà", "Could not move %s" => "Impossible de déplacer %s", "Unable to rename file" => "Impossible de renommer le fichier", -"No file was uploaded. Unknown error" => "Aucun fichier n'a été chargé. Erreur inconnue", -"There is no error, the file uploaded with success" => "Il n'y a pas d'erreur, le fichier a été envoyé avec succes.", +"No file was uploaded. Unknown error" => "Aucun fichier n'a été envoyé. Erreur inconnue", +"There is no error, the file uploaded with success" => "Aucune erreur, le fichier a été envoyé avec succès.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Le fichier envoyé dépasse la valeur upload_max_filesize située dans le fichier php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Le fichier envoyé dépasse la directive MAX_FILE_SIZE qui est spécifiée dans le formulaire HTML.", -"The uploaded file was only partially uploaded" => "Le fichier envoyé n'a été que partiellement envoyé.", +"The uploaded file was only partially uploaded" => "Le fichier n'a été que partiellement envoyé.", "No file was uploaded" => "Pas de fichier envoyé.", "Missing a temporary folder" => "Absence de dossier temporaire.", "Failed to write to disk" => "Erreur d'écriture sur le disque", @@ -25,17 +25,17 @@ "replaced {new_name} with {old_name}" => "{new_name} a été remplacé par {old_name}", "undo" => "annuler", "perform delete operation" => "effectuer l'opération de suppression", -"1 file uploading" => "1 fichier en cours de téléchargement", -"files uploading" => "fichiers en cours de téléchargement", +"1 file uploading" => "1 fichier en cours d'envoi", +"files uploading" => "fichiers en cours d'envoi", "'.' is an invalid file name." => "'.' n'est pas un nom de fichier valide.", "File name cannot be empty." => "Le nom de fichier ne peut être vide.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés.", "Your storage is full, files can not be updated or synced anymore!" => "Votre espage de stockage est plein, les fichiers ne peuvent plus être téléversés ou synchronisés !", "Your storage is almost full ({usedSpacePercent}%)" => "Votre espace de stockage est presque plein ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Votre téléchargement est cours de préparation. Ceci peut nécessiter un certain temps si les fichiers sont volumineux.", -"Unable to upload your file as it is a directory or has 0 bytes" => "Impossible de téléverser votre fichier dans la mesure où il s'agit d'un répertoire ou d'un fichier de taille nulle", +"Unable to upload your file as it is a directory or has 0 bytes" => "Impossible d'envoyer votre fichier dans la mesure où il s'agit d'un répertoire ou d'un fichier de taille nulle", "Not enough space available" => "Espace disponible insuffisant", -"Upload cancelled." => "Chargement annulé.", +"Upload cancelled." => "Envoi annulé.", "File upload is in progress. Leaving the page now will cancel the upload." => "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier.", "URL cannot be empty." => "L'URL ne peut-être vide", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index e04940e2b48..48145d44619 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -52,7 +52,7 @@ "Maximum upload size" => "Tamaño máximo do envío", "max. possible: " => "máx. posíbel: ", "Needed for multi-file and folder downloads." => "Precísase para a descarga de varios ficheiros e cartafoles.", -"Enable ZIP-download" => "Habilitar a descarga-ZIP", +"Enable ZIP-download" => "Activar a descarga ZIP", "0 is unlimited" => "0 significa ilimitado", "Maximum input size for ZIP files" => "Tamaño máximo de descarga para os ficheiros ZIP", "Save" => "Gardar", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index 711c53ee49f..46955bd675f 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -10,9 +10,11 @@ "No file was uploaded" => "파일이 업로드되지 않았음", "Missing a temporary folder" => "임시 폴더가 없음", "Failed to write to disk" => "디스크에 쓰지 못했습니다", +"Not enough storage available" => "저장소가 용량이 충분하지 않습니다.", "Invalid directory." => "올바르지 않은 디렉터리입니다.", "Files" => "파일", "Share" => "공유", +"Delete permanently" => "영원히 삭제", "Delete" => "삭제", "Rename" => "이름 바꾸기", "Pending" => "대기 중", @@ -22,7 +24,9 @@ "cancel" => "취소", "replaced {new_name} with {old_name}" => "{old_name}이(가) {new_name}(으)로 대체됨", "undo" => "되돌리기", +"perform delete operation" => "삭제 작업중", "1 file uploading" => "파일 1개 업로드 중", +"files uploading" => "파일 업로드중", "'.' is an invalid file name." => "'.' 는 올바르지 않은 파일 이름 입니다.", "File name cannot be empty." => "파일 이름이 비어 있을 수 없습니다.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다.", @@ -56,7 +60,9 @@ "Text file" => "텍스트 파일", "Folder" => "폴더", "From link" => "링크에서", +"Deleted files" => "파일 삭제됨", "Cancel upload" => "업로드 취소", +"You don’t have write permissions here." => "당신은 여기에 쓰기를 할 수 있는 권한이 없습니다.", "Nothing in here. Upload something!" => "내용이 없습니다. 업로드할 수 있습니다!", "Download" => "다운로드", "Unshare" => "공유 해제", diff --git a/apps/files/l10n/ug.php b/apps/files/l10n/ug.php new file mode 100644 index 00000000000..1bcd78be5ae --- /dev/null +++ b/apps/files/l10n/ug.php @@ -0,0 +1,44 @@ + "%s يۆتكىيەلمەيدۇ", +"Unable to rename file" => "ھۆججەت ئاتىنى ئۆزگەرتكىلى بولمايدۇ", +"No file was uploaded. Unknown error" => "ھېچقانداق ھۆججەت يۈكلەنمىدى. يوچۇن خاتالىق", +"No file was uploaded" => "ھېچقانداق ھۆججەت يۈكلەنمىدى", +"Missing a temporary folder" => "ۋاقىتلىق قىسقۇچ كەم.", +"Failed to write to disk" => "دىسكىغا يازالمىدى", +"Not enough storage available" => "يېتەرلىك ساقلاش بوشلۇقى يوق", +"Files" => "ھۆججەتلەر", +"Share" => "ھەمبەھىر", +"Delete permanently" => "مەڭگۈلۈك ئۆچۈر", +"Delete" => "ئۆچۈر", +"Rename" => "ئات ئۆزگەرت", +"Pending" => "كۈتۈۋاتىدۇ", +"{new_name} already exists" => "{new_name} مەۋجۇت", +"replace" => "ئالماشتۇر", +"suggest name" => "تەۋسىيە ئات", +"cancel" => "ۋاز كەچ", +"undo" => "يېنىۋال", +"1 file uploading" => "1 ھۆججەت يۈكلىنىۋاتىدۇ", +"files uploading" => "ھۆججەت يۈكلىنىۋاتىدۇ", +"Not enough space available" => "يېتەرلىك بوشلۇق يوق", +"Upload cancelled." => "يۈكلەشتىن ۋاز كەچتى.", +"File upload is in progress. Leaving the page now will cancel the upload." => "ھۆججەت يۈكلەش مەشغۇلاتى ئېلىپ بېرىلىۋاتىدۇ. Leaving the page now will cancel the upload.", +"Error" => "خاتالىق", +"Name" => "ئاتى", +"Size" => "چوڭلۇقى", +"Modified" => "ئۆزگەرتكەن", +"1 folder" => "1 قىسقۇچ", +"1 file" => "1 ھۆججەت", +"{count} files" => "{count} ھۆججەت", +"Upload" => "يۈكلە", +"Save" => "ساقلا", +"New" => "يېڭى", +"Text file" => "تېكىست ھۆججەت", +"Folder" => "قىسقۇچ", +"Deleted files" => "ئۆچۈرۈلگەن ھۆججەتلەر", +"Cancel upload" => "يۈكلەشتىن ۋاز كەچ", +"Nothing in here. Upload something!" => "بۇ جايدا ھېچنېمە يوق. Upload something!", +"Download" => "چۈشۈر", +"Unshare" => "ھەمبەھىرلىمە", +"Upload too large" => "يۈكلەندىغىنى بەك چوڭ", +"Upgrading filesystem cache..." => "ھۆججەت سىستېما غەملىكىنى يۈكسەلدۈرۈۋاتىدۇ…" +); diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index fe172996c7c..77df2b0db41 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -1,5 +1,5 @@ "Không thể di chuyển %s - Đã có tên file này trên hệ thống", +"Could not move %s - File with this name already exists" => "Không thể di chuyển %s - Đã có tên tập tin này trên hệ thống", "Could not move %s" => "Không thể di chuyển %s", "Unable to rename file" => "Không thể đổi tên file", "No file was uploaded. Unknown error" => "Không có tập tin nào được tải lên. Lỗi không xác định", @@ -34,6 +34,7 @@ "Your storage is almost full ({usedSpacePercent}%)" => "Your storage is almost full ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Your download is being prepared. This might take some time if the files are big.", "Unable to upload your file as it is a directory or has 0 bytes" => "Không thể tải lên tập tin của bạn ,nó như là một thư mục hoặc có 0 byte", +"Not enough space available" => "Không đủ chỗ trống cần thiết", "Upload cancelled." => "Hủy tải lên", "File upload is in progress. Leaving the page now will cancel the upload." => "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này.", "URL cannot be empty." => "URL không được để trống.", @@ -61,6 +62,7 @@ "From link" => "Từ liên kết", "Deleted files" => "File đã bị xóa", "Cancel upload" => "Hủy upload", +"You don’t have write permissions here." => "Bạn không có quyền ghi vào đây.", "Nothing in here. Upload something!" => "Không có gì ở đây .Hãy tải lên một cái gì đó !", "Download" => "Tải về", "Unshare" => "Bỏ chia sẻ", @@ -68,5 +70,5 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Các tập tin bạn đang tải lên vượt quá kích thước tối đa cho phép trên máy chủ .", "Files are being scanned, please wait." => "Tập tin đang được quét ,vui lòng chờ.", "Current scanning" => "Hiện tại đang quét", -"Upgrading filesystem cache..." => "Upgrading filesystem cache..." +"Upgrading filesystem cache..." => "Đang nâng cấp bộ nhớ đệm cho tập tin hệ thống..." ); diff --git a/apps/files_encryption/l10n/ug.php b/apps/files_encryption/l10n/ug.php new file mode 100644 index 00000000000..34eeb373b3e --- /dev/null +++ b/apps/files_encryption/l10n/ug.php @@ -0,0 +1,7 @@ + "شىفىرلاش", +"File encryption is enabled." => "ھۆججەت شىفىرلاش قوزغىتىلدى.", +"The following file types will not be encrypted:" => "تۆۋەندىكى ھۆججەت تىپلىرى شىفىرلانمايدۇ:", +"Exclude the following file types from encryption:" => "تۆۋەندىكى ھۆججەت تىپلىرى شىفىرلاشنىڭ سىرتىدا:", +"None" => "يوق" +); diff --git a/apps/files_external/l10n/de_DE.php b/apps/files_external/l10n/de_DE.php index 8a8ae37ffd2..9b7ab4d53ca 100644 --- a/apps/files_external/l10n/de_DE.php +++ b/apps/files_external/l10n/de_DE.php @@ -20,7 +20,7 @@ "Users" => "Benutzer", "Delete" => "Löschen", "Enable User External Storage" => "Externen Speicher für Benutzer aktivieren", -"Allow users to mount their own external storage" => "Erlaubt Benutzern ihre eigenen externen Speicher einzubinden", +"Allow users to mount their own external storage" => "Erlaubt Benutzern, ihre eigenen externen Speicher einzubinden", "SSL root certificates" => "SSL-Root-Zertifikate", "Import Root Certificate" => "Root-Zertifikate importieren" ); diff --git a/apps/files_external/l10n/pt_PT.php b/apps/files_external/l10n/pt_PT.php index aac3c1c2ca0..0a05d1f8825 100644 --- a/apps/files_external/l10n/pt_PT.php +++ b/apps/files_external/l10n/pt_PT.php @@ -6,6 +6,7 @@ "Error configuring Google Drive storage" => "Erro ao configurar o armazenamento do Google Drive", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Atenção: O cliente \"smbclient\" não está instalado. Não é possível montar as partilhas CIFS/SMB . Peça ao seu administrador para instalar.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Aviso: O suporte FTP no PHP não está activate ou instalado. Não é possível montar as partilhas FTP. Peça ao seu administrador para instalar.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Atenção:
O suporte PHP para o Curl não está activado ou instalado. A montagem do ownCloud/WebDav ou GoolgeDriver não é possível. Por favor contacte o administrador para o instalar.", "External Storage" => "Armazenamento Externo", "Folder name" => "Nome da pasta", "External storage" => "Armazenamento Externo", diff --git a/apps/files_external/l10n/ug.php b/apps/files_external/l10n/ug.php new file mode 100644 index 00000000000..2d1dea98906 --- /dev/null +++ b/apps/files_external/l10n/ug.php @@ -0,0 +1,9 @@ + "قىسقۇچ ئاتى", +"External storage" => "سىرتقى ساقلىغۇچ", +"Configuration" => "سەپلىمە", +"Options" => "تاللانما", +"Groups" => "گۇرۇپپا", +"Users" => "ئىشلەتكۈچىلەر", +"Delete" => "ئۆچۈر" +); diff --git a/apps/files_external/l10n/vi.php b/apps/files_external/l10n/vi.php index 84f31e88924..769f9e2a097 100644 --- a/apps/files_external/l10n/vi.php +++ b/apps/files_external/l10n/vi.php @@ -6,11 +6,14 @@ "Error configuring Google Drive storage" => "Lỗi cấu hình lưu trữ Google Drive", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Cảnh báo: \"smbclient\" chưa được cài đặt. Mount CIFS/SMB shares là không thể thực hiện được. Hãy hỏi người quản trị hệ thống để cài đặt nó.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Cảnh báo: FTP trong PHP chưa được cài đặt hoặc chưa được mở. Mount FTP shares là không thể. Xin hãy yêu cầu quản trị hệ thống của bạn cài đặt nó.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Cảnh báo: Tính năng Curl trong PHP chưa được kích hoạt hoặc cài đặt. Việc gắn kết ownCloud / WebDAV hay GoogleDrive không thực hiện được. Vui lòng liên hệ người quản trị để cài đặt nó.", "External Storage" => "Lưu trữ ngoài", "Folder name" => "Tên thư mục", +"External storage" => "Lưu trữ ngoài", "Configuration" => "Cấu hình", "Options" => "Tùy chọn", "Applicable" => "Áp dụng", +"Add storage" => "Thêm bộ nhớ", "None set" => "không", "All Users" => "Tất cả người dùng", "Groups" => "Nhóm", diff --git a/apps/files_sharing/l10n/en@pirate.php b/apps/files_sharing/l10n/en@pirate.php index eb667142ab4..02ee8440487 100644 --- a/apps/files_sharing/l10n/en@pirate.php +++ b/apps/files_sharing/l10n/en@pirate.php @@ -1,3 +1,9 @@ "Secret Code" +"Password" => "Secret Code", +"Submit" => "Submit", +"%s shared the folder %s with you" => "%s shared the folder %s with you", +"%s shared the file %s with you" => "%s shared the file %s with you", +"Download" => "Download", +"No preview available for" => "No preview available for", +"web services under your control" => "web services under your control" ); diff --git a/apps/files_sharing/l10n/ug.php b/apps/files_sharing/l10n/ug.php new file mode 100644 index 00000000000..348acc4a898 --- /dev/null +++ b/apps/files_sharing/l10n/ug.php @@ -0,0 +1,5 @@ + "ئىم", +"Submit" => "تاپشۇر", +"Download" => "چۈشۈر" +); diff --git a/apps/files_trashbin/l10n/ko.php b/apps/files_trashbin/l10n/ko.php index f06c90962ea..42ad87e98d2 100644 --- a/apps/files_trashbin/l10n/ko.php +++ b/apps/files_trashbin/l10n/ko.php @@ -1,5 +1,6 @@ "오류", +"Delete permanently" => "영원히 삭제", "Name" => "이름", "1 folder" => "폴더 1개", "{count} folders" => "폴더 {count}개", diff --git a/apps/files_trashbin/l10n/ug.php b/apps/files_trashbin/l10n/ug.php new file mode 100644 index 00000000000..c369e385f74 --- /dev/null +++ b/apps/files_trashbin/l10n/ug.php @@ -0,0 +1,11 @@ + "خاتالىق", +"Delete permanently" => "مەڭگۈلۈك ئۆچۈر", +"Name" => "ئاتى", +"Deleted" => "ئۆچۈرۈلدى", +"1 folder" => "1 قىسقۇچ", +"1 file" => "1 ھۆججەت", +"{count} files" => "{count} ھۆججەت", +"Nothing in here. Your trash bin is empty!" => "بۇ جايدا ھېچنېمە يوق. Your trash bin is empty!", +"Delete" => "ئۆچۈر" +); diff --git a/apps/files_versions/l10n/ug.php b/apps/files_versions/l10n/ug.php new file mode 100644 index 00000000000..024f326b032 --- /dev/null +++ b/apps/files_versions/l10n/ug.php @@ -0,0 +1,9 @@ + "ئەسلىگە قايتۇرالمايدۇ: %s", +"success" => "مۇۋەپپەقىيەتلىك", +"File %s was reverted to version %s" => "ھۆججەت %s نى %s نەشرىگە ئەسلىگە قايتۇردى", +"failure" => "مەغلۇپ بولدى", +"No old versions available" => "كونا نەشرى يوق", +"No path specified" => "يول بەلگىلەنمىگەن", +"Versions" => "نەشرى" +); diff --git a/apps/files_versions/l10n/zh_TW.php b/apps/files_versions/l10n/zh_TW.php index a191d594523..2ae9ce657ce 100644 --- a/apps/files_versions/l10n/zh_TW.php +++ b/apps/files_versions/l10n/zh_TW.php @@ -5,7 +5,7 @@ "failure" => "失敗", "File %s could not be reverted to version %s" => "檔案 %s 無法復原至版本 %s", "No old versions available" => "沒有舊的版本", -"No path specified" => "沒有指定路線", +"No path specified" => "沒有指定路徑", "Versions" => "版本", -"Revert a file to a previous version by clicking on its revert button" => "按一按復原的按鈕,就能把一個檔案復原至以前的版本" +"Revert a file to a previous version by clicking on its revert button" => "按一下復原的按鈕即可把檔案復原至以前的版本" ); diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php index e86d877ecd7..27f5adb8b6c 100644 --- a/apps/user_ldap/l10n/de.php +++ b/apps/user_ldap/l10n/de.php @@ -1,31 +1,31 @@ "Löschen der Serverkonfiguration fehlgeschlagen", -"The configuration is valid and the connection could be established!" => "Die Konfiguration war erfolgreich, die Verbindung konnte hergestellt werden!", -"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Die Konfiguration ist gültig aber die Verbindung ist fehlgeschlagen. Bitte überprüfen Sie die Servereinstellungen und die Anmeldeinformationen.", -"The configuration is invalid. Please look in the ownCloud log for further details." => "Die Konfiguration ist ungültig, bitte sehen Sie für weitere Details im ownCloud Log nach", +"The configuration is valid and the connection could be established!" => "Die Konfiguration ist gültig und die Verbindung konnte hergestellt werden!", +"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Die Konfiguration ist gültig aber die Verbindung ist fehlgeschlagen. Bitte überprüfe die Servereinstellungen und Anmeldeinformationen.", +"The configuration is invalid. Please look in the ownCloud log for further details." => "Die Konfiguration ist ungültig, sieh für weitere Details bitte im ownCloud Log nach", "Deletion failed" => "Löschen fehlgeschlagen", "Take over settings from recent server configuration?" => "Einstellungen von letzter Konfiguration übernehmen?", "Keep settings?" => "Einstellungen beibehalten?", -"Cannot add server configuration" => "Serverkonfiguration konnte nicht hinzugefügt werden.", +"Cannot add server configuration" => "Das Hinzufügen der Serverkonfiguration schlug fehl", "Connection test succeeded" => "Verbindungstest erfolgreich", "Connection test failed" => "Verbindungstest fehlgeschlagen", -"Do you really want to delete the current Server Configuration?" => "Wollen Sie die aktuelle Serverkonfiguration wirklich löschen?", +"Do you really want to delete the current Server Configuration?" => "Möchtest Du die aktuelle Serverkonfiguration wirklich löschen?", "Confirm Deletion" => "Löschung bestätigen", -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitte Deinen Systemadministator eine der beiden Anwendungen zu deaktivieren.", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwartetem Verhalten kommen. Bitte Deinen Systemadministator eine der beiden Anwendungen zu deaktivieren.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Warnung: Da das PHP-Modul für LDAP nicht installiert ist, wird das Backend nicht funktionieren. Bitte Deinen Systemadministrator das Modul zu installieren.", "Server configuration" => "Serverkonfiguration", "Add Server Configuration" => "Serverkonfiguration hinzufügen", "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Du kannst das Protokoll auslassen, außer wenn Du SSL benötigst. Beginne dann mit ldaps://", "Base DN" => "Basis-DN", -"One Base DN per line" => "Ein Base DN pro Zeile", +"One Base DN per line" => "Ein Basis-DN pro Zeile", "You can specify Base DN for users and groups in the Advanced tab" => "Du kannst Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren", "User DN" => "Benutzer-DN", "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." => "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für anonymen Zugriff lasse DN und Passwort leer.", "Password" => "Passwort", -"For anonymous access, leave DN and Password empty." => "Lasse die Felder von DN und Passwort für anonymen Zugang leer.", +"For anonymous access, leave DN and Password empty." => "Lasse die Felder DN und Passwort für anonymen Zugang leer.", "User Login Filter" => "Benutzer-Login-Filter", -"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Bestimmt den angewendeten Filter, wenn eine Anmeldung versucht wird. %%uid ersetzt den Benutzernamen bei dem Anmeldeversuch.", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Bestimmt den angewendeten Filter, wenn eine Anmeldung versucht wird. %%uid ersetzt den Benutzernamen beim Anmeldeversuch.", "use %%uid placeholder, e.g. \"uid=%%uid\"" => "verwende %%uid Platzhalter, z. B. \"uid=%%uid\"", "User List Filter" => "Benutzer-Filter-Liste", "Defines the filter to apply, when retrieving users." => "Definiert den Filter für die Anfrage der Benutzer.", @@ -54,13 +54,13 @@ "User Display Name Field" => "Feld für den Anzeigenamen des Benutzers", "The LDAP attribute to use to generate the user`s ownCloud name." => "Das LDAP-Attribut für die Generierung des Benutzernamens in ownCloud. ", "Base User Tree" => "Basis-Benutzerbaum", -"One User Base DN per line" => "Ein Benutzer Base DN pro Zeile", +"One User Base DN per line" => "Ein Benutzer Basis-DN pro Zeile", "User Search Attributes" => "Benutzersucheigenschaften", -"Optional; one attribute per line" => "Optional; eine Eigenschaft pro Zeile", +"Optional; one attribute per line" => "Optional; ein Attribut pro Zeile", "Group Display Name Field" => "Feld für den Anzeigenamen der Gruppe", "The LDAP attribute to use to generate the groups`s ownCloud name." => "Das LDAP-Attribut für die Generierung des Gruppennamens in ownCloud. ", "Base Group Tree" => "Basis-Gruppenbaum", -"One Group Base DN per line" => "Ein Gruppen Base DN pro Zeile", +"One Group Base DN per line" => "Ein Gruppen Basis-DN pro Zeile", "Group Search Attributes" => "Gruppensucheigenschaften", "Group-Member association" => "Assoziation zwischen Gruppe und Benutzer", "Special Attributes" => "Spezielle Eigenschaften", diff --git a/apps/user_ldap/l10n/de_DE.php b/apps/user_ldap/l10n/de_DE.php index 3b5d60387a6..488d8aad7c8 100644 --- a/apps/user_ldap/l10n/de_DE.php +++ b/apps/user_ldap/l10n/de_DE.php @@ -1,31 +1,31 @@ "Das Löschen der Server-Konfiguration schlug fehl", +"Failed to delete the server configuration" => "Löschen der Serverkonfiguration fehlgeschlagen", "The configuration is valid and the connection could be established!" => "Die Konfiguration ist gültig und die Verbindung konnte hergestellt werden!", -"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Die Konfiguration ist gültig, aber das Herstellen der Verbindung schlug fehl. Bitte überprüfen Sie die Server-Einstellungen und Zertifikate.", -"The configuration is invalid. Please look in the ownCloud log for further details." => "Die Konfiguration ist ungültig. Weitere Details können Sie im ownCloud-Log nachlesen.", +"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Die Konfiguration ist gültig aber die Verbindung ist fehlgeschlagen. Bitte überprüfen Sie die Servereinstellungen und die Anmeldeinformationen.", +"The configuration is invalid. Please look in the ownCloud log for further details." => "Die Konfiguration ist ungültig, sehen Sie für weitere Details bitte im ownCloud Log nach", "Deletion failed" => "Löschen fehlgeschlagen", -"Take over settings from recent server configuration?" => "Sollen die Einstellungen der letzten Serverkonfiguration übernommen werden?", -"Keep settings?" => "Einstellungen behalten?", +"Take over settings from recent server configuration?" => "Einstellungen von letzter Konfiguration übernehmen?", +"Keep settings?" => "Einstellungen beibehalten?", "Cannot add server configuration" => "Das Hinzufügen der Serverkonfiguration schlug fehl", "Connection test succeeded" => "Verbindungstest erfolgreich", "Connection test failed" => "Verbindungstest fehlgeschlagen", -"Do you really want to delete the current Server Configuration?" => "Möchten Sie die Serverkonfiguration wirklich löschen?", +"Do you really want to delete the current Server Configuration?" => "Möchten Sie die aktuelle Serverkonfiguration wirklich löschen?", "Confirm Deletion" => "Löschung bestätigen", -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitten Sie Ihren Systemadministator eine der beiden Anwendungen zu deaktivieren.", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwartetem Verhalten kommen. Bitten Sie Ihren Systemadministator eine der beiden Anwendungen zu deaktivieren.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Warnung: Da das PHP-Modul für LDAP nicht installiert ist, wird das Backend nicht funktionieren. Bitten Sie Ihren Systemadministrator das Modul zu installieren.", "Server configuration" => "Serverkonfiguration", "Add Server Configuration" => "Serverkonfiguration hinzufügen", "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Sie können das Protokoll auslassen, außer wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://", "Base DN" => "Basis-DN", -"One Base DN per line" => "Ein Base DN pro Zeile", +"One Base DN per line" => "Ein Basis-DN pro Zeile", "You can specify Base DN for users and groups in the Advanced tab" => "Sie können Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren", "User DN" => "Benutzer-DN", "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." => "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für einen anonymen Zugriff lassen Sie DN und Passwort leer.", "Password" => "Passwort", -"For anonymous access, leave DN and Password empty." => "Lassen Sie die Felder von DN und Passwort für einen anonymen Zugang leer.", +"For anonymous access, leave DN and Password empty." => "Lassen Sie die Felder DN und Passwort für einen anonymen Zugang leer.", "User Login Filter" => "Benutzer-Login-Filter", -"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Bestimmt den angewendeten Filter, wenn eine Anmeldung durchgeführt wird. %%uid ersetzt den Benutzernamen bei dem Anmeldeversuch.", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Bestimmt den angewendeten Filter, wenn eine Anmeldung durchgeführt wird. %%uid ersetzt den Benutzernamen beim Anmeldeversuch.", "use %%uid placeholder, e.g. \"uid=%%uid\"" => "verwenden Sie %%uid Platzhalter, z. B. \"uid=%%uid\"", "User List Filter" => "Benutzer-Filter-Liste", "Defines the filter to apply, when retrieving users." => "Definiert den Filter für die Anfrage der Benutzer.", @@ -37,12 +37,12 @@ "Configuration Active" => "Konfiguration aktiv", "When unchecked, this configuration will be skipped." => "Wenn nicht angehakt, wird diese Konfiguration übersprungen.", "Port" => "Port", -"Backup (Replica) Host" => "Back-Up (Replikation) Host", -"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Geben Sie einen optionalen Backup-Host an. Es muss ein Replikat des Haupt-LDAP/AD Servers sein.", -"Backup (Replica) Port" => "Back-Up (Replikation) Port", +"Backup (Replica) Host" => "Backup Host (Kopie)", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Geben Sie einen optionalen Backup Host an. Es muss sich um eine Kopie des Haupt LDAP/AD Servers handeln.", +"Backup (Replica) Port" => "Backup Port", "Disable Main Server" => "Hauptserver deaktivieren", -"When switched on, ownCloud will only connect to the replica server." => "Wenn eingeschaltet, wird sich die ownCloud nur mit dem Replikat-Server verbinden.", -"Use TLS" => "Benutze TLS", +"When switched on, ownCloud will only connect to the replica server." => "Wenn aktiviert, wird ownCloud ausschließlich den Backupserver verwenden.", +"Use TLS" => "Nutze TLS", "Do not use it additionally for LDAPS connections, it will fail." => "Benutzen Sie es nicht in Verbindung mit LDAPS Verbindungen, es wird fehlschlagen.", "Case insensitve LDAP server (Windows)" => "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)", "Turn off SSL certificate validation." => "Schalten Sie die SSL-Zertifikatsprüfung aus.", @@ -50,20 +50,20 @@ "Not recommended, use for testing only." => "Nicht empfohlen, nur zu Testzwecken.", "Cache Time-To-Live" => "Speichere Time-To-Live zwischen", "in seconds. A change empties the cache." => "in Sekunden. Eine Änderung leert den Cache.", -"Directory Settings" => "Verzeichniseinstellungen", +"Directory Settings" => "Ordnereinstellungen", "User Display Name Field" => "Feld für den Anzeigenamen des Benutzers", "The LDAP attribute to use to generate the user`s ownCloud name." => "Das LDAP-Attribut für die Generierung des Benutzernamens in ownCloud. ", "Base User Tree" => "Basis-Benutzerbaum", -"One User Base DN per line" => "Ein Benutzer Base DN pro Zeile", -"User Search Attributes" => "Eigenschaften der Benutzer-Suche", +"One User Base DN per line" => "Ein Benutzer Basis-DN pro Zeile", +"User Search Attributes" => "Benutzersucheigenschaften", "Optional; one attribute per line" => "Optional; ein Attribut pro Zeile", "Group Display Name Field" => "Feld für den Anzeigenamen der Gruppe", "The LDAP attribute to use to generate the groups`s ownCloud name." => "Das LDAP-Attribut für die Generierung des Gruppennamens in ownCloud. ", "Base Group Tree" => "Basis-Gruppenbaum", -"One Group Base DN per line" => "Ein Gruppen Base DN pro Zeile", -"Group Search Attributes" => "Eigenschaften der Gruppen-Suche", +"One Group Base DN per line" => "Ein Gruppen Basis-DN pro Zeile", +"Group Search Attributes" => "Gruppensucheigenschaften", "Group-Member association" => "Assoziation zwischen Gruppe und Benutzer", -"Special Attributes" => "Besondere Eigenschaften", +"Special Attributes" => "Spezielle Eigenschaften", "Quota Field" => "Kontingent-Feld", "Quota Default" => "Standard-Kontingent", "in bytes" => "in Bytes", diff --git a/apps/user_ldap/l10n/ja_JP.php b/apps/user_ldap/l10n/ja_JP.php index 3ae7d2e6392..8239ecf3cc9 100644 --- a/apps/user_ldap/l10n/ja_JP.php +++ b/apps/user_ldap/l10n/ja_JP.php @@ -70,6 +70,6 @@ "Email Field" => "メールフィールド", "User Home Folder Naming Rule" => "ユーザのホームフォルダ命名規則", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "ユーザ名を空のままにしてください(デフォルト)。そうでない場合は、LDAPもしくはADの属性を指定してください。", -"Test Configuration" => "テスト設定", +"Test Configuration" => "設定をテスト", "Help" => "ヘルプ" ); diff --git a/apps/user_ldap/l10n/ug.php b/apps/user_ldap/l10n/ug.php new file mode 100644 index 00000000000..05a7a3f9a06 --- /dev/null +++ b/apps/user_ldap/l10n/ug.php @@ -0,0 +1,13 @@ + "ئۆچۈرۈش مەغلۇپ بولدى", +"Host" => "باش ئاپپارات", +"Password" => "ئىم", +"User Login Filter" => "ئىشلەتكۈچى تىزىمغا كىرىش سۈزگۈچى", +"User List Filter" => "ئىشلەتكۈچى تىزىم سۈزگۈچى", +"Group Filter" => "گۇرۇپپا سۈزگۈچ", +"Connection Settings" => "باغلىنىش تەڭشىكى", +"Configuration Active" => "سەپلىمە ئاكتىپ", +"Port" => "ئېغىز", +"Use TLS" => "TLS ئىشلەت", +"Help" => "ياردەم" +); diff --git a/apps/user_webdavauth/l10n/ug.php b/apps/user_webdavauth/l10n/ug.php new file mode 100644 index 00000000000..03ced5f4aa2 --- /dev/null +++ b/apps/user_webdavauth/l10n/ug.php @@ -0,0 +1,4 @@ + "WebDAV سالاھىيەت دەلىللەش", +"URL: http://" => "URL: http://" +); diff --git a/apps/user_webdavauth/l10n/zh_TW.php b/apps/user_webdavauth/l10n/zh_TW.php index 7a9d767eec1..6f94b77ac57 100644 --- a/apps/user_webdavauth/l10n/zh_TW.php +++ b/apps/user_webdavauth/l10n/zh_TW.php @@ -1,5 +1,5 @@ "WebDAV 認證", "URL: http://" => "網址:http://", -"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud會將把用戶的證件發送到這個網址。這個插件會檢查回應,並把HTTP狀態代碼401和403視為無效證件和所有其他回應視為有效證件。" +"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud 會將把用戶的登入資訊發送到這個網址以嘗試登入,並檢查回應, HTTP 狀態碼401和403視為登入失敗,所有其他回應視為登入成功。" ); diff --git a/core/l10n/de.php b/core/l10n/de.php index 6a77757d31a..b53bda109dd 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -125,6 +125,7 @@ "Database host" => "Datenbank-Host", "Finish setup" => "Installation abschließen", "web services under your control" => "Web-Services unter Deiner Kontrolle", +"%s is available. Get more information on how to update." => "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein.", "Log out" => "Abmelden", "Automatic logon rejected!" => "Automatischer Login zurückgewiesen!", "If you did not change your password recently, your account may be compromised!" => "Wenn Du Dein Passwort nicht vor kurzem geändert hast, könnte Dein\nAccount kompromittiert sein!", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index 397bd2e6277..7e9b64193c6 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -92,7 +92,7 @@ "Request failed!
Did you make sure your email/username was right?" => "Anfrage fehlgeschlagen!
Haben Sie darauf geachtet, dass E-Mail-Adresse/Nutzername korrekt waren?", "You will receive a link to reset your password via Email." => "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen.", "Username" => "Benutzername", -"Request reset" => "Zurücksetzung beantragen", +"Request reset" => "Zurücksetzung anfordern", "Your password was reset" => "Ihr Passwort wurde zurückgesetzt.", "To login page" => "Zur Login-Seite", "New password" => "Neues Passwort", @@ -125,7 +125,7 @@ "Database host" => "Datenbank-Host", "Finish setup" => "Installation abschließen", "web services under your control" => "Web-Services unter Ihrer Kontrolle", -"%s is available. Get more information on how to update." => "%s ist nicht verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein.", +"%s is available. Get more information on how to update." => "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein.", "Log out" => "Abmelden", "Automatic logon rejected!" => "Automatische Anmeldung verweigert!", "If you did not change your password recently, your account may be compromised!" => "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAccount kompromittiert sein!", diff --git a/core/l10n/en@pirate.php b/core/l10n/en@pirate.php index 482632f3fda..981d9a1ca0f 100644 --- a/core/l10n/en@pirate.php +++ b/core/l10n/en@pirate.php @@ -1,3 +1,5 @@ "Passcode" +"User %s shared a file with you" => "User %s shared a file with you", +"Password" => "Passcode", +"web services under your control" => "web services under your control" ); diff --git a/core/l10n/es.php b/core/l10n/es.php index e0ccfd059de..d99ac861cea 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -3,11 +3,11 @@ "User %s shared a folder with you" => "El usuario %s ha compartido una carpeta contigo.", "User %s shared the file \"%s\" with you. It is available for download here: %s" => "El usuario %s ha compartido el archivo \"%s\" contigo. Puedes descargarlo aquí: %s.", "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "El usuario %s ha compartido la carpeta \"%s\" contigo. Puedes descargarla aquí: %s.", -"Category type not provided." => "Tipo de categoria no proporcionado.", +"Category type not provided." => "Tipo de categoría no proporcionado.", "No category to add?" => "¿Ninguna categoría para añadir?", -"This category already exists: %s" => "Esta categoria ya existe: %s", -"Object type not provided." => "ipo de objeto no proporcionado.", -"%s ID not provided." => "%s ID no proporcionado.", +"This category already exists: %s" => "Ya existe esta categoría: %s", +"Object type not provided." => "Tipo de objeto no proporcionado.", +"%s ID not provided." => "ID de %s no proporcionado.", "Error adding %s to favorites." => "Error añadiendo %s a los favoritos.", "No categories selected for deletion." => "No hay categorías seleccionadas para borrar.", "Error removing %s from favorites." => "Error eliminando %s de los favoritos.", @@ -39,20 +39,20 @@ "today" => "hoy", "yesterday" => "ayer", "{days} days ago" => "hace {days} días", -"last month" => "mes pasado", +"last month" => "el mes pasado", "{months} months ago" => "Hace {months} meses", "months ago" => "hace meses", -"last year" => "año pasado", +"last year" => "el año pasado", "years ago" => "hace años", "Ok" => "Aceptar", "Cancel" => "Cancelar", "Choose" => "Seleccionar", "Yes" => "Sí", "No" => "No", -"The object type is not specified." => "El tipo de objeto no se ha especificado.", +"The object type is not specified." => "No se ha especificado el tipo de objeto", "Error" => "Error", -"The app name is not specified." => "El nombre de la app no se ha especificado.", -"The required file {file} is not installed!" => "El fichero {file} requerido, no está instalado.", +"The app name is not specified." => "No se ha especificado el nombre de la aplicación.", +"The required file {file} is not installed!" => "¡El fichero requerido {file} no está instalado!", "Shared" => "Compartido", "Share" => "Compartir", "Error while sharing" => "Error compartiendo", @@ -68,15 +68,15 @@ "Send" => "Enviar", "Set expiration date" => "Establecer fecha de caducidad", "Expiration date" => "Fecha de caducidad", -"Share via email:" => "compartido via e-mail:", +"Share via email:" => "Compartido por correo electrónico:", "No people found" => "No se encontró gente", "Resharing is not allowed" => "No se permite compartir de nuevo", "Shared in {item} with {user}" => "Compartido en {item} con {user}", -"Unshare" => "No compartir", +"Unshare" => "Dejar de compartir", "can edit" => "puede editar", "access control" => "control de acceso", "create" => "crear", -"update" => "modificar", +"update" => "actualizar", "delete" => "eliminar", "share" => "compartir", "Password protected" => "Protegido por contraseña", @@ -84,16 +84,16 @@ "Error setting expiration date" => "Error estableciendo fecha de caducidad", "Sending ..." => "Enviando...", "Email sent" => "Correo electrónico enviado", -"The update was unsuccessful. Please report this issue to the ownCloud community." => "La actualización ha fracasado. Por favor, informe este problema a la Comunidad de ownCloud.", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "La actualización ha fracasado. Por favor, informe de este problema a la Comunidad de ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "La actualización se ha realizado correctamente. Redireccionando a ownCloud ahora.", -"ownCloud password reset" => "Reiniciar contraseña de ownCloud", +"ownCloud password reset" => "Restablecer contraseña de ownCloud", "Use the following link to reset your password: {link}" => "Utiliza el siguiente enlace para restablecer tu contraseña: {link}", -"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "El enlace para restablecer la contraseña ha sido enviada a su correo electrónico.
Si no lo recibe en un plazo razonable de tiempo, revise su spam / carpetas no deseados.
Si no está allí pregunte a su administrador local.", -"Request failed!
Did you make sure your email/username was right?" => "Petición ha fallado!
¿Usted asegúrese que su dirección de correo electrónico / nombre de usuario estaba justo?", -"You will receive a link to reset your password via Email." => "Recibirás un enlace por correo electrónico para restablecer tu contraseña", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "El enlace para restablecer la contraseña ha sido enviada a su correo electrónico.
Si no lo recibe en un plazo razonable de tiempo, revise su carpeta de spam / correo no deseado.
Si no está allí, pregunte a su administrador local.", +"Request failed!
Did you make sure your email/username was right?" => "La petición ha fallado!
¿Está seguro de que su dirección de correo electrónico o nombre de usuario era correcto?", +"You will receive a link to reset your password via Email." => "Recibirá un enlace por correo electrónico para restablecer su contraseña", "Username" => "Nombre de usuario", "Request reset" => "Solicitar restablecimiento", -"Your password was reset" => "Tu contraseña se ha restablecido", +"Your password was reset" => "Su contraseña ha sido establecida", "To login page" => "A la página de inicio de sesión", "New password" => "Nueva contraseña", "Reset password" => "Restablecer contraseña", @@ -108,12 +108,12 @@ "Add" => "Agregar", "Security Warning" => "Advertencia de seguridad", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "La versión de PHP es vulnerable al ataque de Byte NULL (CVE-2006-7243)", -"Please update your PHP installation to use ownCloud securely." => "Por favor, actualice su instalación de PHP para utilizar ownCloud en forma segura.", +"Please update your PHP installation to use ownCloud securely." => "Por favor, actualice su instalación de PHP para utilizar ownCloud de manera segura.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "No está disponible un generador de números aleatorios seguro, por favor habilite la extensión OpenSSL de PHP.", -"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sin un generador de números aleatorios seguro un atacante podría predecir los tokens de reinicio de su contraseña y tomar control de su cuenta.", -"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Su directorio de datos y sus archivos están probablemente accesibles a través de internet ya que el archivo .htaccess no está funcionando.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sin un generador de números aleatorios seguro, un atacante podría predecir los tokens de restablecimiento de contraseñas y tomar el control de su cuenta.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Probablemente su directorio de datos y sus archivos sean accesibles a través de internet ya que el archivo .htaccess no funciona.", "For information how to properly configure your server, please see the
documentation." => "Para información sobre cómo configurar adecuadamente su servidor, por favor vea la documentación.", -"Create an admin account" => "Crea una cuenta de administrador", +"Create an admin account" => "Crear una cuenta de administrador", "Advanced" => "Avanzado", "Data folder" => "Directorio de almacenamiento", "Configure the database" => "Configurar la base de datos", @@ -125,13 +125,13 @@ "Database host" => "Host de la base de datos", "Finish setup" => "Completar la instalación", "web services under your control" => "Servicios web bajo su control", -"%s is available. Get more information on how to update." => "%s esta disponible. Obtén mas información de como actualizar.", +"%s is available. Get more information on how to update." => "%s esta disponible. Obtener mas información de como actualizar.", "Log out" => "Salir", "Automatic logon rejected!" => "¡Inicio de sesión automático rechazado!", "If you did not change your password recently, your account may be compromised!" => "Si usted no ha cambiado su contraseña recientemente, ¡puede que su cuenta esté comprometida!", "Please change your password to secure your account again." => "Por favor cambie su contraseña para asegurar su cuenta nuevamente.", -"Lost your password?" => "¿Has perdido tu contraseña?", -"remember" => "recuérdame", +"Lost your password?" => "¿Ha perdido su contraseña?", +"remember" => "recordarme", "Log in" => "Entrar", "Alternative Logins" => "Nombre de usuarios alternativos", "prev" => "anterior", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index c8f60a678f9..84ea35abcf2 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -125,6 +125,7 @@ "Database host" => "Serveur de la base de données", "Finish setup" => "Terminer l'installation", "web services under your control" => "services web sous votre contrôle", +"%s is available. Get more information on how to update." => "%s est disponible. Obtenez plus d'informations sur la façon de mettre à jour.", "Log out" => "Se déconnecter", "Automatic logon rejected!" => "Connexion automatique rejetée !", "If you did not change your password recently, your account may be compromised!" => "Si vous n'avez pas changé votre mot de passe récemment, votre compte risque d'être compromis !", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 1e73aa58908..783fe288ba3 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -110,7 +110,7 @@ "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "あなたのPHPのバージョンには、Null Byte攻撃(CVE-2006-7243)という脆弱性が含まれています。", "Please update your PHP installation to use ownCloud securely." => "ownCloud を安全に利用するに、PHPの更新を行なってください。", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "セキュアな乱数生成器が利用可能ではありません。PHPのOpenSSL拡張を有効にして下さい。", -"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "セキュアな乱数生成器が無い場合、攻撃者はパスワードリセットのトークンを予測してアカウントを乗っ取られる可能性があります。", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "セキュアな乱数生成器が無い場合、攻撃者がパスワードリセットのトークンを予測してアカウントを乗っ取られる可能性があります。", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => ".htaccess ファイルが動作していないため、おそらくあなたのデータディレクトリもしくはファイルはインターネットからアクセス可能です。", "For information how to properly configure your server, please see the documentation." => "あなたのサーバの適切な設定に関する情報として、ドキュメントを参照して下さい。", "Create an admin account" => "管理者アカウントを作成してください", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index 05ae35cc3d1..85b76fe6948 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -1,4 +1,6 @@ "Vartotojas %s pasidalino su jumis failu", +"User %s shared a folder with you" => "Vartotojas %s su jumis pasidalino aplanku", "No category to add?" => "Nepridėsite jokios kategorijos?", "No categories selected for deletion." => "Trynimui nepasirinkta jokia kategorija.", "Sunday" => "Sekmadienis", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index 0b2af90d1d5..1084fc618f7 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -88,6 +88,8 @@ "The update was successful. Redirecting you to ownCloud now." => "A actualização foi concluída com sucesso. Vai ser redireccionado para o ownCloud agora.", "ownCloud password reset" => "Reposição da password ownCloud", "Use the following link to reset your password: {link}" => "Use o seguinte endereço para repor a sua password: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "O link para fazer reset à sua password foi enviado para o seu e-mail.
Se não o recebeu dentro um espaço de tempo aceitável, por favor verifique a sua pasta de SPAM.
Se não o encontrar, por favor contacte o seu administrador.", +"Request failed!
Did you make sure your email/username was right?" => "O pedido falhou!
Tem a certeza que introduziu o seu email/username correcto?", "You will receive a link to reset your password via Email." => "Vai receber um endereço para repor a sua password", "Username" => "Nome de utilizador", "Request reset" => "Pedir reposição", @@ -123,6 +125,7 @@ "Database host" => "Anfitrião da base de dados", "Finish setup" => "Acabar instalação", "web services under your control" => "serviços web sob o seu controlo", +"%s is available. Get more information on how to update." => "%s está disponível. Tenha mais informações como actualizar.", "Log out" => "Sair", "Automatic logon rejected!" => "Login automático rejeitado!", "If you did not change your password recently, your account may be compromised!" => "Se não mudou a sua palavra-passe recentemente, a sua conta pode ter sido comprometida!", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index d9f124b2b49..6a2d0aa5ece 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -125,6 +125,7 @@ "Database host" => "Server databázy", "Finish setup" => "Dokončiť inštaláciu", "web services under your control" => "webové služby pod Vašou kontrolou", +"%s is available. Get more information on how to update." => "%s je dostupná. Získajte viac informácií k postupu aktualizáce.", "Log out" => "Odhlásiť", "Automatic logon rejected!" => "Automatické prihlásenie bolo zamietnuté!", "If you did not change your password recently, your account may be compromised!" => "V nedávnej dobe ste nezmenili svoje heslo, Váš účet môže byť kompromitovaný.", diff --git a/core/l10n/ug.php b/core/l10n/ug.php new file mode 100644 index 00000000000..4727e37debd --- /dev/null +++ b/core/l10n/ug.php @@ -0,0 +1,48 @@ + "يەكشەنبە", +"Monday" => "دۈشەنبە", +"Tuesday" => "سەيشەنبە", +"Wednesday" => "چارشەنبە", +"Thursday" => "پەيشەنبە", +"Friday" => "جۈمە", +"Saturday" => "شەنبە", +"January" => "قەھرىتان", +"February" => "ھۇت", +"March" => "نەۋرۇز", +"April" => "ئۇمۇت", +"May" => "باھار", +"June" => "سەپەر", +"July" => "چىللە", +"August" => "تومۇز", +"September" => "مىزان", +"October" => "ئوغۇز", +"November" => "ئوغلاق", +"December" => "كۆنەك", +"Settings" => "تەڭشەكلەر", +"1 minute ago" => "1 مىنۇت ئىلگىرى", +"1 hour ago" => "1 سائەت ئىلگىرى", +"today" => "بۈگۈن", +"yesterday" => "تۈنۈگۈن", +"Ok" => "جەزملە", +"Cancel" => "ۋاز كەچ", +"Yes" => "ھەئە", +"No" => "ياق", +"Error" => "خاتالىق", +"Share" => "ھەمبەھىر", +"Share with" => "ھەمبەھىر", +"Password" => "ئىم", +"Send" => "يوللا", +"Unshare" => "ھەمبەھىرلىمە", +"delete" => "ئۆچۈر", +"share" => "ھەمبەھىر", +"Username" => "ئىشلەتكۈچى ئاتى", +"New password" => "يېڭى ئىم", +"Personal" => "شەخسىي", +"Users" => "ئىشلەتكۈچىلەر", +"Apps" => "ئەپلەر", +"Help" => "ياردەم", +"Add" => "قوش", +"Advanced" => "ئالىي", +"Finish setup" => "تەڭشەك تامام", +"Log out" => "تىزىمدىن چىق" +); diff --git a/core/l10n/vi.php b/core/l10n/vi.php index 0b45fa69313..31c4a37545c 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -88,6 +88,8 @@ "The update was successful. Redirecting you to ownCloud now." => "Cập nhật thành công .Hệ thống sẽ đưa bạn tới ownCloud.", "ownCloud password reset" => "Khôi phục mật khẩu Owncloud ", "Use the following link to reset your password: {link}" => "Dùng đường dẫn sau để khôi phục lại mật khẩu : {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Liên kết tạo lại mật khẩu đã được gửi tới hộp thư của bạn.
Nếu bạn không thấy nó sau một khoảng thời gian, vui lòng kiểm tra trong thư mục Spam/Rác.
Nếu vẫn không thấy, vui lòng hỏi người quản trị hệ thống.", +"Request failed!
Did you make sure your email/username was right?" => "Yêu cầu thất bại!
Bạn có chắc là email/tên đăng nhập của bạn chính xác?", "You will receive a link to reset your password via Email." => "Vui lòng kiểm tra Email để khôi phục lại mật khẩu.", "Username" => "Tên đăng nhập", "Request reset" => "Yêu cầu thiết lập lại ", @@ -105,6 +107,8 @@ "Edit categories" => "Sửa chuyên mục", "Add" => "Thêm", "Security Warning" => "Cảnh bảo bảo mật", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Phiên bản PHP của bạn có lỗ hổng NULL Byte attack (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "Vui lòng cập nhật bản cài đặt PHP để sử dụng ownCloud một cách an toàn.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Không an toàn ! chức năng random number generator đã có sẵn ,vui lòng bật PHP OpenSSL extension.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Nếu không có random number generator , Hacker có thể thiết lập lại mật khẩu và chiếm tài khoản của bạn.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Thư mục và file dữ liệu của bạn có thể được truy cập từ internet bởi vì file .htaccess không hoạt động", @@ -121,6 +125,7 @@ "Database host" => "Database host", "Finish setup" => "Cài đặt hoàn tất", "web services under your control" => "dịch vụ web dưới sự kiểm soát của bạn", +"%s is available. Get more information on how to update." => "%s còn trống. Xem thêm thông tin cách cập nhật.", "Log out" => "Đăng xuất", "Automatic logon rejected!" => "Tự động đăng nhập đã bị từ chối !", "If you did not change your password recently, your account may be compromised!" => "Nếu bạn không thay đổi mật khẩu gần đây của bạn, tài khoản của bạn có thể gặp nguy hiểm!", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 0b6f0dfbdb5..c37f7b2602b 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -88,6 +88,8 @@ "The update was successful. Redirecting you to ownCloud now." => "更新成功。正在重定向至 ownCloud。", "ownCloud password reset" => "重置 ownCloud 密码", "Use the following link to reset your password: {link}" => "使用以下链接重置您的密码:{link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "重置密码的链接已发送到您的邮箱。
如果您觉得在合理的时间内还未收到邮件,请查看 spam/junk 目录。
如果没有在那里,请询问您的本地管理员。", +"Request failed!
Did you make sure your email/username was right?" => "请求失败
您确定您的邮箱/用户名是正确的?", "You will receive a link to reset your password via Email." => "您将会收到包含可以重置密码链接的邮件。", "Username" => "用户名", "Request reset" => "请求重置", @@ -123,6 +125,7 @@ "Database host" => "数据库主机", "Finish setup" => "安装完成", "web services under your control" => "您控制的web服务", +"%s is available. Get more information on how to update." => "%s 可用。获取更多关于如何升级的信息。", "Log out" => "注销", "Automatic logon rejected!" => "自动登录被拒绝!", "If you did not change your password recently, your account may be compromised!" => "如果您没有最近修改您的密码,您的帐户可能会受到影响!", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index cfc3a9fe332..6537e6dff07 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -88,6 +88,8 @@ "The update was successful. Redirecting you to ownCloud now." => "升級成功,正將您重新導向至 ownCloud 。", "ownCloud password reset" => "ownCloud 密碼重設", "Use the following link to reset your password: {link}" => "請至以下連結重設您的密碼: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "重設密碼的連結已經寄至您的電子郵件信箱,如果您過了一段時間還是沒有收到它,請檢查看看它是不是被放到垃圾郵件了,如果還是沒有的話,請聯絡您的 ownCloud 系統管理員。", +"Request failed!
Did you make sure your email/username was right?" => "請求失敗!
您確定填入的電子郵件地址或是帳號名稱是正確的嗎?", "You will receive a link to reset your password via Email." => "重設密碼的連結將會寄到你的電子郵件信箱。", "Username" => "使用者名稱", "Request reset" => "請求重設", @@ -123,6 +125,7 @@ "Database host" => "資料庫主機", "Finish setup" => "完成設定", "web services under your control" => "由您控制的網路服務", +"%s is available. Get more information on how to update." => "%s 已經釋出,瞭解更多資訊以進行更新。", "Log out" => "登出", "Automatic logon rejected!" => "自動登入被拒!", "If you did not change your password recently, your account may be compromised!" => "如果您最近並未更改密碼,您的帳號可能已經遭到入侵!", diff --git a/l10n/de/core.po b/l10n/de/core.po index f882bf72085..87d896ee48a 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -4,14 +4,15 @@ # # Translators: # arkascha , 2013 +# Marcel Kühlhorn , 2013 # Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-04 01:58+0200\n" -"PO-Revision-Date: 2013-05-03 21:50+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-11 17:20+0000\n" +"Last-Translator: Marcel Kühlhorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -565,7 +566,7 @@ msgstr "Web-Services unter Deiner Kontrolle" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/de/files.po b/l10n/de/files.po index 19a6349e68c..5a0a81b37da 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Marcel Kühlhorn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-09 21:00+0000\n" +"Last-Translator: Marcel Kühlhorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,16 +21,16 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "%s konnte nicht verschoben werden - eine Datei mit diesem Namen existiert bereits." +msgstr "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert bereits" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "%s konnte nicht verschoben werden" +msgstr "Konnte %s nicht verschieben" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "Die Datei konnte nicht umbenannt werden" +msgstr "Konnte Datei nicht umbenennen" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" @@ -37,7 +38,7 @@ msgstr "Keine Datei hochgeladen. Unbekannter Fehler" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich übertragen." +msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." #: ajax/upload.php:27 msgid "" @@ -68,7 +69,7 @@ msgstr "Fehler beim Schreiben auf die Festplatte" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "Nicht genug Speicherplatz verfügbar" +msgstr "Nicht genug Speicher vorhanden." #: ajax/upload.php:83 msgid "Invalid directory." @@ -86,7 +87,7 @@ msgstr "Teilen" msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Löschen" @@ -108,7 +109,7 @@ msgstr "ersetzen" #: js/filelist.js:252 msgid "suggest name" -msgstr "Name vorschlagen" +msgstr "Namen vorschlagen" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" @@ -128,7 +129,7 @@ msgstr "Löschvorgang ausführen" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "Eine Datei wird hoch geladen" +msgstr "1 Datei wird hochgeladen" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" @@ -150,72 +151,72 @@ msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Ihr Speicherplatz ist voll, Dateien können nicht mehr aktualisiert oder synchronisiert werden!" +msgstr "Dein Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Ihr Speicherplatz ist fast aufgebraucht ({usedSpacePercent}%)" +msgstr "Dein Speicher ist fast voll ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Dein Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist." +msgstr "Deine Datei kann nicht hochgeladen werden, weil es sich um einen Ordner handelt oder 0 Bytes groß ist." -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Nicht genug Speicherplatz verfügbar" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "Die URL darf nicht leer sein." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten." -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Fehler" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Name" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Größe" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Geändert" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 Datei" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} Dateien" @@ -279,37 +280,37 @@ msgstr "Gelöschte Dateien" msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." -msgstr "Du besitzt hier keine Schreib-Berechtigung." +msgstr "Du hast hier keine Schreib-Berechtigung." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Lade etwas hoch!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" -msgstr "Download" +msgstr "Herunterladen" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Freigabe aufheben" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Der Upload ist zu groß" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index d3f07f05c78..caaaa81d2b3 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:29+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-06 21:54+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index b6255cd3ef1..aaa2995382c 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 15:10+0000\n" -"Last-Translator: arkascha \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-06 21:55+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 77148131a15..3b551c20312 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:29+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-09 19:50+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 3a8c59bd022..57df6038e88 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:30+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-06 21:58+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de/files_versions.po b/l10n/de/files_versions.po index e0fd8f7fa64..921aba68c41 100644 --- a/l10n/de/files_versions.po +++ b/l10n/de/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:30+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-06 21:59+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 4fc5815b165..417ce173f3e 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:02+0200\n" +"PO-Revision-Date: 2013-05-06 22:00+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,19 +42,19 @@ msgstr "Apps" msgid "Admin" msgstr "Administration" -#: files.php:209 +#: files.php:207 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: files.php:210 +#: files.php:208 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: files.php:211 files.php:244 +#: files.php:209 files.php:242 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: files.php:241 +#: files.php:239 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." @@ -181,7 +182,7 @@ msgstr "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil d #: setup.php:859 #, php-format msgid "Please double check the installation guides." -msgstr "Bitte prüfen Sie die Installationsanleitungen." +msgstr "Bitte prüfe die Installationsanleitungen." #: template.php:113 msgid "seconds ago" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 43ac32ddf2e..4a545152eed 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -4,13 +4,14 @@ # # Translators: # arkascha , 2013 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" -"PO-Revision-Date: 2013-04-28 06:30+0000\n" -"Last-Translator: arkascha \n" +"POT-Creation-Date: 2013-05-12 02:02+0200\n" +"PO-Revision-Date: 2013-05-06 22:00+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -125,44 +126,44 @@ msgstr "Aktualisiert" msgid "Saving..." msgstr "Speichern..." -#: js/users.js:43 +#: js/users.js:47 msgid "deleted" msgstr "gelöscht" -#: js/users.js:43 +#: js/users.js:47 msgid "undo" msgstr "rückgängig machen" -#: js/users.js:75 +#: js/users.js:79 msgid "Unable to remove user" msgstr "Benutzer konnte nicht entfernt werden." -#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: js/users.js:92 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" msgstr "Gruppen" -#: js/users.js:91 templates/users.php:80 templates/users.php:115 +#: js/users.js:95 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Gruppenadministrator" -#: js/users.js:111 templates/users.php:155 +#: js/users.js:115 templates/users.php:155 msgid "Delete" msgstr "Löschen" -#: js/users.js:262 +#: js/users.js:269 msgid "add group" msgstr "Gruppe hinzufügen" -#: js/users.js:414 +#: js/users.js:420 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: js/users.js:415 js/users.js:421 js/users.js:436 +#: js/users.js:421 js/users.js:427 js/users.js:442 msgid "Error creating user" msgstr "Beim Anlegen des Benutzers ist ein Fehler aufgetreten" -#: js/users.js:420 +#: js/users.js:426 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" @@ -232,7 +233,7 @@ msgid "" "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" " of ownCloud." -msgstr "Dieser ownCloud Server hat keine funktionierende Netzwerkverbindung. Dies bedeutet das einige Funktionen wie das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Netzwerkverbindung für diesen Server zu aktivieren wenn Du alle Funktionen von ownCloud nutzen möchtest." +msgstr "Dieser ownCloud Server hat keine funktionierende Netzwerkverbindung. Dies bedeutet das einige Funktionen wie das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Netzwerkverbindung für diesen Server zu aktivieren, wenn Du alle Funktionen von ownCloud nutzen möchtest." #: templates/admin.php:92 msgid "Cron" @@ -264,31 +265,31 @@ msgstr "Aktiviere Sharing-API" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "Erlaube Apps die Nutzung der Share-API" +msgstr "Erlaubt Apps die Nutzung der Share-API" #: templates/admin.php:142 msgid "Allow links" -msgstr "Erlaube Links" +msgstr "Erlaubt Links" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Erlaube Benutzern, Inhalte über öffentliche Links zu teilen" +msgstr "Erlaubt Benutzern, Inhalte über öffentliche Links zu teilen" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Erlaube erneutes Teilen" +msgstr "Erlaubt erneutes Teilen" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Erlaube Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" +msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Erlaube Benutzern, mit jedem zu teilen" +msgstr "Erlaubt Benutzern, mit jedem zu teilen" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Erlaube Benutzern, nur mit Benutzern ihrer Gruppe zu teilen" +msgstr "Erlaubt Benutzern, nur mit Benutzern ihrer Gruppe zu teilen" #: templates/admin.php:168 msgid "Security" @@ -307,7 +308,7 @@ msgstr "Erzwingt die Verwendung einer verschlüsselten Verbindung" msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Bitte verbinden Sie sich über eine HTTPS Verbindung mit diesem ownCloud Server um diese Einstellung zu ändern" +msgstr "Bitte verbinde Dich über eine HTTPS Verbindung mit diesem ownCloud Server um diese Einstellung zu ändern" #: templates/admin.php:195 msgid "Log" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 008eb03bc4d..ae5ea47d002 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Marcel Kühlhorn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:31+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-09 19:40+0000\n" +"Last-Translator: Marcel Kühlhorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,19 +24,19 @@ msgstr "Löschen der Serverkonfiguration fehlgeschlagen" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "Die Konfiguration war erfolgreich, die Verbindung konnte hergestellt werden!" +msgstr "Die Konfiguration ist gültig und die Verbindung konnte hergestellt werden!" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "Die Konfiguration ist gültig aber die Verbindung ist fehlgeschlagen. Bitte überprüfen Sie die Servereinstellungen und die Anmeldeinformationen." +msgstr "Die Konfiguration ist gültig aber die Verbindung ist fehlgeschlagen. Bitte überprüfe die Servereinstellungen und Anmeldeinformationen." #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "Die Konfiguration ist ungültig, bitte sehen Sie für weitere Details im ownCloud Log nach" +msgstr "Die Konfiguration ist ungültig, sieh für weitere Details bitte im ownCloud Log nach" #: js/settings.js:66 msgid "Deletion failed" @@ -51,7 +52,7 @@ msgstr "Einstellungen beibehalten?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "Serverkonfiguration konnte nicht hinzugefügt werden." +msgstr "Das Hinzufügen der Serverkonfiguration schlug fehl" #: js/settings.js:121 msgid "Connection test succeeded" @@ -63,7 +64,7 @@ msgstr "Verbindungstest fehlgeschlagen" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Wollen Sie die aktuelle Serverkonfiguration wirklich löschen?" +msgstr "Möchtest Du die aktuelle Serverkonfiguration wirklich löschen?" #: js/settings.js:137 msgid "Confirm Deletion" @@ -74,7 +75,7 @@ msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitte Deinen Systemadministator eine der beiden Anwendungen zu deaktivieren." +msgstr "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwartetem Verhalten kommen. Bitte Deinen Systemadministator eine der beiden Anwendungen zu deaktivieren." #: templates/settings.php:11 msgid "" @@ -105,7 +106,7 @@ msgstr "Basis-DN" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Ein Base DN pro Zeile" +msgstr "Ein Basis-DN pro Zeile" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" @@ -128,7 +129,7 @@ msgstr "Passwort" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Lasse die Felder von DN und Passwort für anonymen Zugang leer." +msgstr "Lasse die Felder DN und Passwort für anonymen Zugang leer." #: templates/settings.php:50 msgid "User Login Filter" @@ -139,7 +140,7 @@ msgstr "Benutzer-Login-Filter" msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Bestimmt den angewendeten Filter, wenn eine Anmeldung versucht wird. %%uid ersetzt den Benutzernamen bei dem Anmeldeversuch." +msgstr "Bestimmt den angewendeten Filter, wenn eine Anmeldung versucht wird. %%uid ersetzt den Benutzernamen beim Anmeldeversuch." #: templates/settings.php:54 #, php-format @@ -260,7 +261,7 @@ msgstr "Basis-Benutzerbaum" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Ein Benutzer Base DN pro Zeile" +msgstr "Ein Benutzer Basis-DN pro Zeile" #: templates/settings.php:84 msgid "User Search Attributes" @@ -268,7 +269,7 @@ msgstr "Benutzersucheigenschaften" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "Optional; eine Eigenschaft pro Zeile" +msgstr "Optional; ein Attribut pro Zeile" #: templates/settings.php:85 msgid "Group Display Name Field" @@ -284,7 +285,7 @@ msgstr "Basis-Gruppenbaum" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Ein Gruppen Base DN pro Zeile" +msgstr "Ein Gruppen Basis-DN pro Zeile" #: templates/settings.php:87 msgid "Group Search Attributes" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 5920087fce1..da2cd95de1b 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -4,15 +4,16 @@ # # Translators: # arkascha , 2013 +# Marcel Kühlhorn , 2013 # traductor , 2013 # Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-04 01:58+0200\n" -"PO-Revision-Date: 2013-05-03 21:40+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-11 17:20+0000\n" +"Last-Translator: Marcel Kühlhorn \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -421,7 +422,7 @@ msgstr "Benutzername" #: lostpassword/templates/lostpassword.php:21 msgid "Request reset" -msgstr "Zurücksetzung beantragen" +msgstr "Zurücksetzung anfordern" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -566,7 +567,7 @@ msgstr "Web-Services unter Ihrer Kontrolle" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "%s ist nicht verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein." +msgstr "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 54713d05960..55b91f87a79 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Marcel Kühlhorn , 2013 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 20:40+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-09 20:00+0000\n" +"Last-Translator: Marcel Kühlhorn \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,18 +39,18 @@ msgstr "Keine Datei hochgeladen. Unbekannter Fehler" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Es sind keine Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." +msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in der php.ini:" +msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Die Datei ist größer, als die MAX_FILE_SIZE Direktive erlaubt, die im HTML-Formular spezifiziert ist" +msgstr "Die Datei ist größer, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" @@ -60,7 +62,7 @@ msgstr "Keine Datei konnte übertragen werden." #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Der temporäre Ordner fehlt." +msgstr "Kein temporärer Ordner vorhanden" #: ajax/upload.php:33 msgid "Failed to write to disk" @@ -108,7 +110,7 @@ msgstr "ersetzen" #: js/filelist.js:252 msgid "suggest name" -msgstr "Einen Namen vorschlagen" +msgstr "Namen vorschlagen" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" @@ -124,7 +126,7 @@ msgstr "rückgängig machen" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "führe das Löschen aus" +msgstr "Löschvorgang ausführen" #: js/filelist.js:406 msgid "1 file uploading" @@ -146,11 +148,11 @@ msgstr "Der Dateiname darf nicht leer sein." msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Ungültiger Name! Die Zeichen '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." +msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Ihr Speicher ist voll. Daher können keine Dateien mehr aktualisiert oder synchronisiert werden!" +msgstr "Ihr Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" @@ -160,7 +162,7 @@ msgstr "Ihr Speicher ist fast voll ({usedSpacePercent}%)" msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien einen Moment dauern." +msgstr "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern." #: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" @@ -177,7 +179,7 @@ msgstr "Upload abgebrochen." #: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." +msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." #: js/files.js:486 msgid "URL cannot be empty." @@ -201,7 +203,7 @@ msgstr "Größe" #: js/files.js:879 templates/index.php:82 msgid "Modified" -msgstr "Bearbeitet" +msgstr "Geändert" #: js/files.js:898 msgid "1 folder" @@ -285,7 +287,7 @@ msgstr "Sie haben hier keine Schreib-Berechtigungen." #: templates/index.php:61 msgid "Nothing in here. Upload something!" -msgstr "Alles leer. Bitte laden Sie etwas hoch!" +msgstr "Alles leer. Laden Sie etwas hoch!" #: templates/index.php:75 msgid "Download" @@ -315,4 +317,4 @@ msgstr "Scanne" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Aktualisiere den Dateisystem-Cache..." +msgstr "Dateisystem-Cache wird aktualisiert ..." diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index ef17e7de8fc..6630efe3775 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:29+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-06 21:54+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 39812499d98..7646967a4f9 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -4,13 +4,14 @@ # # Translators: # arkascha , 2013 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 15:10+0000\n" -"Last-Translator: arkascha \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-06 22:00+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -113,7 +114,7 @@ msgstr "Externen Speicher für Benutzer aktivieren" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Erlaubt Benutzern ihre eigenen externen Speicher einzubinden" +msgstr "Erlaubt Benutzern, ihre eigenen externen Speicher einzubinden" #: templates/settings.php:141 msgid "SSL root certificates" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 1c1c9d6020a..5a9782beebe 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:29+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-06 21:57+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 2e9654699e6..f05c61535a3 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:30+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-06 21:58+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index c36b64e3cb8..bcbe6b91ad2 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-04 01:59+0200\n" -"PO-Revision-Date: 2013-05-03 21:40+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:02+0200\n" +"PO-Revision-Date: 2013-05-06 21:53+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 983e3752d45..9e82862dc2e 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -3,14 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# a.tangemann , 2013 # arkascha , 2013 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" -"PO-Revision-Date: 2013-04-28 06:40+0000\n" -"Last-Translator: arkascha \n" +"POT-Creation-Date: 2013-05-12 02:02+0200\n" +"PO-Revision-Date: 2013-05-06 21:40+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -125,44 +127,44 @@ msgstr "Aktualisiert" msgid "Saving..." msgstr "Speichern..." -#: js/users.js:43 +#: js/users.js:47 msgid "deleted" msgstr "gelöscht" -#: js/users.js:43 +#: js/users.js:47 msgid "undo" msgstr "rückgängig machen" -#: js/users.js:75 +#: js/users.js:79 msgid "Unable to remove user" msgstr "Der Benutzer konnte nicht entfernt werden." -#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: js/users.js:92 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" msgstr "Gruppen" -#: js/users.js:91 templates/users.php:80 templates/users.php:115 +#: js/users.js:95 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Gruppenadministrator" -#: js/users.js:111 templates/users.php:155 +#: js/users.js:115 templates/users.php:155 msgid "Delete" msgstr "Löschen" -#: js/users.js:262 +#: js/users.js:269 msgid "add group" msgstr "Gruppe hinzufügen" -#: js/users.js:414 +#: js/users.js:420 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: js/users.js:415 js/users.js:421 js/users.js:436 +#: js/users.js:421 js/users.js:427 js/users.js:442 msgid "Error creating user" msgstr "Beim Erstellen des Benutzers ist ein Fehler aufgetreten" -#: js/users.js:420 +#: js/users.js:426 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" @@ -222,7 +224,7 @@ msgstr "Dieser ownCloud-Server kann die Ländereinstellung nicht auf %s ändern. #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "Keine Netzwerkverbindung" +msgstr "Keine Internetverbindung" #: templates/admin.php:78 msgid "" @@ -276,7 +278,7 @@ msgstr "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "Erlaube weiterverteilen" +msgstr "Erlaube Weiterverteilen" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" @@ -284,11 +286,11 @@ msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Erlaube Benutzern, mit jedem zu teilen" +msgstr "Erlaubt Benutzern, mit jedem zu teilen" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Erlaube Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen" +msgstr "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen" #: templates/admin.php:168 msgid "Security" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 2d41e90563d..9fed068426f 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Marcel Kühlhorn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:31+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-09 19:40+0000\n" +"Last-Translator: Marcel Kühlhorn \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Das Löschen der Server-Konfiguration schlug fehl" +msgstr "Löschen der Serverkonfiguration fehlgeschlagen" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" @@ -29,13 +30,13 @@ msgstr "Die Konfiguration ist gültig und die Verbindung konnte hergestellt werd msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "Die Konfiguration ist gültig, aber das Herstellen der Verbindung schlug fehl. Bitte überprüfen Sie die Server-Einstellungen und Zertifikate." +msgstr "Die Konfiguration ist gültig aber die Verbindung ist fehlgeschlagen. Bitte überprüfen Sie die Servereinstellungen und die Anmeldeinformationen." #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "Die Konfiguration ist ungültig. Weitere Details können Sie im ownCloud-Log nachlesen." +msgstr "Die Konfiguration ist ungültig, sehen Sie für weitere Details bitte im ownCloud Log nach" #: js/settings.js:66 msgid "Deletion failed" @@ -43,11 +44,11 @@ msgstr "Löschen fehlgeschlagen" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "Sollen die Einstellungen der letzten Serverkonfiguration übernommen werden?" +msgstr "Einstellungen von letzter Konfiguration übernehmen?" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Einstellungen behalten?" +msgstr "Einstellungen beibehalten?" #: js/settings.js:97 msgid "Cannot add server configuration" @@ -63,7 +64,7 @@ msgstr "Verbindungstest fehlgeschlagen" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "Möchten Sie die Serverkonfiguration wirklich löschen?" +msgstr "Möchten Sie die aktuelle Serverkonfiguration wirklich löschen?" #: js/settings.js:137 msgid "Confirm Deletion" @@ -74,7 +75,7 @@ msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitten Sie Ihren Systemadministator eine der beiden Anwendungen zu deaktivieren." +msgstr "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwartetem Verhalten kommen. Bitten Sie Ihren Systemadministator eine der beiden Anwendungen zu deaktivieren." #: templates/settings.php:11 msgid "" @@ -105,7 +106,7 @@ msgstr "Basis-DN" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "Ein Base DN pro Zeile" +msgstr "Ein Basis-DN pro Zeile" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" @@ -128,7 +129,7 @@ msgstr "Passwort" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "Lassen Sie die Felder von DN und Passwort für einen anonymen Zugang leer." +msgstr "Lassen Sie die Felder DN und Passwort für einen anonymen Zugang leer." #: templates/settings.php:50 msgid "User Login Filter" @@ -139,7 +140,7 @@ msgstr "Benutzer-Login-Filter" msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "Bestimmt den angewendeten Filter, wenn eine Anmeldung durchgeführt wird. %%uid ersetzt den Benutzernamen bei dem Anmeldeversuch." +msgstr "Bestimmt den angewendeten Filter, wenn eine Anmeldung durchgeführt wird. %%uid ersetzt den Benutzernamen beim Anmeldeversuch." #: templates/settings.php:54 #, php-format @@ -188,17 +189,17 @@ msgstr "Port" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "Back-Up (Replikation) Host" +msgstr "Backup Host (Kopie)" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "Geben Sie einen optionalen Backup-Host an. Es muss ein Replikat des Haupt-LDAP/AD Servers sein." +msgstr "Geben Sie einen optionalen Backup Host an. Es muss sich um eine Kopie des Haupt LDAP/AD Servers handeln." #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "Back-Up (Replikation) Port" +msgstr "Backup Port" #: templates/settings.php:74 msgid "Disable Main Server" @@ -206,11 +207,11 @@ msgstr "Hauptserver deaktivieren" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Wenn eingeschaltet, wird sich die ownCloud nur mit dem Replikat-Server verbinden." +msgstr "Wenn aktiviert, wird ownCloud ausschließlich den Backupserver verwenden." #: templates/settings.php:75 msgid "Use TLS" -msgstr "Benutze TLS" +msgstr "Nutze TLS" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." @@ -244,7 +245,7 @@ msgstr "in Sekunden. Eine Änderung leert den Cache." #: templates/settings.php:80 msgid "Directory Settings" -msgstr "Verzeichniseinstellungen" +msgstr "Ordnereinstellungen" #: templates/settings.php:82 msgid "User Display Name Field" @@ -260,11 +261,11 @@ msgstr "Basis-Benutzerbaum" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "Ein Benutzer Base DN pro Zeile" +msgstr "Ein Benutzer Basis-DN pro Zeile" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "Eigenschaften der Benutzer-Suche" +msgstr "Benutzersucheigenschaften" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" @@ -284,11 +285,11 @@ msgstr "Basis-Gruppenbaum" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "Ein Gruppen Base DN pro Zeile" +msgstr "Ein Gruppen Basis-DN pro Zeile" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "Eigenschaften der Gruppen-Suche" +msgstr "Gruppensucheigenschaften" #: templates/settings.php:88 msgid "Group-Member association" @@ -296,7 +297,7 @@ msgstr "Assoziation zwischen Gruppe und Benutzer" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "Besondere Eigenschaften" +msgstr "Spezielle Eigenschaften" #: templates/settings.php:92 msgid "Quota Field" diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index 31acce82fea..48961fc2a58 100644 --- a/l10n/en@pirate/core.po +++ b/l10n/en@pirate/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-02 02:14+0200\n" -"PO-Revision-Date: 2013-05-01 18:51+0000\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-04 04:00+0000\n" "Last-Translator: lhpalacio \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -21,7 +21,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "User %s shared a file with you" #: ajax/share.php:99 #, php-format @@ -559,7 +559,7 @@ msgstr "" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "" +msgstr "web services under your control" #: templates/layout.user.php:36 #, php-format diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index 5990ec2d715..941c39cc0a6 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-02 02:14+0200\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" "PO-Revision-Date: 2013-04-26 08:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" @@ -289,7 +289,7 @@ msgstr "" #: templates/index.php:75 msgid "Download" -msgstr "" +msgstr "Download" #: templates/index.php:87 templates/index.php:88 msgid "Unshare" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 0256b0cd296..b60b2651147 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-02 02:14+0200\n" -"PO-Revision-Date: 2013-05-01 18:51+0000\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-04 04:00+0000\n" "Last-Translator: lhpalacio \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -24,26 +24,26 @@ msgstr "Secret Code" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Submit" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "" +msgstr "%s shared the folder %s with you" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "" +msgstr "%s shared the file %s with you" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "" +msgstr "Download" #: templates/public.php:40 msgid "No preview available for" -msgstr "" +msgstr "No preview available for" #: templates/public.php:50 msgid "web services under your control" -msgstr "" +msgstr "web services under your control" diff --git a/l10n/es/core.po b/l10n/es/core.po index 1a4b035d22c..adabbb6dddc 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ggam , 2013 # msoko , 2013 # iGerli , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-01 01:59+0200\n" -"PO-Revision-Date: 2013-04-30 11:30+0000\n" -"Last-Translator: iGerli \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-04 16:30+0000\n" +"Last-Translator: ggam \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" @@ -45,7 +46,7 @@ msgstr "El usuario %s ha compartido la carpeta \"%s\" contigo. Puedes descargarl #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Tipo de categoria no proporcionado." +msgstr "Tipo de categoría no proporcionado." #: ajax/vcategories/add.php:30 msgid "No category to add?" @@ -54,19 +55,19 @@ msgstr "¿Ninguna categoría para añadir?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "Esta categoria ya existe: %s" +msgstr "Ya existe esta categoría: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "ipo de objeto no proporcionado." +msgstr "Tipo de objeto no proporcionado." #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID no proporcionado." +msgstr "ID de %s no proporcionado." #: ajax/vcategories/addToFavorites.php:35 #, php-format @@ -196,7 +197,7 @@ msgstr "hace {days} días" #: js/js.js:726 msgid "last month" -msgstr "mes pasado" +msgstr "el mes pasado" #: js/js.js:727 msgid "{months} months ago" @@ -208,7 +209,7 @@ msgstr "hace meses" #: js/js.js:729 msgid "last year" -msgstr "año pasado" +msgstr "el año pasado" #: js/js.js:730 msgid "years ago" @@ -237,7 +238,7 @@ msgstr "No" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "El tipo de objeto no se ha especificado." +msgstr "No se ha especificado el tipo de objeto" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 @@ -249,11 +250,11 @@ msgstr "Error" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "El nombre de la app no se ha especificado." +msgstr "No se ha especificado el nombre de la aplicación." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "El fichero {file} requerido, no está instalado." +msgstr "¡El fichero requerido {file} no está instalado!" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" @@ -317,7 +318,7 @@ msgstr "Fecha de caducidad" #: js/share.js:211 msgid "Share via email:" -msgstr "compartido via e-mail:" +msgstr "Compartido por correo electrónico:" #: js/share.js:213 msgid "No people found" @@ -333,7 +334,7 @@ msgstr "Compartido en {item} con {user}" #: js/share.js:308 msgid "Unshare" -msgstr "No compartir" +msgstr "Dejar de compartir" #: js/share.js:320 msgid "can edit" @@ -349,7 +350,7 @@ msgstr "crear" #: js/share.js:328 msgid "update" -msgstr "modificar" +msgstr "actualizar" #: js/share.js:331 msgid "delete" @@ -384,7 +385,7 @@ msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "La actualización ha fracasado. Por favor, informe este problema a la Comunidad de ownCloud." +msgstr "La actualización ha fracasado. Por favor, informe de este problema a la Comunidad de ownCloud." #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." @@ -392,7 +393,7 @@ msgstr "La actualización se ha realizado correctamente. Redireccionando a ownCl #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "Reiniciar contraseña de ownCloud" +msgstr "Restablecer contraseña de ownCloud" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -403,15 +404,15 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "El enlace para restablecer la contraseña ha sido enviada a su correo electrónico.
Si no lo recibe en un plazo razonable de tiempo, revise su spam / carpetas no deseados.
Si no está allí pregunte a su administrador local." +msgstr "El enlace para restablecer la contraseña ha sido enviada a su correo electrónico.
Si no lo recibe en un plazo razonable de tiempo, revise su carpeta de spam / correo no deseado.
Si no está allí, pregunte a su administrador local." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "Petición ha fallado!
¿Usted asegúrese que su dirección de correo electrónico / nombre de usuario estaba justo?" +msgstr "La petición ha fallado!
¿Está seguro de que su dirección de correo electrónico o nombre de usuario era correcto?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." -msgstr "Recibirás un enlace por correo electrónico para restablecer tu contraseña" +msgstr "Recibirá un enlace por correo electrónico para restablecer su contraseña" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 #: templates/login.php:19 @@ -424,7 +425,7 @@ msgstr "Solicitar restablecimiento" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Tu contraseña se ha restablecido" +msgstr "Su contraseña ha sido establecida" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" @@ -485,7 +486,7 @@ msgstr "La versión de PHP es vulnerable al ataque de Byte NULL (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Por favor, actualice su instalación de PHP para utilizar ownCloud en forma segura." +msgstr "Por favor, actualice su instalación de PHP para utilizar ownCloud de manera segura." #: templates/installation.php:32 msgid "" @@ -497,13 +498,13 @@ msgstr "No está disponible un generador de números aleatorios seguro, por favo msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Sin un generador de números aleatorios seguro un atacante podría predecir los tokens de reinicio de su contraseña y tomar control de su cuenta." +msgstr "Sin un generador de números aleatorios seguro, un atacante podría predecir los tokens de restablecimiento de contraseñas y tomar el control de su cuenta." #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Su directorio de datos y sus archivos están probablemente accesibles a través de internet ya que el archivo .htaccess no está funcionando." +msgstr "Probablemente su directorio de datos y sus archivos sean accesibles a través de internet ya que el archivo .htaccess no funciona." #: templates/installation.php:40 msgid "" @@ -514,7 +515,7 @@ msgstr "Para información sobre cómo configurar adecuadamente su servidor, por #: templates/installation.php:44 msgid "Create an admin account" -msgstr "Crea una cuenta de administrador" +msgstr "Crear una cuenta de administrador" #: templates/installation.php:62 msgid "Advanced" @@ -565,7 +566,7 @@ msgstr "Servicios web bajo su control" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "%s esta disponible. Obtén mas información de como actualizar." +msgstr "%s esta disponible. Obtener mas información de como actualizar." #: templates/layout.user.php:61 msgid "Log out" @@ -587,11 +588,11 @@ msgstr "Por favor cambie su contraseña para asegurar su cuenta nuevamente." #: templates/login.php:34 msgid "Lost your password?" -msgstr "¿Has perdido tu contraseña?" +msgstr "¿Ha perdido su contraseña?" #: templates/login.php:39 msgid "remember" -msgstr "recuérdame" +msgstr "recordarme" #: templates/login.php:41 msgid "Log in" diff --git a/l10n/es/files.po b/l10n/es/files.po index cbb83952dd8..74327252992 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ggam , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-04 16:20+0000\n" +"Last-Translator: ggam \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" @@ -86,7 +87,7 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Eliminar" @@ -136,7 +137,7 @@ msgstr "subiendo archivos" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "'.' es un nombre de archivo inválido." +msgstr "'.' no es un nombre de archivo válido." #: js/files.js:56 msgid "File name cannot be empty." @@ -150,72 +151,72 @@ msgstr "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Su almacenamiento esta lleno, los archivos no pueden ser mas actualizados o sincronizados!" +msgstr "Su almacenamiento está lleno, ¡no se pueden actualizar ni sincronizar archivos!" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Su almacenamiento esta lleno en un ({usedSpacePercent}%)" +msgstr "Su almacenamiento está casi lleno ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Tu descarga esta siendo preparada. Esto puede tardar algun tiempo si los archivos son muy grandes." +msgstr "Su descarga está siendo preparada. Esto puede tardar algún tiempo si los archivos son muy grandes." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Imposible subir su archivo, es un directorio o tiene 0 bytes" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "No hay suficiente espacio disponible" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "La subida del archivo está en proceso. Salir de la página ahora cancelará la subida." +msgstr "La subida del archivo está en proceso. Si sale de la página ahora, se cancelará la subida." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "La URL no puede estar vacía." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nombre de carpeta invalido. El uso de \"Shared\" esta reservado para Owncloud" +msgstr "El nombre de carpeta no es válido. El uso de \"Shared\" está reservado para Owncloud" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Error" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Nombre" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Tamaño" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Modificado" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} carpetas" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 archivo" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} archivos" @@ -279,40 +280,40 @@ msgstr "Archivos eliminados" msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "No tienes permisos para escribir aquí." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Aquí no hay nada. ¡Sube algo!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Descargar" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" -msgstr "No compartir" +msgstr "Dejar de compartir" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" -msgstr "bida demasido grande" +msgstr "Subida demasido grande" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido por este servidor." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Se están escaneando los archivos, por favor espere." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" -msgstr "Ahora escaneando" +msgstr "Escaneo actual" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Actualizando cache de archivos de sistema" +msgstr "Actualizando caché del sistema de archivos" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index a15c993cab7..cf73637ca6b 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 23:57+0000\n" +"POT-Creation-Date: 2013-05-12 02:02+0200\n" +"PO-Revision-Date: 2013-05-04 16:20+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" @@ -41,19 +41,19 @@ msgstr "Aplicaciones" msgid "Admin" msgstr "Administración" -#: files.php:209 +#: files.php:207 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." -#: files.php:210 +#: files.php:208 msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados uno por uno." -#: files.php:211 files.php:244 +#: files.php:209 files.php:242 msgid "Back to Files" msgstr "Volver a Archivos" -#: files.php:241 +#: files.php:239 msgid "Selected files too large to generate zip file." msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 5b8b4cdeb02..b88d8fd8508 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# msoko , 2013 # plachance , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-10 01:10+0000\n" +"Last-Translator: msoko \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -564,7 +565,7 @@ msgstr "services web sous votre contrôle" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s est disponible. Obtenez plus d'informations sur la façon de mettre à jour." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 94e0d502d90..f93f948ef90 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# MathieuP , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-07 15:00+0000\n" +"Last-Translator: MathieuP \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,11 +34,11 @@ msgstr "Impossible de renommer le fichier" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "Aucun fichier n'a été chargé. Erreur inconnue" +msgstr "Aucun fichier n'a été envoyé. Erreur inconnue" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "Il n'y a pas d'erreur, le fichier a été envoyé avec succes." +msgstr "Aucune erreur, le fichier a été envoyé avec succès." #: ajax/upload.php:27 msgid "" @@ -52,7 +53,7 @@ msgstr "Le fichier envoyé dépasse la directive MAX_FILE_SIZE qui est spécifi #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "Le fichier envoyé n'a été que partiellement envoyé." +msgstr "Le fichier n'a été que partiellement envoyé." #: ajax/upload.php:31 msgid "No file was uploaded" @@ -86,7 +87,7 @@ msgstr "Partager" msgid "Delete permanently" msgstr "Supprimer de façon définitive" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Supprimer" @@ -128,11 +129,11 @@ msgstr "effectuer l'opération de suppression" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "1 fichier en cours de téléchargement" +msgstr "1 fichier en cours d'envoi" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "fichiers en cours de téléchargement" +msgstr "fichiers en cours d'envoi" #: js/files.js:52 msgid "'.' is an invalid file name." @@ -156,66 +157,66 @@ msgstr "Votre espage de stockage est plein, les fichiers ne peuvent plus être t msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Votre espace de stockage est presque plein ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Votre téléchargement est cours de préparation. Ceci peut nécessiter un certain temps si les fichiers sont volumineux." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Impossible de téléverser votre fichier dans la mesure où il s'agit d'un répertoire ou d'un fichier de taille nulle" +msgstr "Impossible d'envoyer votre fichier dans la mesure où il s'agit d'un répertoire ou d'un fichier de taille nulle" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Espace disponible insuffisant" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." -msgstr "Chargement annulé." +msgstr "Envoi annulé." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "L'URL ne peut-être vide" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Erreur" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Nom" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Taille" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Modifié" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 dossier" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} dossiers" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 fichier" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} fichiers" @@ -279,37 +280,37 @@ msgstr "Fichiers supprimés" msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "Vous n'avez pas le droit d'écriture ici." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Télécharger" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Ne plus partager" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Téléversement trop volumineux" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Les fichiers sont en cours d'analyse, veuillez patienter." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Analyse en cours" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index df7ddc55d2a..1287443bc34 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mbouzada , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-04 09:50+0000\n" +"Last-Translator: mbouzada \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" @@ -86,7 +87,7 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Eliminar" @@ -156,66 +157,66 @@ msgstr "O seu espazo de almacenamento está cheo, non é posíbel actualizar ou msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "O seu espazo de almacenamento está case cheo ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Está a prepararse a súa descarga. Isto pode levar bastante tempo se os ficheiros son grandes." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Non foi posíbel enviar o ficheiro pois ou é un directorio ou ten 0 bytes" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "O espazo dispoñíbel é insuficiente" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Envío cancelado." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "O envío do ficheiro está en proceso. Saír agora da páxina cancelará o envío." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "O URL non pode quedar baleiro." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de cartafol incorrecto. O uso de «Shared» está reservado por Owncloud" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Erro" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Nome" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Tamaño" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Modificado" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 cartafol" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} cartafoles" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} ficheiros" @@ -241,7 +242,7 @@ msgstr "Precísase para a descarga de varios ficheiros e cartafoles." #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Habilitar a descarga-ZIP" +msgstr "Activar a descarga ZIP" #: templates/admin.php:20 msgid "0 is unlimited" @@ -279,37 +280,37 @@ msgstr "Ficheiros eliminados" msgid "Cancel upload" msgstr "Cancelar o envío" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "Non ten permisos para escribir aquí." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Aquí non hai nada. Envíe algo." -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Descargar" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Deixar de compartir" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Envío demasiado grande" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiros que tenta enviar exceden do tamaño máximo permitido neste servidor" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Estanse analizando os ficheiros. Agarde." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 7b3e9df3f15..84a80b69d57 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-29 01:58+0200\n" -"PO-Revision-Date: 2013-04-28 09:00+0000\n" +"POT-Creation-Date: 2013-05-12 02:02+0200\n" +"PO-Revision-Date: 2013-05-11 20:00+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -125,44 +125,44 @@ msgstr "Actualizado" msgid "Saving..." msgstr "Gardando..." -#: js/users.js:43 +#: js/users.js:47 msgid "deleted" msgstr "eliminado" -#: js/users.js:43 +#: js/users.js:47 msgid "undo" msgstr "desfacer" -#: js/users.js:75 +#: js/users.js:79 msgid "Unable to remove user" msgstr "Non é posíbel retirar o usuario" -#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: js/users.js:92 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" msgstr "Grupos" -#: js/users.js:91 templates/users.php:80 templates/users.php:115 +#: js/users.js:95 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Grupo Admin" -#: js/users.js:111 templates/users.php:155 +#: js/users.js:115 templates/users.php:155 msgid "Delete" msgstr "Eliminar" -#: js/users.js:262 +#: js/users.js:269 msgid "add group" msgstr "engadir un grupo" -#: js/users.js:414 +#: js/users.js:420 msgid "A valid username must be provided" msgstr "Debe fornecer un nome de usuario" -#: js/users.js:415 js/users.js:421 js/users.js:436 +#: js/users.js:421 js/users.js:427 js/users.js:442 msgid "Error creating user" msgstr "Produciuse un erro ao crear o usuario" -#: js/users.js:420 +#: js/users.js:426 msgid "A valid password must be provided" msgstr "Debe fornecer un contrasinal" @@ -252,7 +252,7 @@ msgstr "cron.php está rexistrado nun servizo de WebCron. Chame á página cron. msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Use o servizo de sistema cron. Chame ao ficheiro cron.php no catfaol owncloud a través dun sistema de cronjob unna vez por minuto." +msgstr "Use o servizo de sistema cron. Chame ao ficheiro cron.php no cartafol owncloud a través dun sistema de cronjob unha vez por minuto." #: templates/admin.php:128 msgid "Sharing" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index eca1551834f..e0a0299d06d 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-01 01:59+0200\n" -"PO-Revision-Date: 2013-04-30 04:50+0000\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-07 07:30+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -496,7 +496,7 @@ msgstr "セキュアな乱数生成器が利用可能ではありません。PHP msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "セキュアな乱数生成器が無い場合、攻撃者はパスワードリセットのトークンを予測してアカウントを乗っ取られる可能性があります。" +msgstr "セキュアな乱数生成器が無い場合、攻撃者がパスワードリセットのトークンを予測してアカウントを乗っ取られる可能性があります。" #: templates/installation.php:39 msgid "" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index d954d491167..7e169d97e48 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Daisuke Deguchi , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:31+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-08 13:50+0000\n" +"Last-Translator: Daisuke Deguchi \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" @@ -326,7 +327,7 @@ msgstr "ユーザ名を空のままにしてください(デフォルト)。 #: templates/settings.php:99 msgid "Test Configuration" -msgstr "テスト設定" +msgstr "設定をテスト" #: templates/settings.php:99 msgid "Help" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 32901091a74..6a764822f6c 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Sungjin Gang , 2013 +# Sungjin Gang , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-08 15:50+0000\n" +"Last-Translator: Sungjin Gang \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,7 +70,7 @@ msgstr "디스크에 쓰지 못했습니다" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "" +msgstr "저장소가 용량이 충분하지 않습니다." #: ajax/upload.php:83 msgid "Invalid directory." @@ -84,9 +86,9 @@ msgstr "공유" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "" +msgstr "영원히 삭제" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "삭제" @@ -124,7 +126,7 @@ msgstr "되돌리기" #: js/filelist.js:324 msgid "perform delete operation" -msgstr "" +msgstr "삭제 작업중" #: js/filelist.js:406 msgid "1 file uploading" @@ -132,7 +134,7 @@ msgstr "파일 1개 업로드 중" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "" +msgstr "파일 업로드중" #: js/files.js:52 msgid "'.' is an invalid file name." @@ -156,66 +158,66 @@ msgstr "저장 공간이 가득 찼습니다. 파일을 업데이트하거나 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "저장 공간이 거의 가득 찼습니다 ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "다운로드가 준비 중입니다. 파일 크기가 크다면 시간이 오래 걸릴 수도 있습니다." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "디렉터리 및 빈 파일은 업로드할 수 없습니다" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "여유 공간이 부족합니다" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "업로드가 취소되었습니다." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URL을 입력해야 합니다." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "폴더 이름이 유효하지 않습니다. " -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "오류" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "이름" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "크기" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "수정됨" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "폴더 1개" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "폴더 {count}개" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "파일 1개" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "파일 {count}개" @@ -273,43 +275,43 @@ msgstr "링크에서" #: templates/index.php:42 msgid "Deleted files" -msgstr "" +msgstr "파일 삭제됨" #: templates/index.php:48 msgid "Cancel upload" msgstr "업로드 취소" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." -msgstr "" +msgstr "당신은 여기에 쓰기를 할 수 있는 권한이 없습니다." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "내용이 없습니다. 업로드할 수 있습니다!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "다운로드" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "공유 해제" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "업로드한 파일이 너무 큼" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "이 파일이 서버에서 허용하는 최대 업로드 가능 용량보다 큽니다." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "파일을 검색하고 있습니다. 기다려 주십시오." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "현재 검색" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index b2f9321e0e6..c4e8c0dec40 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:30+0000\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-08 15:50+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" @@ -41,7 +41,7 @@ msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "" +msgstr "영원히 삭제" #: js/trash.js:174 templates/index.php:17 msgid "Name" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 6e2db6fcc84..15aeff0cf97 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:17+0200\n" -"PO-Revision-Date: 2013-04-26 16:22+0000\n" +"POT-Creation-Date: 2013-05-12 02:02+0200\n" +"PO-Revision-Date: 2013-05-09 00:30+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" @@ -124,44 +124,44 @@ msgstr "" msgid "Saving..." msgstr "저장 중..." -#: js/users.js:43 +#: js/users.js:47 msgid "deleted" msgstr "삭제" -#: js/users.js:43 +#: js/users.js:47 msgid "undo" msgstr "되돌리기" -#: js/users.js:75 +#: js/users.js:79 msgid "Unable to remove user" msgstr "" -#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: js/users.js:92 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" msgstr "그룹" -#: js/users.js:91 templates/users.php:80 templates/users.php:115 +#: js/users.js:95 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "그룹 관리자" -#: js/users.js:111 templates/users.php:155 +#: js/users.js:115 templates/users.php:155 msgid "Delete" msgstr "삭제" -#: js/users.js:262 +#: js/users.js:269 msgid "add group" msgstr "" -#: js/users.js:414 +#: js/users.js:420 msgid "A valid username must be provided" msgstr "" -#: js/users.js:415 js/users.js:421 js/users.js:436 +#: js/users.js:421 js/users.js:427 js/users.js:442 msgid "Error creating user" msgstr "" -#: js/users.js:420 +#: js/users.js:426 msgid "A valid password must be provided" msgstr "" @@ -328,7 +328,7 @@ msgstr "덜 중요함" msgid "Version" msgstr "버전" -#: templates/admin.php:238 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:108 msgid "" "Developed by the
ownCloud community, the , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-09 12:20+0000\n" +"Last-Translator: Roman Deniobe \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,12 +21,12 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "Vartotojas %s pasidalino su jumis failu" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "Vartotojas %s su jumis pasidalino aplanku" #: ajax/share.php:101 #, php-format diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 6c4ba95164a..6ffc7836248 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-01 01:59+0200\n" -"PO-Revision-Date: 2013-04-30 06:50+0000\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-07 18:40+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 388d90f63a9..7f244a9be09 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 17:50+0000\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-07 20:20+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 9fd8df290be..29ffcb6e7d8 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mouxy , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-06 16:40+0000\n" +"Last-Translator: Mouxy \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" @@ -401,11 +402,11 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "O link para fazer reset à sua password foi enviado para o seu e-mail.
Se não o recebeu dentro um espaço de tempo aceitável, por favor verifique a sua pasta de SPAM.
Se não o encontrar, por favor contacte o seu administrador." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "O pedido falhou!
Tem a certeza que introduziu o seu email/username correcto?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -563,7 +564,7 @@ msgstr "serviços web sob o seu controlo" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s está disponível. Tenha mais informações como actualizar." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index 4941cbba20d..57de8c823ef 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mouxy , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:29+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-06 16:40+0000\n" +"Last-Translator: Mouxy \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" @@ -55,7 +56,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "Atenção:
O suporte PHP para o Curl não está activado ou instalado. A montagem do ownCloud/WebDav ou GoolgeDriver não é possível. Por favor contacte o administrador para o instalar." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index c9af2137f5f..fada0ab8d79 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mouxy , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:17+0200\n" -"PO-Revision-Date: 2013-04-26 16:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:02+0200\n" +"PO-Revision-Date: 2013-05-06 16:40+0000\n" +"Last-Translator: Mouxy \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" @@ -28,7 +29,7 @@ msgstr "Erro na autenticação" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "O seu nome foi alterado" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" @@ -124,44 +125,44 @@ msgstr "Actualizado" msgid "Saving..." msgstr "A guardar..." -#: js/users.js:43 +#: js/users.js:47 msgid "deleted" msgstr "apagado" -#: js/users.js:43 +#: js/users.js:47 msgid "undo" msgstr "desfazer" -#: js/users.js:75 +#: js/users.js:79 msgid "Unable to remove user" msgstr "Não foi possível remover o utilizador" -#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: js/users.js:92 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" msgstr "Grupos" -#: js/users.js:91 templates/users.php:80 templates/users.php:115 +#: js/users.js:95 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "Grupo Administrador" -#: js/users.js:111 templates/users.php:155 +#: js/users.js:115 templates/users.php:155 msgid "Delete" msgstr "Eliminar" -#: js/users.js:262 +#: js/users.js:269 msgid "add group" msgstr "Adicionar grupo" -#: js/users.js:414 +#: js/users.js:420 msgid "A valid username must be provided" msgstr "Um nome de utilizador válido deve ser fornecido" -#: js/users.js:415 js/users.js:421 js/users.js:436 +#: js/users.js:421 js/users.js:427 js/users.js:442 msgid "Error creating user" msgstr "Erro a criar utilizador" -#: js/users.js:420 +#: js/users.js:426 msgid "A valid password must be provided" msgstr "Uma password válida deve ser fornecida" @@ -328,7 +329,7 @@ msgstr "Menos" msgid "Version" msgstr "Versão" -#: templates/admin.php:238 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:108 msgid "" "Developed by the
ownCloud community, the \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-06 05:10+0000\n" +"Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -564,7 +564,7 @@ msgstr "webové služby pod Vašou kontrolou" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s je dostupná. Získajte viac informácií k postupu aktualizáce." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index aad1a7178c4..fd68e36e1a8 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-04 01:58+0200\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 9a782d94338..05e9cfd4f1a 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-04 01:58+0200\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 8eff1b3b7f5..472016e2ec2 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-04 01:58+0200\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 2853fa3428d..3a714f79772 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-04 01:58+0200\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 44a659ca12b..e4c494813d6 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-04 01:58+0200\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index cd86ea36e1d..ade10916876 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-04 01:58+0200\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 7f02a875eec..dd93a02c1a5 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-04 01:58+0200\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 79f16cb3358..2cd397f4db3 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-04 01:59+0200\n" +"POT-Creation-Date: 2013-05-12 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index b0388cd0404..356bb267b81 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-04 01:59+0200\n" +"POT-Creation-Date: 2013-05-12 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -165,7 +165,7 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:36 personal.php:37 +#: personal.php:35 personal.php:36 msgid "__language_name__" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 5a1fafb41da..ba8a5766964 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-04 01:58+0200\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index e1e122832b1..9215452368d 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-04 01:58+0200\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index ee5739f4cf3..a3627605922 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-02 02:14+0200\n" -"PO-Revision-Date: 2013-04-26 08:00+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-04 12:10+0000\n" +"Last-Translator: Abduqadir Abliz \n" +"Language-Team: Uighur \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -82,83 +82,83 @@ msgstr "" #: js/config.php:34 msgid "Sunday" -msgstr "" +msgstr "يەكشەنبە" #: js/config.php:35 msgid "Monday" -msgstr "" +msgstr "دۈشەنبە" #: js/config.php:36 msgid "Tuesday" -msgstr "" +msgstr "سەيشەنبە" #: js/config.php:37 msgid "Wednesday" -msgstr "" +msgstr "چارشەنبە" #: js/config.php:38 msgid "Thursday" -msgstr "" +msgstr "پەيشەنبە" #: js/config.php:39 msgid "Friday" -msgstr "" +msgstr "جۈمە" #: js/config.php:40 msgid "Saturday" -msgstr "" +msgstr "شەنبە" #: js/config.php:45 msgid "January" -msgstr "" +msgstr "قەھرىتان" #: js/config.php:46 msgid "February" -msgstr "" +msgstr "ھۇت" #: js/config.php:47 msgid "March" -msgstr "" +msgstr "نەۋرۇز" #: js/config.php:48 msgid "April" -msgstr "" +msgstr "ئۇمۇت" #: js/config.php:49 msgid "May" -msgstr "" +msgstr "باھار" #: js/config.php:50 msgid "June" -msgstr "" +msgstr "سەپەر" #: js/config.php:51 msgid "July" -msgstr "" +msgstr "چىللە" #: js/config.php:52 msgid "August" -msgstr "" +msgstr "تومۇز" #: js/config.php:53 msgid "September" -msgstr "" +msgstr "مىزان" #: js/config.php:54 msgid "October" -msgstr "" +msgstr "ئوغۇز" #: js/config.php:55 msgid "November" -msgstr "" +msgstr "ئوغلاق" #: js/config.php:56 msgid "December" -msgstr "" +msgstr "كۆنەك" #: js/js.js:286 msgid "Settings" -msgstr "" +msgstr "تەڭشەكلەر" #: js/js.js:718 msgid "seconds ago" @@ -166,7 +166,7 @@ msgstr "" #: js/js.js:719 msgid "1 minute ago" -msgstr "" +msgstr "1 مىنۇت ئىلگىرى" #: js/js.js:720 msgid "{minutes} minutes ago" @@ -174,7 +174,7 @@ msgstr "" #: js/js.js:721 msgid "1 hour ago" -msgstr "" +msgstr "1 سائەت ئىلگىرى" #: js/js.js:722 msgid "{hours} hours ago" @@ -182,11 +182,11 @@ msgstr "" #: js/js.js:723 msgid "today" -msgstr "" +msgstr "بۈگۈن" #: js/js.js:724 msgid "yesterday" -msgstr "" +msgstr "تۈنۈگۈن" #: js/js.js:725 msgid "{days} days ago" @@ -214,11 +214,11 @@ msgstr "" #: js/oc-dialogs.js:117 js/oc-dialogs.js:247 msgid "Ok" -msgstr "" +msgstr "جەزملە" #: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "" +msgstr "ۋاز كەچ" #: js/oc-dialogs.js:185 msgid "Choose" @@ -226,11 +226,11 @@ msgstr "" #: js/oc-dialogs.js:215 msgid "Yes" -msgstr "" +msgstr "ھەئە" #: js/oc-dialogs.js:222 msgid "No" -msgstr "" +msgstr "ياق" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 @@ -243,7 +243,7 @@ msgstr "" #: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 #: js/share.js:589 msgid "Error" -msgstr "" +msgstr "خاتالىق" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -259,7 +259,7 @@ msgstr "" #: js/share.js:90 msgid "Share" -msgstr "" +msgstr "ھەمبەھىر" #: js/share.js:125 js/share.js:617 msgid "Error while sharing" @@ -283,7 +283,7 @@ msgstr "" #: js/share.js:159 msgid "Share with" -msgstr "" +msgstr "ھەمبەھىر" #: js/share.js:164 msgid "Share with link" @@ -295,7 +295,7 @@ msgstr "" #: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" -msgstr "" +msgstr "ئىم" #: js/share.js:173 msgid "Email link to person" @@ -303,7 +303,7 @@ msgstr "" #: js/share.js:174 msgid "Send" -msgstr "" +msgstr "يوللا" #: js/share.js:178 msgid "Set expiration date" @@ -331,7 +331,7 @@ msgstr "" #: js/share.js:308 msgid "Unshare" -msgstr "" +msgstr "ھەمبەھىرلىمە" #: js/share.js:320 msgid "can edit" @@ -351,11 +351,11 @@ msgstr "" #: js/share.js:331 msgid "delete" -msgstr "" +msgstr "ئۆچۈر" #: js/share.js:334 msgid "share" -msgstr "" +msgstr "ھەمبەھىر" #: js/share.js:368 js/share.js:564 msgid "Password protected" @@ -414,7 +414,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 #: templates/login.php:19 msgid "Username" -msgstr "" +msgstr "ئىشلەتكۈچى ئاتى" #: lostpassword/templates/lostpassword.php:21 msgid "Request reset" @@ -430,7 +430,7 @@ msgstr "" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "" +msgstr "يېڭى ئىم" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" @@ -438,15 +438,15 @@ msgstr "" #: strings.php:5 msgid "Personal" -msgstr "" +msgstr "شەخسىي" #: strings.php:6 msgid "Users" -msgstr "" +msgstr "ئىشلەتكۈچىلەر" #: strings.php:7 msgid "Apps" -msgstr "" +msgstr "ئەپلەر" #: strings.php:8 msgid "Admin" @@ -454,7 +454,7 @@ msgstr "" #: strings.php:9 msgid "Help" -msgstr "" +msgstr "ياردەم" #: templates/403.php:12 msgid "Access forbidden" @@ -470,7 +470,7 @@ msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "" +msgstr "قوش" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 @@ -516,7 +516,7 @@ msgstr "" #: templates/installation.php:62 msgid "Advanced" -msgstr "" +msgstr "ئالىي" #: templates/installation.php:64 msgid "Data folder" @@ -554,7 +554,7 @@ msgstr "" #: templates/installation.php:172 msgid "Finish setup" -msgstr "" +msgstr "تەڭشەك تامام" #: templates/layout.guest.php:40 msgid "web services under your control" @@ -567,7 +567,7 @@ msgstr "" #: templates/layout.user.php:61 msgid "Log out" -msgstr "" +msgstr "تىزىمدىن چىق" #: templates/login.php:9 msgid "Automatic logon rejected!" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 03b8fe9308e..fa4a56b319c 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-02 02:14+0200\n" -"PO-Revision-Date: 2013-04-26 08:00+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-04 12:00+0000\n" +"Last-Translator: Abduqadir Abliz \n" +"Language-Team: Uighur \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -25,15 +25,15 @@ msgstr "" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "%s يۆتكىيەلمەيدۇ" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "" +msgstr "ھۆججەت ئاتىنى ئۆزگەرتكىلى بولمايدۇ" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "ھېچقانداق ھۆججەت يۈكلەنمىدى. يوچۇن خاتالىق" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" @@ -56,19 +56,19 @@ msgstr "" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "" +msgstr "ھېچقانداق ھۆججەت يۈكلەنمىدى" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "" +msgstr "ۋاقىتلىق قىسقۇچ كەم." #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "" +msgstr "دىسكىغا يازالمىدى" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "" +msgstr "يېتەرلىك ساقلاش بوشلۇقى يوق" #: ajax/upload.php:83 msgid "Invalid directory." @@ -76,43 +76,43 @@ msgstr "" #: appinfo/app.php:12 msgid "Files" -msgstr "" +msgstr "ھۆججەتلەر" #: js/fileactions.js:116 msgid "Share" -msgstr "" +msgstr "ھەمبەھىر" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "" +msgstr "مەڭگۈلۈك ئۆچۈر" #: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" -msgstr "" +msgstr "ئۆچۈر" #: js/fileactions.js:194 msgid "Rename" -msgstr "" +msgstr "ئات ئۆزگەرت" #: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "" +msgstr "كۈتۈۋاتىدۇ" #: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "" +msgstr "{new_name} مەۋجۇت" #: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "" +msgstr "ئالماشتۇر" #: js/filelist.js:252 msgid "suggest name" -msgstr "" +msgstr "تەۋسىيە ئات" #: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "" +msgstr "ۋاز كەچ" #: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" @@ -120,7 +120,7 @@ msgstr "" #: js/filelist.js:299 msgid "undo" -msgstr "" +msgstr "يېنىۋال" #: js/filelist.js:324 msgid "perform delete operation" @@ -128,11 +128,11 @@ msgstr "" #: js/filelist.js:406 msgid "1 file uploading" -msgstr "" +msgstr "1 ھۆججەت يۈكلىنىۋاتىدۇ" #: js/filelist.js:409 js/filelist.js:463 msgid "files uploading" -msgstr "" +msgstr "ھۆججەت يۈكلىنىۋاتىدۇ" #: js/files.js:52 msgid "'.' is an invalid file name." @@ -168,16 +168,16 @@ msgstr "" #: js/files.js:277 msgid "Not enough space available" -msgstr "" +msgstr "يېتەرلىك بوشلۇق يوق" #: js/files.js:317 msgid "Upload cancelled." -msgstr "" +msgstr "يۈكلەشتىن ۋاز كەچتى." #: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "ھۆججەت يۈكلەش مەشغۇلاتى ئېلىپ بېرىلىۋاتىدۇ. Leaving the page now will cancel the upload." #: js/files.js:486 msgid "URL cannot be empty." @@ -189,23 +189,23 @@ msgstr "" #: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" -msgstr "" +msgstr "خاتالىق" #: js/files.js:877 templates/index.php:69 msgid "Name" -msgstr "" +msgstr "ئاتى" #: js/files.js:878 templates/index.php:80 msgid "Size" -msgstr "" +msgstr "چوڭلۇقى" #: js/files.js:879 templates/index.php:82 msgid "Modified" -msgstr "" +msgstr "ئۆزگەرتكەن" #: js/files.js:898 msgid "1 folder" -msgstr "" +msgstr "1 قىسقۇچ" #: js/files.js:900 msgid "{count} folders" @@ -213,15 +213,15 @@ msgstr "" #: js/files.js:908 msgid "1 file" -msgstr "" +msgstr "1 ھۆججەت" #: js/files.js:910 msgid "{count} files" -msgstr "" +msgstr "{count} ھۆججەت" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "" +msgstr "يۈكلە" #: templates/admin.php:5 msgid "File handling" @@ -253,19 +253,19 @@ msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "" +msgstr "ساقلا" #: templates/index.php:7 msgid "New" -msgstr "" +msgstr "يېڭى" #: templates/index.php:10 msgid "Text file" -msgstr "" +msgstr "تېكىست ھۆججەت" #: templates/index.php:12 msgid "Folder" -msgstr "" +msgstr "قىسقۇچ" #: templates/index.php:14 msgid "From link" @@ -273,11 +273,11 @@ msgstr "" #: templates/index.php:42 msgid "Deleted files" -msgstr "" +msgstr "ئۆچۈرۈلگەن ھۆججەتلەر" #: templates/index.php:48 msgid "Cancel upload" -msgstr "" +msgstr "يۈكلەشتىن ۋاز كەچ" #: templates/index.php:54 msgid "You don’t have write permissions here." @@ -285,19 +285,19 @@ msgstr "" #: templates/index.php:61 msgid "Nothing in here. Upload something!" -msgstr "" +msgstr "بۇ جايدا ھېچنېمە يوق. Upload something!" #: templates/index.php:75 msgid "Download" -msgstr "" +msgstr "چۈشۈر" #: templates/index.php:87 templates/index.php:88 msgid "Unshare" -msgstr "" +msgstr "ھەمبەھىرلىمە" #: templates/index.php:107 msgid "Upload too large" -msgstr "" +msgstr "يۈكلەندىغىنى بەك چوڭ" #: templates/index.php:109 msgid "" @@ -315,4 +315,4 @@ msgstr "" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "ھۆججەت سىستېما غەملىكىنى يۈكسەلدۈرۈۋاتىدۇ…" diff --git a/l10n/ug/files_encryption.po b/l10n/ug/files_encryption.po index f41668c2584..ce1f593333f 100644 --- a/l10n/ug/files_encryption.po +++ b/l10n/ug/files_encryption.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-02 02:14+0200\n" -"PO-Revision-Date: 2013-04-26 08:01+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-04 12:10+0000\n" +"Last-Translator: Abduqadir Abliz \n" +"Language-Team: Uighur \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -19,20 +19,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "" +msgstr "شىفىرلاش" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "ھۆججەت شىفىرلاش قوزغىتىلدى." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "تۆۋەندىكى ھۆججەت تىپلىرى شىفىرلانمايدۇ:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "تۆۋەندىكى ھۆججەت تىپلىرى شىفىرلاشنىڭ سىرتىدا:" #: templates/settings.php:12 msgid "None" -msgstr "" +msgstr "يوق" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index eb512c8a138..1da94038c56 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-02 02:14+0200\n" -"PO-Revision-Date: 2013-04-26 08:01+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-04 11:50+0000\n" +"Last-Translator: Abduqadir Abliz \n" +"Language-Team: Uighur \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -63,19 +63,19 @@ msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "" +msgstr "قىسقۇچ ئاتى" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "سىرتقى ساقلىغۇچ" #: templates/settings.php:11 msgid "Configuration" -msgstr "" +msgstr "سەپلىمە" #: templates/settings.php:12 msgid "Options" -msgstr "" +msgstr "تاللانما" #: templates/settings.php:13 msgid "Applicable" @@ -95,16 +95,16 @@ msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "" +msgstr "گۇرۇپپا" #: templates/settings.php:100 msgid "Users" -msgstr "" +msgstr "ئىشلەتكۈچىلەر" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "" +msgstr "ئۆچۈر" #: templates/settings.php:129 msgid "Enable User External Storage" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index b8c70243a8d..85d88c61819 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# uqkun , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-02 02:14+0200\n" -"PO-Revision-Date: 2013-04-26 08:01+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-08 15:21+0000\n" +"Last-Translator: uqkun \n" +"Language-Team: Uighur \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -19,11 +20,11 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "ئىم" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "تاپشۇر" #: templates/public.php:10 #, php-format @@ -37,7 +38,7 @@ msgstr "" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "" +msgstr "چۈشۈر" #: templates/public.php:40 msgid "No preview available for" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 50afd6bcf85..af6a62272cd 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-02 02:14+0200\n" -"PO-Revision-Date: 2013-04-26 08:01+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-04 12:00+0000\n" +"Last-Translator: Abduqadir Abliz \n" +"Language-Team: Uighur \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -33,7 +33,7 @@ msgstr "" #: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 msgid "Error" -msgstr "" +msgstr "خاتالىق" #: js/trash.js:34 msgid "delete file permanently" @@ -41,19 +41,19 @@ msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "" +msgstr "مەڭگۈلۈك ئۆچۈر" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "" +msgstr "ئاتى" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "" +msgstr "ئۆچۈرۈلدى" #: js/trash.js:184 msgid "1 folder" -msgstr "" +msgstr "1 قىسقۇچ" #: js/trash.js:186 msgid "{count} folders" @@ -61,15 +61,15 @@ msgstr "" #: js/trash.js:194 msgid "1 file" -msgstr "" +msgstr "1 ھۆججەت" #: js/trash.js:196 msgid "{count} files" -msgstr "" +msgstr "{count} ھۆججەت" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "" +msgstr "بۇ جايدا ھېچنېمە يوق. Your trash bin is empty!" #: templates/index.php:20 templates/index.php:22 msgid "Restore" @@ -77,7 +77,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "" +msgstr "ئۆچۈر" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/ug/files_versions.po b/l10n/ug/files_versions.po index 7237f3fcb8c..bc0751f8d0a 100644 --- a/l10n/ug/files_versions.po +++ b/l10n/ug/files_versions.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-02 02:14+0200\n" -"PO-Revision-Date: 2013-04-26 08:01+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-04 11:40+0000\n" +"Last-Translator: Abduqadir Abliz \n" +"Language-Team: Uighur \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,20 +20,20 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "ئەسلىگە قايتۇرالمايدۇ: %s" #: history.php:40 msgid "success" -msgstr "" +msgstr "مۇۋەپپەقىيەتلىك" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "" +msgstr "ھۆججەت %s نى %s نەشرىگە ئەسلىگە قايتۇردى" #: history.php:49 msgid "failure" -msgstr "" +msgstr "مەغلۇپ بولدى" #: history.php:51 #, php-format @@ -42,15 +42,15 @@ msgstr "" #: history.php:69 msgid "No old versions available" -msgstr "" +msgstr "كونا نەشرى يوق" #: history.php:74 msgid "No path specified" -msgstr "" +msgstr "يول بەلگىلەنمىگەن" #: js/versions.js:6 msgid "Versions" -msgstr "" +msgstr "نەشرى" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index c1abb1aaa8f..a14470fe872 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-02 02:15+0200\n" -"PO-Revision-Date: 2013-04-26 08:01+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" +"POT-Creation-Date: 2013-05-12 02:02+0200\n" +"PO-Revision-Date: 2013-05-04 12:00+0000\n" +"Last-Translator: Abduqadir Abliz \n" +"Language-Team: Uighur \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -19,41 +19,41 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "" +msgstr "ياردەم" #: app.php:362 msgid "Personal" -msgstr "" +msgstr "شەخسىي" #: app.php:373 msgid "Settings" -msgstr "" +msgstr "تەڭشەكلەر" #: app.php:385 msgid "Users" -msgstr "" +msgstr "ئىشلەتكۈچىلەر" #: app.php:398 msgid "Apps" -msgstr "" +msgstr "ئەپلەر" #: app.php:406 msgid "Admin" msgstr "" -#: files.php:209 +#: files.php:207 msgid "ZIP download is turned off." msgstr "" -#: files.php:210 +#: files.php:208 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:211 files.php:244 +#: files.php:209 files.php:242 msgid "Back to Files" msgstr "" -#: files.php:241 +#: files.php:239 msgid "Selected files too large to generate zip file." msgstr "" @@ -67,7 +67,7 @@ msgstr "" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "" +msgstr "سالاھىيەت دەلىللەش خاتالىقى" #: json.php:51 msgid "Token expired. Please reload page." @@ -75,15 +75,15 @@ msgstr "" #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "ھۆججەتلەر" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "قىسقا ئۇچۇر" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "سۈرەتلەر" #: setup.php:34 msgid "Set an admin username." @@ -189,34 +189,34 @@ msgstr "" #: template.php:114 msgid "1 minute ago" -msgstr "" +msgstr "1 مىنۇت ئىلگىرى" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "%d مىنۇت ئىلگىرى" #: template.php:116 msgid "1 hour ago" -msgstr "" +msgstr "1 سائەت ئىلگىرى" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "" +msgstr "%d سائەت ئىلگىرى" #: template.php:118 msgid "today" -msgstr "" +msgstr "بۈگۈن" #: template.php:119 msgid "yesterday" -msgstr "" +msgstr "تۈنۈگۈن" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "" +msgstr "%d كۈن ئىلگىرى" #: template.php:121 msgid "last month" @@ -225,7 +225,7 @@ msgstr "" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "" +msgstr "%d ئاي ئىلگىرى" #: template.php:123 msgid "last year" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 8908acf11ab..056a0697be8 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-02 02:15+0200\n" -"PO-Revision-Date: 2013-04-26 08:00+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" +"POT-Creation-Date: 2013-05-12 02:02+0200\n" +"PO-Revision-Date: 2013-05-04 12:00+0000\n" +"Last-Translator: Abduqadir Abliz \n" +"Language-Team: Uighur \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -19,56 +19,56 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "" +msgstr "ئەپ بازىرىدىن تىزىمنى يۈكلىيەلمىدى" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "" +msgstr "سالاھىيەت دەلىللەش خاتالىقى" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "كۆرسىتىدىغان ئىسمىڭىز ئۆزگەردى." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "" +msgstr "كۆرسىتىدىغان ئىسىمنى ئۆزگەرتكىلى بولمايدۇ" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "" +msgstr "گۇرۇپپا مەۋجۇت" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "" +msgstr "گۇرۇپپا قوشقىلى بولمايدۇ" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "" +msgstr "ئەپنى قوزغىتالمىدى. " #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "" +msgstr "تورخەت ساقلاندى" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "" +msgstr "ئىناۋەتسىز تورخەت" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "" +msgstr "گۇرۇپپىنى ئۆچۈرەلمىدى" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "" +msgstr "ئىشلەتكۈچىنى ئۆچۈرەلمىدى" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "" +msgstr "تىل ئۆزگەردى" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "" +msgstr "ئىناۋەتسىز ئىلتىماس" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -77,91 +77,91 @@ msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "ئىشلەتكۈچىنى %s گۇرۇپپىغا قوشالمايدۇ" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "ئىشلەتكۈچىنى %s گۇرۇپپىدىن چىقىرىۋېتەلمەيدۇ" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "ئەپنى يېڭىلىيالمايدۇ." #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "" +msgstr "{appversion} غا يېڭىلايدۇ" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "" +msgstr "چەكلە" #: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" -msgstr "" +msgstr "قوزغات" #: js/apps.js:55 msgid "Please wait...." -msgstr "" +msgstr "سەل كۈتۈڭ…" #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" -msgstr "" +msgstr "خاتالىق" #: js/apps.js:90 msgid "Updating...." -msgstr "" +msgstr "يېڭىلاۋاتىدۇ…" #: js/apps.js:93 msgid "Error while updating app" -msgstr "" +msgstr "ئەپنى يېڭىلاۋاتقاندا خاتالىق كۆرۈلدى" #: js/apps.js:96 msgid "Updated" -msgstr "" +msgstr "يېڭىلاندى" #: js/personal.js:118 msgid "Saving..." -msgstr "" +msgstr "ساقلاۋاتىدۇ…" -#: js/users.js:43 +#: js/users.js:47 msgid "deleted" -msgstr "" +msgstr "ئۆچۈرۈلگەن" -#: js/users.js:43 +#: js/users.js:47 msgid "undo" -msgstr "" +msgstr "يېنىۋال" -#: js/users.js:75 +#: js/users.js:79 msgid "Unable to remove user" -msgstr "" +msgstr "ئىشلەتكۈچىنى چىقىرىۋېتەلمەيدۇ" -#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: js/users.js:92 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" -msgstr "" +msgstr "گۇرۇپپا" -#: js/users.js:91 templates/users.php:80 templates/users.php:115 +#: js/users.js:95 templates/users.php:80 templates/users.php:115 msgid "Group Admin" -msgstr "" +msgstr "گۇرۇپپا باشقۇرغۇچى" -#: js/users.js:111 templates/users.php:155 +#: js/users.js:115 templates/users.php:155 msgid "Delete" -msgstr "" +msgstr "ئۆچۈر" -#: js/users.js:262 +#: js/users.js:269 msgid "add group" -msgstr "" +msgstr "گۇرۇپپا قوش" -#: js/users.js:414 +#: js/users.js:420 msgid "A valid username must be provided" msgstr "" -#: js/users.js:415 js/users.js:421 js/users.js:436 +#: js/users.js:421 js/users.js:427 js/users.js:442 msgid "Error creating user" msgstr "" -#: js/users.js:420 +#: js/users.js:426 msgid "A valid password must be provided" msgstr "" @@ -255,7 +255,7 @@ msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "" +msgstr "ھەمبەھىر" #: templates/admin.php:134 msgid "Enable Share API" @@ -291,7 +291,7 @@ msgstr "" #: templates/admin.php:168 msgid "Security" -msgstr "" +msgstr "بىخەتەرلىك" #: templates/admin.php:181 msgid "Enforce HTTPS" @@ -310,23 +310,23 @@ msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "" +msgstr "خاتىرە" #: templates/admin.php:196 msgid "Log level" -msgstr "" +msgstr "خاتىرە دەرىجىسى" #: templates/admin.php:227 msgid "More" -msgstr "" +msgstr "تېخىمۇ كۆپ" #: templates/admin.php:228 msgid "Less" -msgstr "" +msgstr "ئاز" #: templates/admin.php:235 templates/personal.php:105 msgid "Version" -msgstr "" +msgstr "نەشرى" #: templates/admin.php:237 templates/personal.php:108 msgid "" @@ -340,15 +340,15 @@ msgstr "" #: templates/apps.php:11 msgid "Add your App" -msgstr "" +msgstr "ئەپىڭىزنى قوشۇڭ" #: templates/apps.php:12 msgid "More Apps" -msgstr "" +msgstr "تېخىمۇ كۆپ ئەپلەر" #: templates/apps.php:28 msgid "Select an App" -msgstr "" +msgstr "بىر ئەپ تاللاڭ" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" @@ -360,23 +360,23 @@ msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "" +msgstr "يېڭىلا" #: templates/help.php:4 msgid "User Documentation" -msgstr "" +msgstr "ئىشلەتكۈچى قوللانمىسى" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "" +msgstr "باشقۇرغۇچى قوللانمىسى" #: templates/help.php:9 msgid "Online Documentation" -msgstr "" +msgstr "توردىكى قوللانما" #: templates/help.php:11 msgid "Forum" -msgstr "" +msgstr "مۇنبەر" #: templates/help.php:14 msgid "Bugtracker" @@ -401,55 +401,55 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:77 msgid "Password" -msgstr "" +msgstr "ئىم" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "" +msgstr "ئىمىڭىز مۇۋەپپەقىيەتلىك ئۆزگەرتىلدى" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "" +msgstr "ئىمنى ئۆزگەرتكىلى بولمايدۇ." #: templates/personal.php:40 msgid "Current password" -msgstr "" +msgstr "نۆۋەتتىكى ئىم" #: templates/personal.php:42 msgid "New password" -msgstr "" +msgstr "يېڭى ئىم" #: templates/personal.php:44 msgid "Change password" -msgstr "" +msgstr "ئىم ئۆزگەرت" #: templates/personal.php:56 templates/users.php:76 msgid "Display Name" -msgstr "" +msgstr "كۆرسىتىش ئىسمى" #: templates/personal.php:68 msgid "Email" -msgstr "" +msgstr "تورخەت" #: templates/personal.php:70 msgid "Your email address" -msgstr "" +msgstr "تورخەت ئادرېسىڭىز" #: templates/personal.php:71 msgid "Fill in an email address to enable password recovery" -msgstr "" +msgstr "ئىم ئەسلىگە كەلتۈرۈشتە ئىشلىتىدىغان تور خەت ئادرېسىنى تولدۇرۇڭ" #: templates/personal.php:77 templates/personal.php:78 msgid "Language" -msgstr "" +msgstr "تىل" #: templates/personal.php:89 msgid "Help translate" -msgstr "" +msgstr "تەرجىمىگە ياردەم" #: templates/personal.php:94 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:96 msgid "Use this address to connect to your ownCloud in your file manager" @@ -457,36 +457,36 @@ msgstr "" #: templates/users.php:21 templates/users.php:75 msgid "Login Name" -msgstr "" +msgstr "تىزىمغا كىرىش ئاتى" #: templates/users.php:30 msgid "Create" -msgstr "" +msgstr "قۇر" #: templates/users.php:33 msgid "Default Storage" -msgstr "" +msgstr "كۆڭۈلدىكى ساقلىغۇچ" #: templates/users.php:39 templates/users.php:133 msgid "Unlimited" -msgstr "" +msgstr "چەكسىز" #: templates/users.php:57 templates/users.php:148 msgid "Other" -msgstr "" +msgstr "باشقا" #: templates/users.php:82 msgid "Storage" -msgstr "" +msgstr "ساقلىغۇچ" #: templates/users.php:93 msgid "change display name" -msgstr "" +msgstr "كۆرسىتىدىغان ئىسىمنى ئۆزگەرت" #: templates/users.php:97 msgid "set new password" -msgstr "" +msgstr "يېڭى ئىم تەڭشە" #: templates/users.php:128 msgid "Default" -msgstr "" +msgstr "كۆڭۈلدىكى" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index a8ca272882e..f6fcf46d4e2 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-02 02:14+0200\n" -"PO-Revision-Date: 2013-04-26 08:02+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-04 11:50+0000\n" +"Last-Translator: Abduqadir Abliz \n" +"Language-Team: Uighur \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -39,7 +39,7 @@ msgstr "" #: js/settings.js:66 msgid "Deletion failed" -msgstr "" +msgstr "ئۆچۈرۈش مەغلۇپ بولدى" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" @@ -92,7 +92,7 @@ msgstr "" #: templates/settings.php:36 msgid "Host" -msgstr "" +msgstr "باش ئاپپارات" #: templates/settings.php:38 msgid "" @@ -124,7 +124,7 @@ msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "" +msgstr "ئىم" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." @@ -132,7 +132,7 @@ msgstr "" #: templates/settings.php:50 msgid "User Login Filter" -msgstr "" +msgstr "ئىشلەتكۈچى تىزىمغا كىرىش سۈزگۈچى" #: templates/settings.php:53 #, php-format @@ -148,7 +148,7 @@ msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "" +msgstr "ئىشلەتكۈچى تىزىم سۈزگۈچى" #: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." @@ -160,7 +160,7 @@ msgstr "" #: templates/settings.php:60 msgid "Group Filter" -msgstr "" +msgstr "گۇرۇپپا سۈزگۈچ" #: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." @@ -172,11 +172,11 @@ msgstr "" #: templates/settings.php:68 msgid "Connection Settings" -msgstr "" +msgstr "باغلىنىش تەڭشىكى" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "" +msgstr "سەپلىمە ئاكتىپ" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." @@ -184,7 +184,7 @@ msgstr "" #: templates/settings.php:71 msgid "Port" -msgstr "" +msgstr "ئېغىز" #: templates/settings.php:72 msgid "Backup (Replica) Host" @@ -210,7 +210,7 @@ msgstr "" #: templates/settings.php:75 msgid "Use TLS" -msgstr "" +msgstr "TLS ئىشلەت" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." @@ -330,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "" +msgstr "ياردەم" diff --git a/l10n/ug/user_webdavauth.po b/l10n/ug/user_webdavauth.po index 5af76959104..30ac4d4ad7e 100644 --- a/l10n/ug/user_webdavauth.po +++ b/l10n/ug/user_webdavauth.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# uqkun , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-02 02:14+0200\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-04 11:40+0000\n" +"Last-Translator: Abduqadir Abliz \n" +"Language-Team: Uighur \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -19,11 +20,11 @@ msgstr "" #: templates/settings.php:3 msgid "WebDAV Authentication" -msgstr "" +msgstr "WebDAV سالاھىيەت دەلىللەش" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:7 msgid "" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index d664c1fa066..e6723000ef9 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# xtdv , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-04 17:50+0000\n" +"Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -401,11 +402,11 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "Liên kết tạo lại mật khẩu đã được gửi tới hộp thư của bạn.
Nếu bạn không thấy nó sau một khoảng thời gian, vui lòng kiểm tra trong thư mục Spam/Rác.
Nếu vẫn không thấy, vui lòng hỏi người quản trị hệ thống." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "Yêu cầu thất bại!
Bạn có chắc là email/tên đăng nhập của bạn chính xác?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -479,11 +480,11 @@ msgstr "Cảnh bảo bảo mật" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Phiên bản PHP của bạn có lỗ hổng NULL Byte attack (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "Vui lòng cập nhật bản cài đặt PHP để sử dụng ownCloud một cách an toàn." #: templates/installation.php:32 msgid "" @@ -563,7 +564,7 @@ msgstr "dịch vụ web dưới sự kiểm soát của bạn" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s còn trống. Xem thêm thông tin cách cập nhật." #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 8a9cc154480..d6dfedc95a9 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# xtdv , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-04 17:40+0000\n" +"Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +21,7 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Không thể di chuyển %s - Đã có tên file này trên hệ thống" +msgstr "Không thể di chuyển %s - Đã có tên tập tin này trên hệ thống" #: ajax/move.php:27 ajax/move.php:30 #, php-format @@ -86,7 +87,7 @@ msgstr "Chia sẻ" msgid "Delete permanently" msgstr "Xóa vĩnh vễn" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Xóa" @@ -156,66 +157,66 @@ msgstr "Your storage is full, files can not be updated or synced anymore!" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Your storage is almost full ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Your download is being prepared. This might take some time if the files are big." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Không thể tải lên tập tin của bạn ,nó như là một thư mục hoặc có 0 byte" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" -msgstr "" +msgstr "Không đủ chỗ trống cần thiết" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Hủy tải lên" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URL không được để trống." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Lỗi" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Tên" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 thư mục" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} thư mục" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 tập tin" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} tập tin" @@ -279,40 +280,40 @@ msgstr "File đã bị xóa" msgid "Cancel upload" msgstr "Hủy upload" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." -msgstr "" +msgstr "Bạn không có quyền ghi vào đây." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Không có gì ở đây .Hãy tải lên một cái gì đó !" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Tải về" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Bỏ chia sẻ" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Tập tin tải lên quá lớn" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Các tập tin bạn đang tải lên vượt quá kích thước tối đa cho phép trên máy chủ ." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Tập tin đang được quét ,vui lòng chờ." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Hiện tại đang quét" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Upgrading filesystem cache..." +msgstr "Đang nâng cấp bộ nhớ đệm cho tập tin hệ thống..." diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index 5a4d0493a78..fd539c747a2 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# xtdv , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:29+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-05 06:20+0000\n" +"Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +56,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "Cảnh báo: Tính năng Curl trong PHP chưa được kích hoạt hoặc cài đặt. Việc gắn kết ownCloud / WebDAV hay GoogleDrive không thực hiện được. Vui lòng liên hệ người quản trị để cài đặt nó." #: templates/settings.php:3 msgid "External Storage" @@ -67,7 +68,7 @@ msgstr "Tên thư mục" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "Lưu trữ ngoài" #: templates/settings.php:11 msgid "Configuration" @@ -83,7 +84,7 @@ msgstr "Áp dụng" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "Thêm bộ nhớ" #: templates/settings.php:90 msgid "None set" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 1b9c3c88568..a9e6d7581f5 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# zhangmin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-04 02:20+0000\n" +"Last-Translator: zhangmin \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -401,11 +402,11 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "重置密码的链接已发送到您的邮箱。
如果您觉得在合理的时间内还未收到邮件,请查看 spam/junk 目录。
如果没有在那里,请询问您的本地管理员。" #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "请求失败
您确定您的邮箱/用户名是正确的?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -563,7 +564,7 @@ msgstr "您控制的web服务" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s 可用。获取更多关于如何升级的信息。" #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 73987140074..9044f64dc2e 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# zhangmin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:17+0200\n" -"PO-Revision-Date: 2013-04-26 16:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:02+0200\n" +"PO-Revision-Date: 2013-05-04 02:20+0000\n" +"Last-Translator: zhangmin \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +29,7 @@ msgstr "认证出错" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "您的显示名字已经改变" #: ajax/changedisplayname.php:34 msgid "Unable to change display name" @@ -124,44 +125,44 @@ msgstr "已更新" msgid "Saving..." msgstr "保存中" -#: js/users.js:43 +#: js/users.js:47 msgid "deleted" msgstr "已经删除" -#: js/users.js:43 +#: js/users.js:47 msgid "undo" msgstr "撤销" -#: js/users.js:75 +#: js/users.js:79 msgid "Unable to remove user" msgstr "无法移除用户" -#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: js/users.js:92 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" msgstr "组" -#: js/users.js:91 templates/users.php:80 templates/users.php:115 +#: js/users.js:95 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "组管理员" -#: js/users.js:111 templates/users.php:155 +#: js/users.js:115 templates/users.php:155 msgid "Delete" msgstr "删除" -#: js/users.js:262 +#: js/users.js:269 msgid "add group" msgstr "添加组" -#: js/users.js:414 +#: js/users.js:420 msgid "A valid username must be provided" msgstr "必须提供合法的用户名" -#: js/users.js:415 js/users.js:421 js/users.js:436 +#: js/users.js:421 js/users.js:427 js/users.js:442 msgid "Error creating user" msgstr "创建用户出错" -#: js/users.js:420 +#: js/users.js:426 msgid "A valid password must be provided" msgstr "必须提供合法的密码" @@ -328,7 +329,7 @@ msgstr "更少" msgid "Version" msgstr "版本" -#: templates/admin.php:238 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:108 msgid "" "Developed by the
ownCloud community, the , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-30 01:57+0200\n" -"PO-Revision-Date: 2013-04-29 23:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-04 04:20+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -401,11 +402,11 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "重設密碼的連結已經寄至您的電子郵件信箱,如果您過了一段時間還是沒有收到它,請檢查看看它是不是被放到垃圾郵件了,如果還是沒有的話,請聯絡您的 ownCloud 系統管理員。" #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "請求失敗!
您確定填入的電子郵件地址或是帳號名稱是正確的嗎?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -563,7 +564,7 @@ msgstr "由您控制的網路服務" #: templates/layout.user.php:36 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s 已經釋出,瞭解更多資訊以進行更新。" #: templates/layout.user.php:61 msgid "Log out" diff --git a/l10n/zh_TW/files_versions.po b/l10n/zh_TW/files_versions.po index 0269ee3c341..ceb0cbe0535 100644 --- a/l10n/zh_TW/files_versions.po +++ b/l10n/zh_TW/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# pellaeon , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:30+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-06 07:10+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,7 +47,7 @@ msgstr "沒有舊的版本" #: history.php:74 msgid "No path specified" -msgstr "沒有指定路線" +msgstr "沒有指定路徑" #: js/versions.js:6 msgid "Versions" @@ -54,4 +55,4 @@ msgstr "版本" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "按一按復原的按鈕,就能把一個檔案復原至以前的版本" +msgstr "按一下復原的按鈕即可把檔案復原至以前的版本" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 87daf4265bb..29607494a30 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:31+0000\n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-06 07:20+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" diff --git a/l10n/zh_TW/user_webdavauth.po b/l10n/zh_TW/user_webdavauth.po index 19c7a6a94c8..4dd48e2ce3d 100644 --- a/l10n/zh_TW/user_webdavauth.po +++ b/l10n/zh_TW/user_webdavauth.po @@ -3,16 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# Hydriz Scholz , 2013. -# , 2012. +# Hydriz , 2013 +# Hydriz , 2013 +# pellaeon , 2013 +# sofiasu , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-17 02:20+0200\n" -"PO-Revision-Date: 2013-04-17 00:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"PO-Revision-Date: 2013-05-06 07:10+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,4 +34,4 @@ msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " "credentials, and all other responses as valid credentials." -msgstr "ownCloud會將把用戶的證件發送到這個網址。這個插件會檢查回應,並把HTTP狀態代碼401和403視為無效證件和所有其他回應視為有效證件。" +msgstr "ownCloud 會將把用戶的登入資訊發送到這個網址以嘗試登入,並檢查回應, HTTP 狀態碼401和403視為登入失敗,所有其他回應視為登入成功。" diff --git a/lib/l10n/de.php b/lib/l10n/de.php index cd1bf104d35..13acc1c55b5 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -35,7 +35,7 @@ "Offending command was: \"%s\", name: %s, password: %s" => "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s", "MS SQL username and/or password not valid: %s" => "MS SQL Benutzername und/oder Password ungültig: %s", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist.", -"Please double check the
installation guides." => "Bitte prüfen Sie die Installationsanleitungen.", +"Please double check the installation guides." => "Bitte prüfe die Installationsanleitungen.", "seconds ago" => "Gerade eben", "1 minute ago" => "vor einer Minute", "%d minutes ago" => "Vor %d Minuten", diff --git a/lib/l10n/ug.php b/lib/l10n/ug.php new file mode 100644 index 00000000000..62d91616c1d --- /dev/null +++ b/lib/l10n/ug.php @@ -0,0 +1,19 @@ + "ياردەم", +"Personal" => "شەخسىي", +"Settings" => "تەڭشەكلەر", +"Users" => "ئىشلەتكۈچىلەر", +"Apps" => "ئەپلەر", +"Authentication error" => "سالاھىيەت دەلىللەش خاتالىقى", +"Files" => "ھۆججەتلەر", +"Text" => "قىسقا ئۇچۇر", +"Images" => "سۈرەتلەر", +"1 minute ago" => "1 مىنۇت ئىلگىرى", +"%d minutes ago" => "%d مىنۇت ئىلگىرى", +"1 hour ago" => "1 سائەت ئىلگىرى", +"%d hours ago" => "%d سائەت ئىلگىرى", +"today" => "بۈگۈن", +"yesterday" => "تۈنۈگۈن", +"%d days ago" => "%d كۈن ئىلگىرى", +"%d months ago" => "%d ئاي ئىلگىرى" +); diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 12ef97ca75a..2cf828e7342 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -46,24 +46,24 @@ "Locale not working" => "Ländereinstellung funktioniert nicht", "This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Dieser ownCloud Server kann die Ländereinstellung nicht auf %s ändern. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen die für %s benötigten Pakete auf Deinem System zu installieren.", "Internet connection not working" => "Keine Netzwerkverbindung", -"This ownCloud 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 of ownCloud." => "Dieser ownCloud Server hat keine funktionierende Netzwerkverbindung. Dies bedeutet das einige Funktionen wie das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Netzwerkverbindung für diesen Server zu aktivieren wenn Du alle Funktionen von ownCloud nutzen möchtest.", +"This ownCloud 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 of ownCloud." => "Dieser ownCloud Server hat keine funktionierende Netzwerkverbindung. Dies bedeutet das einige Funktionen wie das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Netzwerkverbindung für diesen Server zu aktivieren, wenn Du alle Funktionen von ownCloud nutzen möchtest.", "Cron" => "Cron", "Execute one task with each page loaded" => "Führe eine Aufgabe mit jeder geladenen Seite aus", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ist an einem Webcron-Service registriert. Die cron.php Seite wird einmal pro Minute über http abgerufen.", "Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Nutze den Cron Systemdienst. Rufe die Datei cron.php im owncloud Ordner einmal pro Minute über einen Cronjob auf.", "Sharing" => "Teilen", "Enable Share API" => "Aktiviere Sharing-API", -"Allow apps to use the Share API" => "Erlaube Apps die Nutzung der Share-API", -"Allow links" => "Erlaube Links", -"Allow users to share items to the public with links" => "Erlaube Benutzern, Inhalte über öffentliche Links zu teilen", -"Allow resharing" => "Erlaube erneutes Teilen", -"Allow users to share items shared with them again" => "Erlaube Benutzern, mit ihnen geteilte Inhalte erneut zu teilen", -"Allow users to share with anyone" => "Erlaube Benutzern, mit jedem zu teilen", -"Allow users to only share with users in their groups" => "Erlaube Benutzern, nur mit Benutzern ihrer Gruppe zu teilen", +"Allow apps to use the Share API" => "Erlaubt Apps die Nutzung der Share-API", +"Allow links" => "Erlaubt Links", +"Allow users to share items to the public with links" => "Erlaubt Benutzern, Inhalte über öffentliche Links zu teilen", +"Allow resharing" => "Erlaubt erneutes Teilen", +"Allow users to share items shared with them again" => "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen", +"Allow users to share with anyone" => "Erlaubt Benutzern, mit jedem zu teilen", +"Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Benutzern ihrer Gruppe zu teilen", "Security" => "Sicherheit", "Enforce HTTPS" => "Erzwinge HTTPS", "Enforces the clients to connect to ownCloud via an encrypted connection." => "Erzwingt die Verwendung einer verschlüsselten Verbindung", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Bitte verbinden Sie sich über eine HTTPS Verbindung mit diesem ownCloud Server um diese Einstellung zu ändern", +"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Bitte verbinde Dich über eine HTTPS Verbindung mit diesem ownCloud Server um diese Einstellung zu ändern", "Log" => "Log", "Log level" => "Loglevel", "More" => "Mehr", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index febc67ef2d7..91a96ca9f0e 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -45,7 +45,7 @@ "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen.", "Locale not working" => "Die Lokalisierung funktioniert nicht", "This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Dieser ownCloud-Server kann die Ländereinstellung nicht auf %s ändern. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren.", -"Internet connection not working" => "Keine Netzwerkverbindung", +"Internet connection not working" => "Keine Internetverbindung", "This ownCloud 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 of ownCloud." => "Dieser ownCloud-Server hat keine funktionierende Internetverbindung. Dies bedeutet, dass einige Funktionen wie das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungs-E-Mails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren, wenn Sie alle Funktionen von ownCloud nutzen wollen.", "Cron" => "Cron", "Execute one task with each page loaded" => "Eine Aufgabe bei jedem Laden der Seite ausführen", @@ -56,10 +56,10 @@ "Allow apps to use the Share API" => "Anwendungen erlauben, die Share-API zu benutzen", "Allow links" => "Links erlauben", "Allow users to share items to the public with links" => "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen", -"Allow resharing" => "Erlaube weiterverteilen", +"Allow resharing" => "Erlaube Weiterverteilen", "Allow users to share items shared with them again" => "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen", -"Allow users to share with anyone" => "Erlaube Benutzern, mit jedem zu teilen", -"Allow users to only share with users in their groups" => "Erlaube Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen", +"Allow users to share with anyone" => "Erlaubt Benutzern, mit jedem zu teilen", +"Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen", "Security" => "Sicherheit", "Enforce HTTPS" => "HTTPS erzwingen", "Enforces the clients to connect to ownCloud via an encrypted connection." => "Zwingt die Clients, sich über eine verschlüsselte Verbindung mit ownCloud zu verbinden.", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index a6c5018626e..61e86a83f33 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -50,7 +50,7 @@ "Cron" => "Cron", "Execute one task with each page loaded" => "Executar unha tarefa con cada páxina cargada", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php está rexistrado nun servizo de WebCron. Chame á página cron.php na raíz ownCloud unha vez por minuto a través de HTTP.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Use o servizo de sistema cron. Chame ao ficheiro cron.php no catfaol owncloud a través dun sistema de cronjob unna vez por minuto.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Use o servizo de sistema cron. Chame ao ficheiro cron.php no cartafol owncloud a través dun sistema de cronjob unha vez por minuto.", "Sharing" => "Compartindo", "Enable Share API" => "Activar o API para compartir", "Allow apps to use the Share API" => "Permitir que os aplicativos empreguen o API para compartir", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 3e49675f793..de32c3b1f02 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -1,6 +1,7 @@ "Incapaz de carregar a lista da App Store", "Authentication error" => "Erro na autenticação", +"Your display name has been changed." => "O seu nome foi alterado", "Unable to change display name" => "Não foi possível alterar o nome", "Group already exists" => "O grupo já existe", "Unable to add group" => "Impossível acrescentar o grupo", diff --git a/settings/l10n/ug.php b/settings/l10n/ug.php new file mode 100644 index 00000000000..8e8c17f0d36 --- /dev/null +++ b/settings/l10n/ug.php @@ -0,0 +1,71 @@ + "ئەپ بازىرىدىن تىزىمنى يۈكلىيەلمىدى", +"Authentication error" => "سالاھىيەت دەلىللەش خاتالىقى", +"Your display name has been changed." => "كۆرسىتىدىغان ئىسمىڭىز ئۆزگەردى.", +"Unable to change display name" => "كۆرسىتىدىغان ئىسىمنى ئۆزگەرتكىلى بولمايدۇ", +"Group already exists" => "گۇرۇپپا مەۋجۇت", +"Unable to add group" => "گۇرۇپپا قوشقىلى بولمايدۇ", +"Could not enable app. " => "ئەپنى قوزغىتالمىدى. ", +"Email saved" => "تورخەت ساقلاندى", +"Invalid email" => "ئىناۋەتسىز تورخەت", +"Unable to delete group" => "گۇرۇپپىنى ئۆچۈرەلمىدى", +"Unable to delete user" => "ئىشلەتكۈچىنى ئۆچۈرەلمىدى", +"Language changed" => "تىل ئۆزگەردى", +"Invalid request" => "ئىناۋەتسىز ئىلتىماس", +"Unable to add user to group %s" => "ئىشلەتكۈچىنى %s گۇرۇپپىغا قوشالمايدۇ", +"Unable to remove user from group %s" => "ئىشلەتكۈچىنى %s گۇرۇپپىدىن چىقىرىۋېتەلمەيدۇ", +"Couldn't update app." => "ئەپنى يېڭىلىيالمايدۇ.", +"Update to {appversion}" => "{appversion} غا يېڭىلايدۇ", +"Disable" => "چەكلە", +"Enable" => "قوزغات", +"Please wait...." => "سەل كۈتۈڭ…", +"Error" => "خاتالىق", +"Updating...." => "يېڭىلاۋاتىدۇ…", +"Error while updating app" => "ئەپنى يېڭىلاۋاتقاندا خاتالىق كۆرۈلدى", +"Updated" => "يېڭىلاندى", +"Saving..." => "ساقلاۋاتىدۇ…", +"deleted" => "ئۆچۈرۈلگەن", +"undo" => "يېنىۋال", +"Unable to remove user" => "ئىشلەتكۈچىنى چىقىرىۋېتەلمەيدۇ", +"Groups" => "گۇرۇپپا", +"Group Admin" => "گۇرۇپپا باشقۇرغۇچى", +"Delete" => "ئۆچۈر", +"add group" => "گۇرۇپپا قوش", +"Sharing" => "ھەمبەھىر", +"Security" => "بىخەتەرلىك", +"Log" => "خاتىرە", +"Log level" => "خاتىرە دەرىجىسى", +"More" => "تېخىمۇ كۆپ", +"Less" => "ئاز", +"Version" => "نەشرى", +"Add your App" => "ئەپىڭىزنى قوشۇڭ", +"More Apps" => "تېخىمۇ كۆپ ئەپلەر", +"Select an App" => "بىر ئەپ تاللاڭ", +"Update" => "يېڭىلا", +"User Documentation" => "ئىشلەتكۈچى قوللانمىسى", +"Administrator Documentation" => "باشقۇرغۇچى قوللانمىسى", +"Online Documentation" => "توردىكى قوللانما", +"Forum" => "مۇنبەر", +"Password" => "ئىم", +"Your password was changed" => "ئىمىڭىز مۇۋەپپەقىيەتلىك ئۆزگەرتىلدى", +"Unable to change your password" => "ئىمنى ئۆزگەرتكىلى بولمايدۇ.", +"Current password" => "نۆۋەتتىكى ئىم", +"New password" => "يېڭى ئىم", +"Change password" => "ئىم ئۆزگەرت", +"Display Name" => "كۆرسىتىش ئىسمى", +"Email" => "تورخەت", +"Your email address" => "تورخەت ئادرېسىڭىز", +"Fill in an email address to enable password recovery" => "ئىم ئەسلىگە كەلتۈرۈشتە ئىشلىتىدىغان تور خەت ئادرېسىنى تولدۇرۇڭ", +"Language" => "تىل", +"Help translate" => "تەرجىمىگە ياردەم", +"WebDAV" => "WebDAV", +"Login Name" => "تىزىمغا كىرىش ئاتى", +"Create" => "قۇر", +"Default Storage" => "كۆڭۈلدىكى ساقلىغۇچ", +"Unlimited" => "چەكسىز", +"Other" => "باشقا", +"Storage" => "ساقلىغۇچ", +"change display name" => "كۆرسىتىدىغان ئىسىمنى ئۆزگەرت", +"set new password" => "يېڭى ئىم تەڭشە", +"Default" => "كۆڭۈلدىكى" +); diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 9ccc52f65f5..1ec0b004c60 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -1,6 +1,7 @@ "无法从应用商店载入列表", "Authentication error" => "认证出错", +"Your display name has been changed." => "您的显示名字已经改变", "Unable to change display name" => "无法修改显示名称", "Group already exists" => "已存在该组", "Unable to add group" => "无法添加组", -- GitLab From 63d51980e17b34c16fdff2cb5bc6f9924a8f1d61 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Sat, 11 May 2013 21:07:05 +0200 Subject: [PATCH 106/135] Get config from template --- core/js/config.php | 6 +++--- core/templates/layout.user.php | 2 +- lib/templatelayout.php | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/core/js/config.php b/core/js/config.php index 0aaa4482287..8a377c2da1a 100644 --- a/core/js/config.php +++ b/core/js/config.php @@ -26,8 +26,8 @@ $array = array( "oc_debug" => (defined('DEBUG') && DEBUG) ? 'true' : 'false', "oc_webroot" => "\"".OC::$WEBROOT."\"", "oc_appswebroots" => str_replace('\\/', '/', json_encode($apps_paths)), // Ugly unescape slashes waiting for better solution - "oc_current_user" => "\"".OC_User::getUser(). "\"", - "oc_requesttoken" => "\"".OC_Util::callRegister(). "\"", + "oc_current_user" => "document.head.getAttribute('data-user');", + "oc_requesttoken" => "document.head.getAttribute('data-requesttoken');", "datepickerFormatDate" => json_encode($l->l('jsdate', 'jsdate')), "dayNames" => json_encode( array( @@ -62,4 +62,4 @@ $array = array( // Echo it foreach ($array as $setting => $value) { echo("var ". $setting ."=".$value.";\n"); -} +} \ No newline at end of file diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 4dc4a2c7593..6e49149b0ae 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -5,7 +5,7 @@ - + <?php p(!empty($_['application'])?$_['application'].' | ':'') ?>ownCloud <?php p(trim($_['user_displayname']) != '' ?' ('.$_['user_displayname'].') ':'') ?> diff --git a/lib/templatelayout.php b/lib/templatelayout.php index d385bb7f19d..7115b8f0306 100644 --- a/lib/templatelayout.php +++ b/lib/templatelayout.php @@ -56,7 +56,7 @@ class OC_TemplateLayout extends OC_Template { $jsfiles = self::findJavascriptFiles(OC_Util::$scripts); $this->assign('jsfiles', array(), false); if (OC_Config::getValue('installed', false) && $renderas!='error') { - $this->append( 'jsfiles', OC_Helper::linkToRoute('js_config')); + $this->append( 'jsfiles', OC_Helper::linkToRoute('js_config') . $versionParameter); } if (!empty(OC_Util::$core_scripts)) { $this->append( 'jsfiles', OC_Helper::linkToRemoteBase('core.js', false) . $versionParameter); -- GitLab From 337e3ed61fc50d1d69b6f481777e58c3f9a428fd Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Sat, 11 May 2013 21:08:26 +0200 Subject: [PATCH 107/135] Typo --- core/js/config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/js/config.php b/core/js/config.php index 8a377c2da1a..48bea6ae542 100644 --- a/core/js/config.php +++ b/core/js/config.php @@ -26,8 +26,8 @@ $array = array( "oc_debug" => (defined('DEBUG') && DEBUG) ? 'true' : 'false', "oc_webroot" => "\"".OC::$WEBROOT."\"", "oc_appswebroots" => str_replace('\\/', '/', json_encode($apps_paths)), // Ugly unescape slashes waiting for better solution - "oc_current_user" => "document.head.getAttribute('data-user');", - "oc_requesttoken" => "document.head.getAttribute('data-requesttoken');", + "oc_current_user" => "document.head.getAttribute('data-user')", + "oc_requesttoken" => "document.head.getAttribute('data-requesttoken')", "datepickerFormatDate" => json_encode($l->l('jsdate', 'jsdate')), "dayNames" => json_encode( array( -- GitLab From baf058316cbf6a8d57d2cf29239f5ad885306f7c Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Sun, 12 May 2013 10:56:32 +0200 Subject: [PATCH 108/135] disable mbstring.func_overload in setup --- lib/setup.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/setup.php b/lib/setup.php index d1197b3ebf3..f1ac6b8b2b8 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -811,6 +811,7 @@ class OC_Setup { $content.= "php_value upload_max_filesize 512M\n";//upload limit $content.= "php_value post_max_size 512M\n"; $content.= "php_value memory_limit 512M\n"; + $content.= "php_value mbstring.func_overload 0\n"; $content.= "\n"; $content.= " SetEnv htaccessWorking true\n"; $content.= "\n"; -- GitLab From a878bd9923f68ce35146357fe089749f62ab0e27 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 9 Apr 2013 13:31:12 +0200 Subject: [PATCH 109/135] fix allowed rename of folder in root directory to reserved name "Shared" refs #2159 --- apps/files/ajax/rename.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/files/ajax/rename.php b/apps/files/ajax/rename.php index 9fd2ce3ad4b..d9b59c6e487 100644 --- a/apps/files/ajax/rename.php +++ b/apps/files/ajax/rename.php @@ -13,7 +13,7 @@ $newname = stripslashes($_GET["newname"]); $l = OC_L10N::get('files'); -if ( $newname !== '.' and ($dir != '' || $file != 'Shared') and $newname !== '.') { +if ( $newname !== '.' and ($dir != '' || $file != 'Shared') and $newname !== 'Shared' ) { $targetFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $newname); $sourceFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $file); if(\OC\Files\Filesystem::rename($sourceFile, $targetFile)) { @@ -21,6 +21,8 @@ if ( $newname !== '.' and ($dir != '' || $file != 'Shared') and $newname !== '.' } else { OCP\JSON::error(array("data" => array( "message" => $l->t("Unable to rename file") ))); } -}else{ +} elseif( $newname === 'Shared' ) { + OCP\JSON::error(array("data" => array( "message" => $l->t("Invalid folder name. Usage of 'Shared' is reserved by Owncloud") ))); +} else { OCP\JSON::error(array("data" => array( "message" => $l->t("Unable to rename file") ))); } -- GitLab From b393c91a96aeb1346add8e0cb5a62747b07379f0 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 9 Apr 2013 13:44:54 +0200 Subject: [PATCH 110/135] wrong root dir name --- apps/files/ajax/rename.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files/ajax/rename.php b/apps/files/ajax/rename.php index d9b59c6e487..50bbe54bd25 100644 --- a/apps/files/ajax/rename.php +++ b/apps/files/ajax/rename.php @@ -13,7 +13,7 @@ $newname = stripslashes($_GET["newname"]); $l = OC_L10N::get('files'); -if ( $newname !== '.' and ($dir != '' || $file != 'Shared') and $newname !== 'Shared' ) { +if ( $newname !== '.' and ($dir != '/' || $file != 'Shared') and ($dir !== '/' || $newname !== 'Shared') ) { $targetFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $newname); $sourceFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $file); if(\OC\Files\Filesystem::rename($sourceFile, $targetFile)) { @@ -21,7 +21,7 @@ if ( $newname !== '.' and ($dir != '' || $file != 'Shared') and $newname !== 'Sh } else { OCP\JSON::error(array("data" => array( "message" => $l->t("Unable to rename file") ))); } -} elseif( $newname === 'Shared' ) { +} elseif( $dir === '/' and $newname === 'Shared' ) { OCP\JSON::error(array("data" => array( "message" => $l->t("Invalid folder name. Usage of 'Shared' is reserved by Owncloud") ))); } else { OCP\JSON::error(array("data" => array( "message" => $l->t("Unable to rename file") ))); -- GitLab From 33b31931bddb6932c35f2ab9ec6bce9ea723509a Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 9 Apr 2013 13:54:01 +0200 Subject: [PATCH 111/135] string comparision --- apps/files/ajax/rename.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/ajax/rename.php b/apps/files/ajax/rename.php index 50bbe54bd25..a0785f52df2 100644 --- a/apps/files/ajax/rename.php +++ b/apps/files/ajax/rename.php @@ -13,7 +13,7 @@ $newname = stripslashes($_GET["newname"]); $l = OC_L10N::get('files'); -if ( $newname !== '.' and ($dir != '/' || $file != 'Shared') and ($dir !== '/' || $newname !== 'Shared') ) { +if ( $newname !== '.' and ($dir !== '/' || $file !== 'Shared') and ($dir !== '/' || $newname !== 'Shared') ) { $targetFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $newname); $sourceFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $file); if(\OC\Files\Filesystem::rename($sourceFile, $targetFile)) { -- GitLab From 1020d5c16c452145b25725b71bc3269dceddbe6e Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 6 May 2013 20:45:04 +0200 Subject: [PATCH 112/135] [files] refactoring --- apps/files/ajax/rename.php | 50 +++++++++++++++--------- apps/files/lib/files.php | 80 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 111 insertions(+), 19 deletions(-) create mode 100644 apps/files/lib/files.php diff --git a/apps/files/ajax/rename.php b/apps/files/ajax/rename.php index a0785f52df2..641655a9ea5 100644 --- a/apps/files/ajax/rename.php +++ b/apps/files/ajax/rename.php @@ -1,28 +1,40 @@ . + * + */ +require_once realpath( dirname(__FILE__).'/../lib/files.php' ); OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); -// Get data -$dir = stripslashes($_GET["dir"]); -$file = stripslashes($_GET["file"]); -$newname = stripslashes($_GET["newname"]); +$files = new \OCA\Files\Files(); +$result = $files->rename( + stripslashes($_GET["dir"]), + stripslashes($_GET["file"]), + stripslashes($_GET["newname"]) +); -$l = OC_L10N::get('files'); - -if ( $newname !== '.' and ($dir !== '/' || $file !== 'Shared') and ($dir !== '/' || $newname !== 'Shared') ) { - $targetFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $newname); - $sourceFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $file); - if(\OC\Files\Filesystem::rename($sourceFile, $targetFile)) { - OCP\JSON::success(array("data" => array( "dir" => $dir, "file" => $file, "newname" => $newname ))); - } else { - OCP\JSON::error(array("data" => array( "message" => $l->t("Unable to rename file") ))); - } -} elseif( $dir === '/' and $newname === 'Shared' ) { - OCP\JSON::error(array("data" => array( "message" => $l->t("Invalid folder name. Usage of 'Shared' is reserved by Owncloud") ))); +if($result['success'] === true){ + OCP\JSON::success(array('data' => $result['data'])); } else { - OCP\JSON::error(array("data" => array( "message" => $l->t("Unable to rename file") ))); -} + OCP\JSON::error(array('data' => $result['data'])); +} \ No newline at end of file diff --git a/apps/files/lib/files.php b/apps/files/lib/files.php new file mode 100644 index 00000000000..3cbeb384794 --- /dev/null +++ b/apps/files/lib/files.php @@ -0,0 +1,80 @@ +. + * + */ + + +namespace OCA\Files; + +class Files { + private $l10n; + + public function __construct() { + $this->l10n = \OC_L10n::get('files'); + } + + /** + * rename a file + * + * @param string $dir + * @param string $oldname + * @param string $newname + * @return array + */ + public function rename($dir, $oldname, $newname) { + $result = array( + 'success' => false, + 'data' => NULL + ); + + // rename to "Shared" in root directory denied + if( $dir === '/' and $newname === 'Shared' ) { + $result['data'] = array( + 'message' => $this->t("Invalid folder name. Usage of 'Shared' is reserved by Owncloud") + ); + } elseif( + // rename to "." is denied + $newname !== '.' and + // rename to "Shared" inside the root directory is denied + !($dir === '/' and $file === 'Shared') and + // THEN try to rename + \OC\Files\Filesystem::rename( + \OC\Files\Filesystem::normalizePath($dir . '/' . $oldname), + \OC\Files\Filesystem::normalizePath($dir . '/' . $newname) + ) + ) { + // successful rename + $result['success'] = true; + $result['data'] = array( + 'dir' => $dir, + 'file' => $oldname, + 'newname' => $newname + ); + } else { + // rename failed + $result['data'] = array( + 'message' => $this->t('Unable to rename file') + ); + } + return $result; + } + +} \ No newline at end of file -- GitLab From 418e878ba87169f97a3bccfec04e6066d354fc2f Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 6 May 2013 20:53:41 +0200 Subject: [PATCH 113/135] [files] fix typos --- apps/files/lib/files.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/files/lib/files.php b/apps/files/lib/files.php index 3cbeb384794..02582eff20a 100644 --- a/apps/files/lib/files.php +++ b/apps/files/lib/files.php @@ -45,16 +45,16 @@ class Files { 'data' => NULL ); - // rename to "Shared" in root directory denied + // rename to "/Shared" is denied if( $dir === '/' and $newname === 'Shared' ) { $result['data'] = array( - 'message' => $this->t("Invalid folder name. Usage of 'Shared' is reserved by Owncloud") + 'message' => $this->l10n->t("Invalid folder name. Usage of 'Shared' is reserved by Owncloud") ); } elseif( // rename to "." is denied $newname !== '.' and - // rename to "Shared" inside the root directory is denied - !($dir === '/' and $file === 'Shared') and + // rename of "/Shared" is denied + !($dir === '/' and $oldname === 'Shared') and // THEN try to rename \OC\Files\Filesystem::rename( \OC\Files\Filesystem::normalizePath($dir . '/' . $oldname), @@ -71,7 +71,7 @@ class Files { } else { // rename failed $result['data'] = array( - 'message' => $this->t('Unable to rename file') + 'message' => $this->l10n->t('Unable to rename file') ); } return $result; -- GitLab From 324c423548a708720a6f4247bb10be2f1314bd37 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 6 May 2013 20:59:26 +0200 Subject: [PATCH 114/135] [files] kill stripslashes --- apps/files/ajax/rename.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/files/ajax/rename.php b/apps/files/ajax/rename.php index 641655a9ea5..cb7a178852d 100644 --- a/apps/files/ajax/rename.php +++ b/apps/files/ajax/rename.php @@ -28,9 +28,9 @@ OCP\JSON::callCheck(); $files = new \OCA\Files\Files(); $result = $files->rename( - stripslashes($_GET["dir"]), - stripslashes($_GET["file"]), - stripslashes($_GET["newname"]) + $_GET["dir"], + $_GET["file"], + $_GET["newname"] ); if($result['success'] === true){ -- GitLab From b9f426b1d70b1818aab9d54630b8d858a7e5a4dd Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 7 May 2013 13:36:29 +0200 Subject: [PATCH 115/135] [files] remove normalizePath on rename and dependency injection --- apps/files/ajax/rename.php | 5 ++++- apps/files/lib/files.php | 10 ++++------ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/apps/files/ajax/rename.php b/apps/files/ajax/rename.php index cb7a178852d..f01932a73c3 100644 --- a/apps/files/ajax/rename.php +++ b/apps/files/ajax/rename.php @@ -26,7 +26,10 @@ require_once realpath( dirname(__FILE__).'/../lib/files.php' ); OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); -$files = new \OCA\Files\Files(); +$files = new \OCA\Files\Files( + \OC\Files\Filesystem::getView(), + \OC_L10n::get('files') +); $result = $files->rename( $_GET["dir"], $_GET["file"], diff --git a/apps/files/lib/files.php b/apps/files/lib/files.php index 02582eff20a..d5fdc8dde78 100644 --- a/apps/files/lib/files.php +++ b/apps/files/lib/files.php @@ -27,8 +27,9 @@ namespace OCA\Files; class Files { private $l10n; - public function __construct() { - $this->l10n = \OC_L10n::get('files'); + public function __construct($view, $l10n) { + $this->view = $view; + $this->l10n = $l10n; } /** @@ -56,10 +57,7 @@ class Files { // rename of "/Shared" is denied !($dir === '/' and $oldname === 'Shared') and // THEN try to rename - \OC\Files\Filesystem::rename( - \OC\Files\Filesystem::normalizePath($dir . '/' . $oldname), - \OC\Files\Filesystem::normalizePath($dir . '/' . $newname) - ) + $this->view->rename($dir . '/' . $oldname, $dir . '/' . $newname) ) { // successful rename $result['success'] = true; -- GitLab From bb5554de7ffdb1292045e7817a35b450c02403ca Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 7 May 2013 13:37:20 +0200 Subject: [PATCH 116/135] [files] rename tests --- apps/files/tests/ajax_rename.php | 99 ++++++++++++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 apps/files/tests/ajax_rename.php diff --git a/apps/files/tests/ajax_rename.php b/apps/files/tests/ajax_rename.php new file mode 100644 index 00000000000..8332f36e161 --- /dev/null +++ b/apps/files/tests/ajax_rename.php @@ -0,0 +1,99 @@ +. + * + */ + + +require_once realpath( dirname(__FILE__).'/../lib/files.php' ); + +class Test_Ajax_Rename extends \PHPUnit_Framework_TestCase { + + function setUp() { + // mock OC_L10n + $l10nMock = $this->getMock('\OC_L10N', array('t')); + $l10nMock->expects($this->any()) + ->method('t') + ->will($this->returnArgument(0)); + $viewMock = $this->getMock('\OC\Files\View', array('rename', 'normalizePath')); + $viewMock->expects($this->any()) + ->method('normalizePath') + ->will($this->returnArgument(0)); + $viewMock->expects($this->any()) + ->method('rename') + ->will($this->returnValue(true)); + $this->files = new \OCA\Files\Files($viewMock, $l10nMock); + } + + /** + * @brief test rename of file/folder named "Shared" + */ + function testRenameSharedFolder() { + $dir = '/'; + $oldname = 'Shared'; + $newname = 'new_name'; + + $result = $this->files->rename($dir, $oldname, $newname); + $expected = array( + 'success' => false, + 'data' => array('message' => 'Unable to rename file') + ); + + $this->assertEquals($expected, $result); + } + + /** + * @brief test rename of file/folder named "Shared" + */ + function testRenameSharedFolderInSubdirectory() { + $dir = '/test'; + $oldname = 'Shared'; + $newname = 'new_name'; + + $result = $this->files->rename($dir, $oldname, $newname); + $expected = array( + 'success' => true, + 'data' => array( + 'dir' => $dir, + 'file' => $oldname, + 'newname' => $newname + ) + ); + + $this->assertEquals($expected, $result); + } + + /** + * @brief test rename of file/folder to "Shared" + */ + function testRenameFolderToShared() { + $dir = '/'; + $oldname = 'oldname'; + $newname = 'Shared'; + + $result = $this->files->rename($dir, $oldname, $newname); + $expected = array( + 'success' => false, + 'data' => array('message' => "Invalid folder name. Usage of 'Shared' is reserved by Owncloud") + ); + + $this->assertEquals($expected, $result); + } +} \ No newline at end of file -- GitLab From d4ba9cf3386097e4ad7cc2dffd990f9ce1a15a83 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 7 May 2013 15:21:43 +0200 Subject: [PATCH 117/135] [files] remove realpath in test --- apps/files/tests/ajax_rename.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/tests/ajax_rename.php b/apps/files/tests/ajax_rename.php index 8332f36e161..81bd2a38350 100644 --- a/apps/files/tests/ajax_rename.php +++ b/apps/files/tests/ajax_rename.php @@ -22,7 +22,7 @@ */ -require_once realpath( dirname(__FILE__).'/../lib/files.php' ); +require_once dirname(__FILE__).'/../lib/files.php'; class Test_Ajax_Rename extends \PHPUnit_Framework_TestCase { -- GitLab From 7e23e9767637b6c0776988b1197add44ad0dd17d Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 7 May 2013 15:24:26 +0200 Subject: [PATCH 118/135] [files] rename test class and add rename test --- apps/files/tests/ajax_rename.php | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/apps/files/tests/ajax_rename.php b/apps/files/tests/ajax_rename.php index 81bd2a38350..dee956dc8c8 100644 --- a/apps/files/tests/ajax_rename.php +++ b/apps/files/tests/ajax_rename.php @@ -24,7 +24,7 @@ require_once dirname(__FILE__).'/../lib/files.php'; -class Test_Ajax_Rename extends \PHPUnit_Framework_TestCase { +class Test_OC_Files_Files_Rename extends \PHPUnit_Framework_TestCase { function setUp() { // mock OC_L10n @@ -96,4 +96,25 @@ class Test_Ajax_Rename extends \PHPUnit_Framework_TestCase { $this->assertEquals($expected, $result); } + + /** + * @brief test rename of file/folder + */ + function testRenameFolder() { + $dir = '/'; + $oldname = 'oldname'; + $newname = 'newname'; + + $result = $this->files->rename($dir, $oldname, $newname); + $expected = array( + 'success' => true, + 'data' => array( + 'dir' => $dir, + 'file' => $oldname, + 'newname' => $newname + ) + ); + + $this->assertEquals($expected, $result); + } } \ No newline at end of file -- GitLab From b32c30b6d0aafbe65691068068a4647f852c574e Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 7 May 2013 16:04:12 +0200 Subject: [PATCH 119/135] [files] ownCloud typo --- apps/files/lib/files.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/lib/files.php b/apps/files/lib/files.php index d5fdc8dde78..2d47fcf4ad3 100644 --- a/apps/files/lib/files.php +++ b/apps/files/lib/files.php @@ -49,7 +49,7 @@ class Files { // rename to "/Shared" is denied if( $dir === '/' and $newname === 'Shared' ) { $result['data'] = array( - 'message' => $this->l10n->t("Invalid folder name. Usage of 'Shared' is reserved by Owncloud") + 'message' => $this->l10n->t("Invalid folder name. Usage of 'Shared' is reserved by ownCloud") ); } elseif( // rename to "." is denied -- GitLab From b777c0fd7501c59f0389c34303e98867e94cd20b Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Wed, 8 May 2013 11:56:59 +0200 Subject: [PATCH 120/135] [files] rename lib to "App" --- apps/files/ajax/rename.php | 4 ++-- apps/files/lib/{files.php => app.php} | 2 +- apps/files/tests/ajax_rename.php | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) rename apps/files/lib/{files.php => app.php} (99%) diff --git a/apps/files/ajax/rename.php b/apps/files/ajax/rename.php index f01932a73c3..d9ba68428ee 100644 --- a/apps/files/ajax/rename.php +++ b/apps/files/ajax/rename.php @@ -21,12 +21,12 @@ * */ -require_once realpath( dirname(__FILE__).'/../lib/files.php' ); +require_once realpath( dirname(__FILE__).'/../lib/app.php' ); OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); -$files = new \OCA\Files\Files( +$files = new \OCA\Files\App( \OC\Files\Filesystem::getView(), \OC_L10n::get('files') ); diff --git a/apps/files/lib/files.php b/apps/files/lib/app.php similarity index 99% rename from apps/files/lib/files.php rename to apps/files/lib/app.php index 2d47fcf4ad3..7cd6143e6c1 100644 --- a/apps/files/lib/files.php +++ b/apps/files/lib/app.php @@ -24,7 +24,7 @@ namespace OCA\Files; -class Files { +class App { private $l10n; public function __construct($view, $l10n) { diff --git a/apps/files/tests/ajax_rename.php b/apps/files/tests/ajax_rename.php index dee956dc8c8..6dc7c120b3b 100644 --- a/apps/files/tests/ajax_rename.php +++ b/apps/files/tests/ajax_rename.php @@ -22,9 +22,9 @@ */ -require_once dirname(__FILE__).'/../lib/files.php'; +require_once dirname(__FILE__).'/../lib/app.php'; -class Test_OC_Files_Files_Rename extends \PHPUnit_Framework_TestCase { +class Test_OC_Files_App_Rename extends \PHPUnit_Framework_TestCase { function setUp() { // mock OC_L10n @@ -39,7 +39,7 @@ class Test_OC_Files_Files_Rename extends \PHPUnit_Framework_TestCase { $viewMock->expects($this->any()) ->method('rename') ->will($this->returnValue(true)); - $this->files = new \OCA\Files\Files($viewMock, $l10nMock); + $this->files = new \OCA\Files\App($viewMock, $l10nMock); } /** @@ -91,7 +91,7 @@ class Test_OC_Files_Files_Rename extends \PHPUnit_Framework_TestCase { $result = $this->files->rename($dir, $oldname, $newname); $expected = array( 'success' => false, - 'data' => array('message' => "Invalid folder name. Usage of 'Shared' is reserved by Owncloud") + 'data' => array('message' => "Invalid folder name. Usage of 'Shared' is reserved by ownCloud") ); $this->assertEquals($expected, $result); -- GitLab From e2bd32323d30cb5da7b2e1433d09effd33ef987d Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Sun, 12 May 2013 13:02:01 +0200 Subject: [PATCH 121/135] [files] fix mock creation and remove hardcoded 'require' statement --- apps/files/ajax/rename.php | 2 -- apps/files/tests/ajax_rename.php | 7 ++----- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/apps/files/ajax/rename.php b/apps/files/ajax/rename.php index d9ba68428ee..f4551858283 100644 --- a/apps/files/ajax/rename.php +++ b/apps/files/ajax/rename.php @@ -21,8 +21,6 @@ * */ -require_once realpath( dirname(__FILE__).'/../lib/app.php' ); - OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); diff --git a/apps/files/tests/ajax_rename.php b/apps/files/tests/ajax_rename.php index 6dc7c120b3b..23e5761ddda 100644 --- a/apps/files/tests/ajax_rename.php +++ b/apps/files/tests/ajax_rename.php @@ -21,18 +21,15 @@ * */ - -require_once dirname(__FILE__).'/../lib/app.php'; - class Test_OC_Files_App_Rename extends \PHPUnit_Framework_TestCase { function setUp() { // mock OC_L10n - $l10nMock = $this->getMock('\OC_L10N', array('t')); + $l10nMock = $this->getMock('\OC_L10N', array('t'), array(), '', false); $l10nMock->expects($this->any()) ->method('t') ->will($this->returnArgument(0)); - $viewMock = $this->getMock('\OC\Files\View', array('rename', 'normalizePath')); + $viewMock = $this->getMock('\OC\Files\View', array('rename', 'normalizePath'), array(), '', false); $viewMock->expects($this->any()) ->method('normalizePath') ->will($this->returnArgument(0)); -- GitLab From e8c154f3416e7ae596ce0ffc31acda84ffbaa71b Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 13 May 2013 02:10:20 +0200 Subject: [PATCH 122/135] [tx-robot] updated from transifex --- apps/user_ldap/l10n/tr.php | 16 ++++++++++++ l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 6 ++--- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/tr/user_ldap.po | 39 +++++++++++++++-------------- 13 files changed, 49 insertions(+), 32 deletions(-) diff --git a/apps/user_ldap/l10n/tr.php b/apps/user_ldap/l10n/tr.php index e6d450301e5..6f75f4371db 100644 --- a/apps/user_ldap/l10n/tr.php +++ b/apps/user_ldap/l10n/tr.php @@ -1,4 +1,5 @@ "Sunucu uyunlama basarmadi ", "The configuration is valid and the connection could be established!" => "Uyunlama mantikli ve baglama yerlestirmek edebilmi.", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Uyunlama gecerli, fakat Baglama yapamadi. Lutfen kontrol yapmak, eger bu iyi yerlertirdi. ", "The configuration is invalid. Please look in the ownCloud log for further details." => "Uyunma mantikli degil. Lutfen log daha kontrol yapmak. ", @@ -12,6 +13,8 @@ "Confirm Deletion" => "Silmeyi onayla", "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Uyari Apps kullanici_Idap ve user_webdavauth uyunmayan. Bu belki sik degil. Lutfen sistem yonetici sormak on aktif yapmaya. ", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Ihbar Modulu PHP LDAP yuklemdi degil, backend calismacak. Lutfen sistem yonetici sormak yuklemek icin.", +"Server configuration" => "Sunucu uyunlama ", +"Add Server Configuration" => "Sunucu Uyunlama birlemek ", "Host" => "Sunucu", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Protokol atlamak edesin, sadece SSL istiyorsaniz. O zaman, idapsile baslamak. ", "Base DN" => "Ana DN", @@ -31,19 +34,32 @@ "Defines the filter to apply, when retrieving groups." => "Filter uyunmak icin tayin ediyor, ne zaman grubalari tekrar aliyor. ", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "siz bir yer tutucu, mes. 'objectClass=posixGroup ('posixGrubu''. ", "Connection Settings" => "Bağlantı ayarları", +"When unchecked, this configuration will be skipped." => "Ne zaman iptal, bu uynnlama isletici ", "Port" => "Port", +"Backup (Replica) Host" => "Sigorta Kopya Cephe ", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Bir kopya cevre vermek, kopya sunucu onemli olmali. ", +"Backup (Replica) Port" => "Kopya Port ", "Disable Main Server" => "Ana sunucuyu devredışı birak", +"When switched on, ownCloud will only connect to the replica server." => "Ne zaman acik, ownCloud sadece sunuce replikayin baglamis.", "Use TLS" => "TLS kullan", +"Do not use it additionally for LDAPS connections, it will fail." => "Bu LDAPS baglama icin kullamaminiz, basamacak. ", +"Case insensitve LDAP server (Windows)" => "Dusme sunucu LDAP zor degil. (Windows)", "Turn off SSL certificate validation." => "SSL sertifika doğrulamasını kapat.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Bagladiginda, bunla secene sadece calisiyor, sunucu LDAP SSL sunucun ithal etemek, dneyme sizine sunucu ownClouden. ", "Not recommended, use for testing only." => "Önerilmez, sadece test için kullanın.", +"Cache Time-To-Live" => "Cache Time-To-Live ", "in seconds. A change empties the cache." => "saniye cinsinden. Bir değişiklik önbelleği temizleyecektir.", +"Directory Settings" => "Parametrar Listesin Adresinin ", "User Display Name Field" => "Ekran Adi Kullanici, (Alan Adi Kullanici Ekrane)", +"The LDAP attribute to use to generate the user`s ownCloud name." => "LDAP kategori kullanmaya adi ownCloud kullanicin uremek icin. ", "Base User Tree" => "Temel Kullanıcı Ağacı", +"One User Base DN per line" => "Bir Temel Kullanici DN her dizgi ", +"User Search Attributes" => "Kategorii Arama Kullanici ", "Group Display Name Field" => "Grub Ekrane Alani Adi", "The LDAP attribute to use to generate the groups`s ownCloud name." => "LDAP kullamayin grub adi ownCloud uremek icin. ", "Base Group Tree" => "Temel Grup Ağacı", "One Group Base DN per line" => "Bir Grubu Tabani DN her dizgi. ", +"Group Search Attributes" => "Kategorii Arama Grubu", "Group-Member association" => "Grup-Üye işbirliği", "in bytes" => "byte cinsinden", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Kullanıcı adı bölümünü boş bırakın (varsayılan). ", diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index fd68e36e1a8..add748562e8 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"POT-Creation-Date: 2013-05-13 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 05e9cfd4f1a..53b57f51d58 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"POT-Creation-Date: 2013-05-13 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 472016e2ec2..57d87d4eade 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"POT-Creation-Date: 2013-05-13 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 3a714f79772..b67ce2ab6f4 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"POT-Creation-Date: 2013-05-13 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index e4c494813d6..f6cf67b6b58 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"POT-Creation-Date: 2013-05-13 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index ade10916876..0918e24fc24 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"POT-Creation-Date: 2013-05-13 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index dd93a02c1a5..1aff6304e94 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"POT-Creation-Date: 2013-05-13 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 2cd397f4db3..26655ad7043 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-12 02:02+0200\n" +"POT-Creation-Date: 2013-05-13 02:05+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -172,13 +172,13 @@ msgstr "" msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:858 +#: setup.php:859 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:859 +#: setup.php:860 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 356bb267b81..b2435c28e91 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-12 02:02+0200\n" +"POT-Creation-Date: 2013-05-13 02:05+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index ba8a5766964..2be0fb2ddaf 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"POT-Creation-Date: 2013-05-13 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 9215452368d..1cc91e1ae52 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-12 02:01+0200\n" +"POT-Creation-Date: 2013-05-13 02:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index dad12246488..d4a0ced72c1 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:31+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-05-13 02:04+0200\n" +"PO-Revision-Date: 2013-05-12 16:20+0000\n" +"Last-Translator: KAT.RAT12 \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" @@ -19,7 +20,7 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "Sunucu uyunlama basarmadi " #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" @@ -84,11 +85,11 @@ msgstr "Ihbar Modulu PHP LDAP yuklemdi degil, backend calismacak. Lutfen #: templates/settings.php:15 msgid "Server configuration" -msgstr "" +msgstr "Sunucu uyunlama " #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "" +msgstr "Sunucu Uyunlama birlemek " #: templates/settings.php:36 msgid "Host" @@ -180,7 +181,7 @@ msgstr "" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "Ne zaman iptal, bu uynnlama isletici " #: templates/settings.php:71 msgid "Port" @@ -188,17 +189,17 @@ msgstr "Port" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "" +msgstr "Sigorta Kopya Cephe " #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "Bir kopya cevre vermek, kopya sunucu onemli olmali. " #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "" +msgstr "Kopya Port " #: templates/settings.php:74 msgid "Disable Main Server" @@ -206,7 +207,7 @@ msgstr "Ana sunucuyu devredışı birak" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "" +msgstr "Ne zaman acik, ownCloud sadece sunuce replikayin baglamis." #: templates/settings.php:75 msgid "Use TLS" @@ -214,11 +215,11 @@ msgstr "TLS kullan" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" +msgstr "Bu LDAPS baglama icin kullamaminiz, basamacak. " #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "Dusme sunucu LDAP zor degil. (Windows)" #: templates/settings.php:77 msgid "Turn off SSL certificate validation." @@ -236,7 +237,7 @@ msgstr "Önerilmez, sadece test için kullanın." #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Cache Time-To-Live " #: templates/settings.php:78 msgid "in seconds. A change empties the cache." @@ -244,7 +245,7 @@ msgstr "saniye cinsinden. Bir değişiklik önbelleği temizleyecektir." #: templates/settings.php:80 msgid "Directory Settings" -msgstr "" +msgstr "Parametrar Listesin Adresinin " #: templates/settings.php:82 msgid "User Display Name Field" @@ -252,7 +253,7 @@ msgstr "Ekran Adi Kullanici, (Alan Adi Kullanici Ekrane)" #: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" +msgstr "LDAP kategori kullanmaya adi ownCloud kullanicin uremek icin. " #: templates/settings.php:83 msgid "Base User Tree" @@ -260,11 +261,11 @@ msgstr "Temel Kullanıcı Ağacı" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "" +msgstr "Bir Temel Kullanici DN her dizgi " #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "" +msgstr "Kategorii Arama Kullanici " #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" @@ -288,7 +289,7 @@ msgstr "Bir Grubu Tabani DN her dizgi. " #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "" +msgstr "Kategorii Arama Grubu" #: templates/settings.php:88 msgid "Group-Member association" -- GitLab From 0e55accee2f0843681d0515ffcbd7d5f1970b825 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Mon, 13 May 2013 02:42:18 +0200 Subject: [PATCH 123/135] Set the SQLite database lock timeout to 60 seconds which is the default in PHP anyways. I don't know why the MDB2 driver has this hardcoded to 0.1 seconds. This potentially fixes a lot of SQLite database lock problems and stuck in maintainance mode during upgrade issues. --- lib/MDB2/Driver/sqlite3.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/MDB2/Driver/sqlite3.php b/lib/MDB2/Driver/sqlite3.php index aef0eab9bf1..693ceffa01c 100644 --- a/lib/MDB2/Driver/sqlite3.php +++ b/lib/MDB2/Driver/sqlite3.php @@ -387,7 +387,7 @@ class MDB2_Driver_sqlite3 extends MDB2_Driver_Common $php_errormsg = ''; $this->connection = new SQLite3($database_file); if(is_callable(array($this->connection, 'busyTimeout'))) {//busy timout is only available in php>=5.3 - $this->connection->busyTimeout(100); + $this->connection->busyTimeout(60000); } $this->_lasterror = $this->connection->lastErrorMsg(); if (!$this->connection) { -- GitLab From 739f79991202c6cc8c53e11ea2055dea4f33c1d5 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Mon, 13 May 2013 14:23:56 +0200 Subject: [PATCH 124/135] Add requesttoken to guest view Should fix #3321 --- core/templates/layout.guest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index 04161925436..a3a8dc5f7ba 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -5,7 +5,7 @@ - + ownCloud -- GitLab From 591b383f2dd1601009382152079e004034c4258d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 13 May 2013 15:54:45 +0200 Subject: [PATCH 125/135] peselect filename without extension on rename --- apps/files/js/filelist.js | 7 +++++++ core/js/js.js | 20 ++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index b1e9a885063..c24d1fd8244 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -191,6 +191,13 @@ var FileList={ td.children('a.name').hide(); td.append(form); input.focus(); + //preselect input + var len = input.val().lastIndexOf('.'); + if (len === -1) { + len = input.val().length; + } + input.selectRange(0,len); + form.submit(function(event){ event.stopPropagation(); event.preventDefault(); diff --git a/core/js/js.js b/core/js/js.js index d85e6d88f8a..3cb4d3dd151 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -767,6 +767,26 @@ OC.set=function(name, value) { context[tail]=value; }; +/** + * select a range in an input field + * @link http://stackoverflow.com/questions/499126/jquery-set-cursor-position-in-text-area + * @param {type} start + * @param {type} end + */ +$.fn.selectRange = function(start, end) { + return this.each(function() { + if (this.setSelectionRange) { + this.focus(); + this.setSelectionRange(start, end); + } else if (this.createTextRange) { + var range = this.createTextRange(); + range.collapse(true); + range.moveEnd('character', end); + range.moveStart('character', start); + range.select(); + } + }); +}; /** * Calls the server periodically every 15 mins to ensure that session doesnt -- GitLab From 6d95d130e4b5cefa757dbd59c6bfadf56e01722a Mon Sep 17 00:00:00 2001 From: raghunayyar Date: Mon, 13 May 2013 23:12:05 +0530 Subject: [PATCH 126/135] Keeping Font Colors Consistant on the headers. --- apps/files/css/files.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index ec323915b44..e9494b735ac 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -5,7 +5,8 @@ /* FILE MENU */ .actions { padding:.3em; height:2em; width: 100%; } .actions input, .actions button, .actions .button { margin:0; float:left; } - +.actions .button a { color: #555; } +.actions .button a:hover, .actions .button a:active { color: #333; } #new { height:17px; margin:0 0 0 1em; z-index:1010; float:left; } @@ -34,6 +35,7 @@ background-image:url('%webroot%/core/img/actions/upload.svg'); background-repeat:no-repeat; background-position:7px 6px; + opacity:0.65; } .file_upload_target { display:none; } .file_upload_form { display:inline; float:left; margin:0; padding:0; cursor:pointer; overflow:visible; } -- GitLab From 2b84da9793342e63ddad6d6126a839430ea6b401 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 14 May 2013 02:04:01 +0200 Subject: [PATCH 127/135] [tx-robot] updated from transifex --- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index add748562e8..d34c5edc813 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-13 02:04+0200\n" +"POT-Creation-Date: 2013-05-14 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 53b57f51d58..51c5ec0d518 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-13 02:03+0200\n" +"POT-Creation-Date: 2013-05-14 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 57d87d4eade..2953ca91aa9 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-13 02:04+0200\n" +"POT-Creation-Date: 2013-05-14 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index b67ce2ab6f4..2c71c833ee0 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-13 02:04+0200\n" +"POT-Creation-Date: 2013-05-14 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index f6cf67b6b58..3c4199e04cd 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-13 02:04+0200\n" +"POT-Creation-Date: 2013-05-14 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 0918e24fc24..d37f8da1adf 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-13 02:04+0200\n" +"POT-Creation-Date: 2013-05-14 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 1aff6304e94..0281b59a187 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-13 02:04+0200\n" +"POT-Creation-Date: 2013-05-14 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 26655ad7043..cc9146b348b 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-13 02:05+0200\n" +"POT-Creation-Date: 2013-05-14 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index b2435c28e91..dc15a7ea4fa 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-13 02:05+0200\n" +"POT-Creation-Date: 2013-05-14 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 2be0fb2ddaf..555205eb00d 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-13 02:04+0200\n" +"POT-Creation-Date: 2013-05-14 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 1cc91e1ae52..b99f1fbd062 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-13 02:04+0200\n" +"POT-Creation-Date: 2013-05-14 02:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -- GitLab From 18618c75aaa4933d8b82e006704c58738114fb45 Mon Sep 17 00:00:00 2001 From: raghunayyar Date: Tue, 14 May 2013 11:07:12 +0530 Subject: [PATCH 128/135] color change to crumb elements as well. --- apps/files/css/files.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index e9494b735ac..f788949b1b6 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -150,7 +150,7 @@ a.action>img { max-height:16px; max-width:16px; vertical-align:text-bottom; } #scanning-message{ top:40%; left:40%; position:absolute; display:none; } -div.crumb a{ padding:0.9em 0 0.7em 0; } +div.crumb a{ padding:0.9em 0 0.7em 0; color:#555; } table.dragshadow { width:auto; -- GitLab From 0d8fa2eb9844f8ed3cf3462f21e5cc607c087541 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 14 May 2013 12:49:23 +0200 Subject: [PATCH 129/135] [files] add private declaration of $view --- apps/files/lib/app.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/files/lib/app.php b/apps/files/lib/app.php index 7cd6143e6c1..c2a4b9c2675 100644 --- a/apps/files/lib/app.php +++ b/apps/files/lib/app.php @@ -26,6 +26,7 @@ namespace OCA\Files; class App { private $l10n; + private $view; public function __construct($view, $l10n) { $this->view = $view; -- GitLab From 96ff19a703774744f0d3176600e33ca5e250dbf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Tue, 14 May 2013 20:06:53 +0200 Subject: [PATCH 130/135] fix history template, print_unescaped() needs to include closing tags --- apps/files_versions/templates/history.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/files_versions/templates/history.php b/apps/files_versions/templates/history.php index f7284439041..3a6d5f0c9e7 100644 --- a/apps/files_versions/templates/history.php +++ b/apps/files_versions/templates/history.php @@ -5,18 +5,18 @@ if( isset( $_['message'] ) ) { - if( isset($_['path'] ) ) print_unescaped('File: '.OC_Util::sanitizeHTML($_['path'])).'
'; - print_unescaped(''.OC_Util::sanitizeHTML($_['message']) ).'
'; + if( isset($_['path'] ) ) print_unescaped('File: '.OC_Util::sanitizeHTML($_['path']).'
'); + print_unescaped(''.OC_Util::sanitizeHTML($_['message']) .'
'); }else{ if( isset( $_['outcome_stat'] ) ) { - print_unescaped( '

'.OC_Util::sanitizeHTML($_['outcome_msg']) ).'


'; + print_unescaped( '

'.OC_Util::sanitizeHTML($_['outcome_msg']).'


'); } - print_unescaped( 'Versions of '.OC_Util::sanitizeHTML($_['path']) ).'
'; + print_unescaped( 'Versions of '.OC_Util::sanitizeHTML($_['path']).'
'); print_unescaped('

'.OC_Util::sanitizeHTML($l->t('Revert a file to a previous version by clicking on its revert button')).'


'); foreach ( $_['versions'] as $v ) { -- GitLab From 6a788d1a545d5e0dcd6df6ec3c144fa593cf40c8 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 15 May 2013 02:02:45 +0200 Subject: [PATCH 131/135] [tx-robot] updated from transifex --- apps/files/l10n/ar.php | 2 +- apps/files/l10n/bn_BD.php | 2 +- apps/files/l10n/ca.php | 2 +- apps/files/l10n/cs_CZ.php | 2 +- apps/files/l10n/cy_GB.php | 2 +- apps/files/l10n/da.php | 2 +- apps/files/l10n/de.php | 2 +- apps/files/l10n/de_DE.php | 2 +- apps/files/l10n/el.php | 2 +- apps/files/l10n/eo.php | 2 +- apps/files/l10n/es.php | 2 +- apps/files/l10n/es_AR.php | 2 +- apps/files/l10n/et_EE.php | 2 +- apps/files/l10n/eu.php | 2 +- apps/files/l10n/fa.php | 2 +- apps/files/l10n/fi_FI.php | 2 +- apps/files/l10n/fr.php | 2 +- apps/files/l10n/gl.php | 2 +- apps/files/l10n/hu_HU.php | 2 +- apps/files/l10n/id.php | 2 +- apps/files/l10n/is.php | 2 +- apps/files/l10n/it.php | 2 +- apps/files/l10n/ja_JP.php | 2 +- apps/files/l10n/ka_GE.php | 2 +- apps/files/l10n/ko.php | 2 +- apps/files/l10n/lv.php | 2 +- apps/files/l10n/nl.php | 2 +- apps/files/l10n/nn_NO.php | 2 +- apps/files/l10n/pl.php | 2 +- apps/files/l10n/pt_BR.php | 2 +- apps/files/l10n/pt_PT.php | 2 +- apps/files/l10n/ro.php | 2 +- apps/files/l10n/ru.php | 2 +- apps/files/l10n/sk_SK.php | 2 +- apps/files/l10n/sl.php | 2 +- apps/files/l10n/sq.php | 2 +- apps/files/l10n/sr.php | 2 +- apps/files/l10n/sv.php | 2 +- apps/files/l10n/th_TH.php | 2 +- apps/files/l10n/tr.php | 2 +- apps/files/l10n/ug.php | 2 +- apps/files/l10n/uk.php | 2 +- apps/files/l10n/vi.php | 2 +- apps/files/l10n/zh_CN.php | 2 +- apps/files/l10n/zh_TW.php | 2 +- l10n/af_ZA/files.po | 84 ++++++++++++++-------------- l10n/ar/files.po | 84 ++++++++++++++-------------- l10n/be/files.po | 84 ++++++++++++++-------------- l10n/bg_BG/files.po | 84 ++++++++++++++-------------- l10n/bn_BD/files.po | 84 ++++++++++++++-------------- l10n/ca/files.po | 84 ++++++++++++++-------------- l10n/cs_CZ/files.po | 84 ++++++++++++++-------------- l10n/cy_GB/files.po | 38 +++++++------ l10n/da/files.po | 84 ++++++++++++++-------------- l10n/de/files.po | 38 +++++++------ l10n/de_DE/files.po | 38 +++++++------ l10n/el/files.po | 84 ++++++++++++++-------------- l10n/en@pirate/files.po | 38 +++++++------ l10n/eo/files.po | 84 ++++++++++++++-------------- l10n/es/files.po | 38 +++++++------ l10n/es_AR/files.po | 84 ++++++++++++++-------------- l10n/et_EE/files.po | 38 +++++++------ l10n/eu/files.po | 84 ++++++++++++++-------------- l10n/fa/files.po | 84 ++++++++++++++-------------- l10n/fi/files.po | 86 +++++++++++++++-------------- l10n/fi_FI/files.po | 84 ++++++++++++++-------------- l10n/fr/files.po | 38 +++++++------ l10n/gl/files.po | 38 +++++++------ l10n/he/files.po | 84 ++++++++++++++-------------- l10n/hi/files.po | 84 ++++++++++++++-------------- l10n/hr/files.po | 84 ++++++++++++++-------------- l10n/hu_HU/files.po | 84 ++++++++++++++-------------- l10n/hy/files.po | 86 +++++++++++++++-------------- l10n/ia/files.po | 36 ++++++------ l10n/id/files.po | 84 ++++++++++++++-------------- l10n/is/files.po | 84 ++++++++++++++-------------- l10n/it/files.po | 84 ++++++++++++++-------------- l10n/ja_JP/files.po | 84 ++++++++++++++-------------- l10n/ka/files.po | 84 ++++++++++++++-------------- l10n/ka_GE/files.po | 86 +++++++++++++++-------------- l10n/kn/files.po | 84 ++++++++++++++-------------- l10n/ko/files.po | 38 +++++++------ l10n/ku_IQ/files.po | 84 ++++++++++++++-------------- l10n/lb/files.po | 84 ++++++++++++++-------------- l10n/lt_LT/files.po | 84 ++++++++++++++-------------- l10n/lv/files.po | 84 ++++++++++++++-------------- l10n/mk/files.po | 84 ++++++++++++++-------------- l10n/ms_MY/files.po | 84 ++++++++++++++-------------- l10n/my_MM/files.po | 84 ++++++++++++++-------------- l10n/nb_NO/files.po | 84 ++++++++++++++-------------- l10n/ne/files.po | 84 ++++++++++++++-------------- l10n/nl/files.po | 84 ++++++++++++++-------------- l10n/nn_NO/files.po | 38 +++++++------ l10n/oc/files.po | 84 ++++++++++++++-------------- l10n/pl/files.po | 84 ++++++++++++++-------------- l10n/pl_PL/files.po | 86 +++++++++++++++-------------- l10n/pt_BR/files.po | 84 ++++++++++++++-------------- l10n/pt_PT/files.po | 84 ++++++++++++++-------------- l10n/ro/files.po | 86 +++++++++++++++-------------- l10n/ru/files.po | 84 ++++++++++++++-------------- l10n/si_LK/files.po | 84 ++++++++++++++-------------- l10n/sk/files.po | 84 ++++++++++++++-------------- l10n/sk_SK/files.po | 84 ++++++++++++++-------------- l10n/sl/files.po | 84 ++++++++++++++-------------- l10n/sq/files.po | 84 ++++++++++++++-------------- l10n/sr/files.po | 84 ++++++++++++++-------------- l10n/sr@latin/files.po | 84 ++++++++++++++-------------- l10n/sv/files.po | 84 ++++++++++++++-------------- l10n/sw_KE/files.po | 84 ++++++++++++++-------------- l10n/ta_LK/files.po | 84 ++++++++++++++-------------- l10n/te/files.po | 84 ++++++++++++++-------------- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 34 +++++++----- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/files.po | 84 ++++++++++++++-------------- l10n/tr/files.po | 84 ++++++++++++++-------------- l10n/ug/files.po | 38 +++++++------ l10n/uk/files.po | 84 ++++++++++++++-------------- l10n/ur_PK/files.po | 84 ++++++++++++++-------------- l10n/vi/files.po | 38 +++++++------ l10n/zh_CN.GB2312/files.po | 84 ++++++++++++++-------------- l10n/zh_CN/files.po | 84 ++++++++++++++-------------- l10n/zh_HK/files.po | 84 ++++++++++++++-------------- l10n/zh_TW/files.po | 84 ++++++++++++++-------------- l10n/zh_TW/settings.po | 26 ++++----- 133 files changed, 3136 insertions(+), 2828 deletions(-) diff --git a/apps/files/l10n/ar.php b/apps/files/l10n/ar.php index bc01a340622..ca198b7efe9 100644 --- a/apps/files/l10n/ar.php +++ b/apps/files/l10n/ar.php @@ -1,7 +1,6 @@ "فشل في نقل الملف %s - يوجد ملف بنفس هذا الاسم", "Could not move %s" => "فشل في نقل %s", -"Unable to rename file" => "فشل في اعادة تسمية الملف", "No file was uploaded. Unknown error" => "لم يتم رفع أي ملف , خطأ غير معروف", "There is no error, the file uploaded with success" => "تم ترفيع الملفات بنجاح.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "حجم الملف المرفوع تجاوز قيمة upload_max_filesize الموجودة في ملف php.ini ", @@ -45,6 +44,7 @@ "{count} folders" => "{count} مجلدات", "1 file" => "ملف واحد", "{count} files" => "{count} ملفات", +"Unable to rename file" => "فشل في اعادة تسمية الملف", "Upload" => "رفع", "File handling" => "التعامل مع الملف", "Maximum upload size" => "الحد الأقصى لحجم الملفات التي يمكن رفعها", diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php index 42c78ab3470..83dd4dc36dc 100644 --- a/apps/files/l10n/bn_BD.php +++ b/apps/files/l10n/bn_BD.php @@ -1,7 +1,6 @@ "%s কে স্থানান্তর করা সম্ভব হলো না - এই নামের ফাইল বিদ্যমান", "Could not move %s" => "%s কে স্থানান্তর করা সম্ভব হলো না", -"Unable to rename file" => "ফাইলের নাম পরিবর্তন করা সম্ভব হলো না", "No file was uploaded. Unknown error" => "কোন ফাইল আপলোড করা হয় নি। সমস্যার কারণটি অজ্ঞাত।", "There is no error, the file uploaded with success" => "কোন সমস্যা হয় নি, ফাইল আপলোড সুসম্পন্ন হয়েছে।", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "আপলোড করা ফাইলটি php.ini তে বর্ণিত upload_max_filesize নির্দেশিত আয়তন অতিক্রম করছেঃ", @@ -40,6 +39,7 @@ "{count} folders" => "{count} টি ফোল্ডার", "1 file" => "১টি ফাইল", "{count} files" => "{count} টি ফাইল", +"Unable to rename file" => "ফাইলের নাম পরিবর্তন করা সম্ভব হলো না", "Upload" => "আপলোড", "File handling" => "ফাইল হ্যার্ডলিং", "Maximum upload size" => "আপলোডের সর্বোচ্চ আকার", diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index ff9572ad99e..6da312ae75b 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -1,7 +1,6 @@ "No s'ha pogut moure %s - Ja hi ha un fitxer amb aquest nom", "Could not move %s" => " No s'ha pogut moure %s", -"Unable to rename file" => "No es pot canviar el nom del fitxer", "No file was uploaded. Unknown error" => "No s'ha carregat cap fitxer. Error desconegut", "There is no error, the file uploaded with success" => "No hi ha errors, el fitxer s'ha carregat correctament", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "L’arxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:", @@ -47,6 +46,7 @@ "{count} folders" => "{count} carpetes", "1 file" => "1 fitxer", "{count} files" => "{count} fitxers", +"Unable to rename file" => "No es pot canviar el nom del fitxer", "Upload" => "Puja", "File handling" => "Gestió de fitxers", "Maximum upload size" => "Mida màxima de pujada", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index f28c6dad7e2..de6a1542421 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -1,7 +1,6 @@ "Nelze přesunout %s - existuje soubor se stejným názvem", "Could not move %s" => "Nelze přesunout %s", -"Unable to rename file" => "Nelze přejmenovat soubor", "No file was uploaded. Unknown error" => "Soubor nebyl odeslán. Neznámá chyba", "There is no error, the file uploaded with success" => "Soubor byl odeslán úspěšně", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:", @@ -47,6 +46,7 @@ "{count} folders" => "{count} složky", "1 file" => "1 soubor", "{count} files" => "{count} soubory", +"Unable to rename file" => "Nelze přejmenovat soubor", "Upload" => "Odeslat", "File handling" => "Zacházení se soubory", "Maximum upload size" => "Maximální velikost pro odesílání", diff --git a/apps/files/l10n/cy_GB.php b/apps/files/l10n/cy_GB.php index 6ec0e7f914f..ae339488910 100644 --- a/apps/files/l10n/cy_GB.php +++ b/apps/files/l10n/cy_GB.php @@ -1,7 +1,6 @@ "Methwyd symud %s - Mae ffeil gyda'r enw hwn eisoes yn bodoli", "Could not move %s" => "Methwyd symud %s", -"Unable to rename file" => "Methu ailenwi ffeil", "No file was uploaded. Unknown error" => "Ni lwythwyd ffeil i fyny. Gwall anhysbys.", "There is no error, the file uploaded with success" => "Does dim gwall, llwythodd y ffeil i fyny'n llwyddiannus", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb upload_max_filesize yn php.ini:", @@ -47,6 +46,7 @@ "{count} folders" => "{count} plygell", "1 file" => "1 ffeil", "{count} files" => "{count} ffeil", +"Unable to rename file" => "Methu ailenwi ffeil", "Upload" => "Llwytho i fyny", "File handling" => "Trafod ffeiliau", "Maximum upload size" => "Maint mwyaf llwytho i fyny", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index ff590aa9a3a..879fbc8451f 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -1,7 +1,6 @@ "Kunne ikke flytte %s - der findes allerede en fil med dette navn", "Could not move %s" => "Kunne ikke flytte %s", -"Unable to rename file" => "Kunne ikke omdøbe fil", "No file was uploaded. Unknown error" => "Ingen fil blev uploadet. Ukendt fejl.", "There is no error, the file uploaded with success" => "Der skete ingen fejl, filen blev succesfuldt uploadet", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini", @@ -47,6 +46,7 @@ "{count} folders" => "{count} mapper", "1 file" => "1 fil", "{count} files" => "{count} filer", +"Unable to rename file" => "Kunne ikke omdøbe fil", "Upload" => "Upload", "File handling" => "Filhåndtering", "Maximum upload size" => "Maksimal upload-størrelse", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 14d084bc211..bcc3a4c6c9d 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -1,7 +1,6 @@ "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert bereits", "Could not move %s" => "Konnte %s nicht verschieben", -"Unable to rename file" => "Konnte Datei nicht umbenennen", "No file was uploaded. Unknown error" => "Keine Datei hochgeladen. Unbekannter Fehler", "There is no error, the file uploaded with success" => "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini", @@ -47,6 +46,7 @@ "{count} folders" => "{count} Ordner", "1 file" => "1 Datei", "{count} files" => "{count} Dateien", +"Unable to rename file" => "Konnte Datei nicht umbenennen", "Upload" => "Hochladen", "File handling" => "Dateibehandlung", "Maximum upload size" => "Maximale Upload-Größe", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 6f912976939..626af36c2b6 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -1,7 +1,6 @@ "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert bereits", "Could not move %s" => "Konnte %s nicht verschieben", -"Unable to rename file" => "Konnte Datei nicht umbenennen", "No file was uploaded. Unknown error" => "Keine Datei hochgeladen. Unbekannter Fehler", "There is no error, the file uploaded with success" => "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini", @@ -47,6 +46,7 @@ "{count} folders" => "{count} Ordner", "1 file" => "1 Datei", "{count} files" => "{count} Dateien", +"Unable to rename file" => "Konnte Datei nicht umbenennen", "Upload" => "Hochladen", "File handling" => "Dateibehandlung", "Maximum upload size" => "Maximale Upload-Größe", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index d67a2fce36c..a8bb96cdfc8 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -1,7 +1,6 @@ "Αδυναμία μετακίνησης του %s - υπάρχει ήδη αρχείο με αυτό το όνομα", "Could not move %s" => "Αδυναμία μετακίνησης του %s", -"Unable to rename file" => "Αδυναμία μετονομασίας αρχείου", "No file was uploaded. Unknown error" => "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα", "There is no error, the file uploaded with success" => "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Το αρχείο που εστάλει υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"upload_max_filesize\" του php.ini", @@ -47,6 +46,7 @@ "{count} folders" => "{count} φάκελοι", "1 file" => "1 αρχείο", "{count} files" => "{count} αρχεία", +"Unable to rename file" => "Αδυναμία μετονομασίας αρχείου", "Upload" => "Μεταφόρτωση", "File handling" => "Διαχείριση αρχείων", "Maximum upload size" => "Μέγιστο μέγεθος αποστολής", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index 936c9aef19d..3eeb88754c7 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -1,7 +1,6 @@ "Ne eblis movi %s: dosiero kun ĉi tiu nomo jam ekzistas", "Could not move %s" => "Ne eblis movi %s", -"Unable to rename file" => "Ne eblis alinomigi dosieron", "No file was uploaded. Unknown error" => "Neniu dosiero alŝutiĝis. Nekonata eraro.", "There is no error, the file uploaded with success" => "Ne estas eraro, la dosiero alŝutiĝis sukcese.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: ", @@ -42,6 +41,7 @@ "{count} folders" => "{count} dosierujoj", "1 file" => "1 dosiero", "{count} files" => "{count} dosierujoj", +"Unable to rename file" => "Ne eblis alinomigi dosieron", "Upload" => "Alŝuti", "File handling" => "Dosieradministro", "Maximum upload size" => "Maksimuma alŝutogrando", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index dd756142e42..2aee432b10b 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -1,7 +1,6 @@ "No se puede mover %s - Ya existe un archivo con ese nombre", "Could not move %s" => "No se puede mover %s", -"Unable to rename file" => "No se puede renombrar el archivo", "No file was uploaded. Unknown error" => "No se subió ningún archivo. Error desconocido", "There is no error, the file uploaded with success" => "No hay ningún error, el archivo se ha subido con éxito", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "El archivo que intentas subir sobrepasa el tamaño definido por la variable upload_max_filesize en php.ini", @@ -47,6 +46,7 @@ "{count} folders" => "{count} carpetas", "1 file" => "1 archivo", "{count} files" => "{count} archivos", +"Unable to rename file" => "No se puede renombrar el archivo", "Upload" => "Subir", "File handling" => "Tratamiento de archivos", "Maximum upload size" => "Tamaño máximo de subida", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index 3b6a1f431e1..af6cf961612 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -1,7 +1,6 @@ "No se pudo mover %s - Un archivo con este nombre ya existe", "Could not move %s" => "No se pudo mover %s ", -"Unable to rename file" => "No fue posible cambiar el nombre al archivo", "No file was uploaded. Unknown error" => "El archivo no fue subido. Error desconocido", "There is no error, the file uploaded with success" => "No hay errores, el archivo fue subido con éxito", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "El archivo que intentás subir excede el tamaño definido por upload_max_filesize en el php.ini:", @@ -47,6 +46,7 @@ "{count} folders" => "{count} directorios", "1 file" => "1 archivo", "{count} files" => "{count} archivos", +"Unable to rename file" => "No fue posible cambiar el nombre al archivo", "Upload" => "Subir", "File handling" => "Tratamiento de archivos", "Maximum upload size" => "Tamaño máximo de subida", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 133f461a124..2214c4d3370 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -1,7 +1,6 @@ "Ei saa liigutada faili %s - samanimeline fail on juba olemas", "Could not move %s" => "%s liigutamine ebaõnnestus", -"Unable to rename file" => "Faili ümbernimetamine ebaõnnestus", "No file was uploaded. Unknown error" => "Ühtegi faili ei laetud üles. Tundmatu viga", "There is no error, the file uploaded with success" => "Ühtegi tõrget polnud, fail on üles laetud", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Üleslaetava faili suurus ületab php.ini poolt määratud upload_max_filesize suuruse", @@ -47,6 +46,7 @@ "{count} folders" => "{count} kausta", "1 file" => "1 fail", "{count} files" => "{count} faili", +"Unable to rename file" => "Faili ümbernimetamine ebaõnnestus", "Upload" => "Lae üles", "File handling" => "Failide käsitlemine", "Maximum upload size" => "Maksimaalne üleslaadimise suurus", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index 74c096e1965..a4afc2e8ca8 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -1,7 +1,6 @@ "Ezin da %s mugitu - Izen hau duen fitxategia dagoeneko existitzen da", "Could not move %s" => "Ezin dira fitxategiak mugitu %s", -"Unable to rename file" => "Ezin izan da fitxategia berrizendatu", "No file was uploaded. Unknown error" => "Ez da fitxategirik igo. Errore ezezaguna", "There is no error, the file uploaded with success" => "Ez da errorerik egon, fitxategia ongi igo da", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:", @@ -47,6 +46,7 @@ "{count} folders" => "{count} karpeta", "1 file" => "fitxategi bat", "{count} files" => "{count} fitxategi", +"Unable to rename file" => "Ezin izan da fitxategia berrizendatu", "Upload" => "Igo", "File handling" => "Fitxategien kudeaketa", "Maximum upload size" => "Igo daitekeen gehienezko tamaina", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 10132fdf9e3..b97067ac193 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -1,7 +1,6 @@ "%s نمی تواند حرکت کند - در حال حاضر پرونده با این نام وجود دارد. ", "Could not move %s" => "%s نمی تواند حرکت کند ", -"Unable to rename file" => "قادر به تغییر نام پرونده نیست.", "No file was uploaded. Unknown error" => "هیچ فایلی آپلود نشد.خطای ناشناس", "There is no error, the file uploaded with success" => "هیچ خطایی نیست بارگذاری پرونده موفقیت آمیز بود", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "پرونده آپلود شده بیش ازدستور ماکزیمم_حجم فایل_برای آپلود در php.ini استفاده کرده است.", @@ -47,6 +46,7 @@ "{count} folders" => "{ شمار} پوشه ها", "1 file" => "1 پرونده", "{count} files" => "{ شمار } فایل ها", +"Unable to rename file" => "قادر به تغییر نام پرونده نیست.", "Upload" => "بارگزاری", "File handling" => "اداره پرونده ها", "Maximum upload size" => "حداکثر اندازه بارگزاری", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 08a07183238..3d0d7245781 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -1,7 +1,6 @@ "Kohteen %s siirto ei onnistunut - Tiedosto samalla nimellä on jo olemassa", "Could not move %s" => "Kohteen %s siirto ei onnistunut", -"Unable to rename file" => "Tiedoston nimeäminen uudelleen ei onnistunut", "No file was uploaded. Unknown error" => "Tiedostoa ei lähetetty. Tuntematon virhe", "There is no error, the file uploaded with success" => "Ei virheitä, tiedosto lähetettiin onnistuneesti", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Lähetetyn tiedoston koko ylittää php.ini-tiedoston upload_max_filesize-säännön:", @@ -43,6 +42,7 @@ "{count} folders" => "{count} kansiota", "1 file" => "1 tiedosto", "{count} files" => "{count} tiedostoa", +"Unable to rename file" => "Tiedoston nimeäminen uudelleen ei onnistunut", "Upload" => "Lähetä", "File handling" => "Tiedostonhallinta", "Maximum upload size" => "Lähetettävän tiedoston suurin sallittu koko", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index e4793ab5264..5620d86e48d 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -1,7 +1,6 @@ "Impossible de déplacer %s - Un fichier possédant ce nom existe déjà", "Could not move %s" => "Impossible de déplacer %s", -"Unable to rename file" => "Impossible de renommer le fichier", "No file was uploaded. Unknown error" => "Aucun fichier n'a été envoyé. Erreur inconnue", "There is no error, the file uploaded with success" => "Aucune erreur, le fichier a été envoyé avec succès.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Le fichier envoyé dépasse la valeur upload_max_filesize située dans le fichier php.ini:", @@ -47,6 +46,7 @@ "{count} folders" => "{count} dossiers", "1 file" => "1 fichier", "{count} files" => "{count} fichiers", +"Unable to rename file" => "Impossible de renommer le fichier", "Upload" => "Envoyer", "File handling" => "Gestion des fichiers", "Maximum upload size" => "Taille max. d'envoi", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 48145d44619..2352d9e15c4 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -1,7 +1,6 @@ "Non se moveu %s - Xa existe un ficheiro con ese nome.", "Could not move %s" => "Non foi posíbel mover %s", -"Unable to rename file" => "Non é posíbel renomear o ficheiro", "No file was uploaded. Unknown error" => "Non se enviou ningún ficheiro. Produciuse un erro descoñecido.", "There is no error, the file uploaded with success" => "Non houbo erros, o ficheiro enviouse correctamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O ficheiro enviado excede a directiva indicada por upload_max_filesize de php.ini:", @@ -47,6 +46,7 @@ "{count} folders" => "{count} cartafoles", "1 file" => "1 ficheiro", "{count} files" => "{count} ficheiros", +"Unable to rename file" => "Non é posíbel renomear o ficheiro", "Upload" => "Enviar", "File handling" => "Manexo de ficheiro", "Maximum upload size" => "Tamaño máximo do envío", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index cd5154fcd85..4520bfdd085 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -1,7 +1,6 @@ "%s áthelyezése nem sikerült - már létezik másik fájl ezzel a névvel", "Could not move %s" => "Nem sikerült %s áthelyezése", -"Unable to rename file" => "Nem lehet átnevezni a fájlt", "No file was uploaded. Unknown error" => "Nem történt feltöltés. Ismeretlen hiba", "There is no error, the file uploaded with success" => "A fájlt sikerült feltölteni", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét.", @@ -47,6 +46,7 @@ "{count} folders" => "{count} mappa", "1 file" => "1 fájl", "{count} files" => "{count} fájl", +"Unable to rename file" => "Nem lehet átnevezni a fájlt", "Upload" => "Feltöltés", "File handling" => "Fájlkezelés", "Maximum upload size" => "Maximális feltölthető fájlméret", diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 7cba9ae66eb..58cc0ea7fd9 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -1,7 +1,6 @@ "Tidak dapat memindahkan %s - Berkas dengan nama ini sudah ada", "Could not move %s" => "Tidak dapat memindahkan %s", -"Unable to rename file" => "Tidak dapat mengubah nama berkas", "No file was uploaded. Unknown error" => "Tidak ada berkas yang diunggah. Galat tidak dikenal.", "There is no error, the file uploaded with success" => "Tidak ada galat, berkas sukses diunggah", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Berkas yang diunggah melampaui direktif upload_max_filesize pada php.ini", @@ -47,6 +46,7 @@ "{count} folders" => "{count} folder", "1 file" => "1 berkas", "{count} files" => "{count} berkas", +"Unable to rename file" => "Tidak dapat mengubah nama berkas", "Upload" => "Unggah", "File handling" => "Penanganan berkas", "Maximum upload size" => "Ukuran pengunggahan maksimum", diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index f0a4aa81efa..aa10c838c1d 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -1,7 +1,6 @@ "Gat ekki fært %s - Skrá með þessu nafni er þegar til", "Could not move %s" => "Gat ekki fært %s", -"Unable to rename file" => "Gat ekki endurskýrt skrá", "No file was uploaded. Unknown error" => "Engin skrá var send inn. Óþekkt villa.", "There is no error, the file uploaded with success" => "Engin villa, innsending heppnaðist", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Innsend skrá er stærri en upload_max stillingin í php.ini:", @@ -40,6 +39,7 @@ "{count} folders" => "{count} möppur", "1 file" => "1 skrá", "{count} files" => "{count} skrár", +"Unable to rename file" => "Gat ekki endurskýrt skrá", "Upload" => "Senda inn", "File handling" => "Meðhöndlun skrár", "Maximum upload size" => "Hámarks stærð innsendingar", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 77725b6770d..d5eca524d8a 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -1,7 +1,6 @@ "Impossibile spostare %s - un file con questo nome esiste già", "Could not move %s" => "Impossibile spostare %s", -"Unable to rename file" => "Impossibile rinominare il file", "No file was uploaded. Unknown error" => "Nessun file è stato inviato. Errore sconosciuto", "There is no error, the file uploaded with success" => "Non ci sono errori, il file è stato caricato correttamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Il file caricato supera la direttiva upload_max_filesize in php.ini:", @@ -47,6 +46,7 @@ "{count} folders" => "{count} cartelle", "1 file" => "1 file", "{count} files" => "{count} file", +"Unable to rename file" => "Impossibile rinominare il file", "Upload" => "Carica", "File handling" => "Gestione file", "Maximum upload size" => "Dimensione massima upload", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index bff9fa5b519..021a2104870 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -1,7 +1,6 @@ "%s を移動できませんでした ― この名前のファイルはすでに存在します", "Could not move %s" => "%s を移動できませんでした", -"Unable to rename file" => "ファイル名の変更ができません", "No file was uploaded. Unknown error" => "ファイルは何もアップロードされていません。不明なエラー", "There is no error, the file uploaded with success" => "エラーはありません。ファイルのアップロードは成功しました", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:", @@ -47,6 +46,7 @@ "{count} folders" => "{count} フォルダ", "1 file" => "1 ファイル", "{count} files" => "{count} ファイル", +"Unable to rename file" => "ファイル名の変更ができません", "Upload" => "アップロード", "File handling" => "ファイル操作", "Maximum upload size" => "最大アップロードサイズ", diff --git a/apps/files/l10n/ka_GE.php b/apps/files/l10n/ka_GE.php index d237a81856a..c50ca2594b6 100644 --- a/apps/files/l10n/ka_GE.php +++ b/apps/files/l10n/ka_GE.php @@ -1,7 +1,6 @@ "%s –ის გადატანა ვერ მოხერხდა – ფაილი ამ სახელით უკვე არსებობს", "Could not move %s" => "%s –ის გადატანა ვერ მოხერხდა", -"Unable to rename file" => "ფაილის სახელის გადარქმევა ვერ მოხერხდა", "No file was uploaded. Unknown error" => "ფაილი არ აიტვირთა. უცნობი შეცდომა", "There is no error, the file uploaded with success" => "ჭოცდომა არ დაფიქსირდა, ფაილი წარმატებით აიტვირთა", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "ატვირთული ფაილი აჭარბებს upload_max_filesize დირექტივას php.ini ფაილში", @@ -47,6 +46,7 @@ "{count} folders" => "{count} საქაღალდე", "1 file" => "1 ფაილი", "{count} files" => "{count} ფაილი", +"Unable to rename file" => "ფაილის სახელის გადარქმევა ვერ მოხერხდა", "Upload" => "ატვირთვა", "File handling" => "ფაილის დამუშავება", "Maximum upload size" => "მაქსიმუმ ატვირთის ზომა", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index 46955bd675f..c78f58542e4 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -1,7 +1,6 @@ "%s 항목을 이동시키지 못하였음 - 파일 이름이 이미 존재함", "Could not move %s" => "%s 항목을 이딩시키지 못하였음", -"Unable to rename file" => "파일 이름바꾸기 할 수 없음", "No file was uploaded. Unknown error" => "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다", "There is no error, the file uploaded with success" => "파일 업로드에 성공하였습니다.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:", @@ -47,6 +46,7 @@ "{count} folders" => "폴더 {count}개", "1 file" => "파일 1개", "{count} files" => "파일 {count}개", +"Unable to rename file" => "파일 이름바꾸기 할 수 없음", "Upload" => "업로드", "File handling" => "파일 처리", "Maximum upload size" => "최대 업로드 크기", diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index 1e7e8657074..f62bdd2d492 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -1,7 +1,6 @@ "Nevarēja pārvietot %s — jau eksistē datne ar tādu nosaukumu", "Could not move %s" => "Nevarēja pārvietot %s", -"Unable to rename file" => "Nevarēja pārsaukt datni", "No file was uploaded. Unknown error" => "Netika augšupielādēta neviena datne. Nezināma kļūda", "There is no error, the file uploaded with success" => "Viss kārtībā, datne augšupielādēta veiksmīga", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Augšupielādētā datne pārsniedz upload_max_filesize norādījumu php.ini datnē:", @@ -46,6 +45,7 @@ "{count} folders" => "{count} mapes", "1 file" => "1 datne", "{count} files" => "{count} datnes", +"Unable to rename file" => "Nevarēja pārsaukt datni", "Upload" => "Augšupielādēt", "File handling" => "Datņu pārvaldība", "Maximum upload size" => "Maksimālais datņu augšupielādes apjoms", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index aea25779dbc..430af50072f 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -1,7 +1,6 @@ "Kon %s niet verplaatsen - Er bestaat al een bestand met deze naam", "Could not move %s" => "Kon %s niet verplaatsen", -"Unable to rename file" => "Kan bestand niet hernoemen", "No file was uploaded. Unknown error" => "Er was geen bestand geladen. Onbekende fout", "There is no error, the file uploaded with success" => "De upload van het bestand is goedgegaan.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Het geüploade bestand overscheidt de upload_max_filesize optie in php.ini:", @@ -47,6 +46,7 @@ "{count} folders" => "{count} mappen", "1 file" => "1 bestand", "{count} files" => "{count} bestanden", +"Unable to rename file" => "Kan bestand niet hernoemen", "Upload" => "Uploaden", "File handling" => "Bestand", "Maximum upload size" => "Maximale bestandsgrootte voor uploads", diff --git a/apps/files/l10n/nn_NO.php b/apps/files/l10n/nn_NO.php index 2042e7bf8ad..6d5c4c56425 100644 --- a/apps/files/l10n/nn_NO.php +++ b/apps/files/l10n/nn_NO.php @@ -1,7 +1,6 @@ "Klarte ikkje å flytta %s – det finst allereie ei fil med dette namnet", "Could not move %s" => "Klarte ikkje å flytta %s", -"Unable to rename file" => "Klarte ikkje å endra filnamnet", "No file was uploaded. Unknown error" => "Ingen filer lasta opp. Ukjend feil", "There is no error, the file uploaded with success" => "Ingen feil, fila vart lasta opp", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Fila du lasta opp er større enn det «upload_max_filesize» i php.ini tillater: ", @@ -47,6 +46,7 @@ "{count} folders" => "{count} mapper", "1 file" => "1 fil", "{count} files" => "{count} filer", +"Unable to rename file" => "Klarte ikkje å endra filnamnet", "Upload" => "Last opp", "File handling" => "Filhandtering", "Maximum upload size" => "Maksimal opplastingsstorleik", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index ef0fd525778..65d9a4e4be2 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -1,7 +1,6 @@ "Nie można było przenieść %s - Plik o takiej nazwie już istnieje", "Could not move %s" => "Nie można było przenieść %s", -"Unable to rename file" => "Nie można zmienić nazwy pliku", "No file was uploaded. Unknown error" => "Żaden plik nie został załadowany. Nieznany błąd", "There is no error, the file uploaded with success" => "Nie było błędów, plik wysłano poprawnie.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Wgrany plik przekracza wartość upload_max_filesize zdefiniowaną w php.ini: ", @@ -47,6 +46,7 @@ "{count} folders" => "Ilość folderów: {count}", "1 file" => "1 plik", "{count} files" => "Ilość plików: {count}", +"Unable to rename file" => "Nie można zmienić nazwy pliku", "Upload" => "Wyślij", "File handling" => "Zarządzanie plikami", "Maximum upload size" => "Maksymalny rozmiar wysyłanego pliku", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index f61084105de..7c68987652c 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -1,7 +1,6 @@ "Impossível mover %s - Um arquivo com este nome já existe", "Could not move %s" => "Impossível mover %s", -"Unable to rename file" => "Impossível renomear arquivo", "No file was uploaded. Unknown error" => "Nenhum arquivo foi enviado. Erro desconhecido", "There is no error, the file uploaded with success" => "Sem erros, o arquivo foi enviado com sucesso", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O arquivo enviado excede a diretiva upload_max_filesize no php.ini: ", @@ -47,6 +46,7 @@ "{count} folders" => "{count} pastas", "1 file" => "1 arquivo", "{count} files" => "{count} arquivos", +"Unable to rename file" => "Impossível renomear arquivo", "Upload" => "Upload", "File handling" => "Tratamento de Arquivo", "Maximum upload size" => "Tamanho máximo para carregar", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index a5de64cc1db..15d6fc80bd3 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -1,7 +1,6 @@ "Não foi possível mover o ficheiro %s - Já existe um ficheiro com esse nome", "Could not move %s" => "Não foi possível move o ficheiro %s", -"Unable to rename file" => "Não foi possível renomear o ficheiro", "No file was uploaded. Unknown error" => "Nenhum ficheiro foi carregado. Erro desconhecido", "There is no error, the file uploaded with success" => "Não ocorreram erros, o ficheiro foi submetido com sucesso", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize", @@ -47,6 +46,7 @@ "{count} folders" => "{count} pastas", "1 file" => "1 ficheiro", "{count} files" => "{count} ficheiros", +"Unable to rename file" => "Não foi possível renomear o ficheiro", "Upload" => "Carregar", "File handling" => "Manuseamento de ficheiros", "Maximum upload size" => "Tamanho máximo de envio", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index b2b6ee4963f..8fdf62aeb32 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -1,7 +1,6 @@ "Nu se poate de mutat %s - Fișier cu acest nume deja există", "Could not move %s" => "Nu s-a putut muta %s", -"Unable to rename file" => "Nu s-a putut redenumi fișierul", "No file was uploaded. Unknown error" => "Nici un fișier nu a fost încărcat. Eroare necunoscută", "There is no error, the file uploaded with success" => "Nu a apărut nici o eroare, fișierul a fost încărcat cu succes", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Fisierul incarcat depaseste upload_max_filesize permisi in php.ini: ", @@ -47,6 +46,7 @@ "{count} folders" => "{count} foldare", "1 file" => "1 fisier", "{count} files" => "{count} fisiere", +"Unable to rename file" => "Nu s-a putut redenumi fișierul", "Upload" => "Încărcare", "File handling" => "Manipulare fișiere", "Maximum upload size" => "Dimensiune maximă admisă la încărcare", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 54d6780c3d1..83412bf2be8 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -1,7 +1,6 @@ "Невозможно переместить %s - файл с таким именем уже существует", "Could not move %s" => "Невозможно переместить %s", -"Unable to rename file" => "Невозможно переименовать файл", "No file was uploaded. Unknown error" => "Файл не был загружен. Неизвестная ошибка", "There is no error, the file uploaded with success" => "Файл загружен успешно.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Файл превышает размер установленный upload_max_filesize в php.ini:", @@ -47,6 +46,7 @@ "{count} folders" => "{count} папок", "1 file" => "1 файл", "{count} files" => "{count} файлов", +"Unable to rename file" => "Невозможно переименовать файл", "Upload" => "Загрузка", "File handling" => "Управление файлами", "Maximum upload size" => "Максимальный размер загружаемого файла", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index 86f01bfb0ed..b7f329c3626 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -1,7 +1,6 @@ "Nie je možné presunúť %s - súbor s týmto menom už existuje", "Could not move %s" => "Nie je možné presunúť %s", -"Unable to rename file" => "Nemožno premenovať súbor", "No file was uploaded. Unknown error" => "Žiaden súbor nebol odoslaný. Neznáma chyba", "There is no error, the file uploaded with success" => "Nenastala žiadna chyba, súbor bol úspešne nahraný", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Nahraný súbor predčil konfiguračnú direktívu upload_max_filesize v súbore php.ini:", @@ -47,6 +46,7 @@ "{count} folders" => "{count} priečinkov", "1 file" => "1 súbor", "{count} files" => "{count} súborov", +"Unable to rename file" => "Nemožno premenovať súbor", "Upload" => "Odoslať", "File handling" => "Nastavenie správania sa k súborom", "Maximum upload size" => "Maximálna veľkosť odosielaného súboru", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 44c33d62fbe..6902d311ab7 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -1,7 +1,6 @@ "Ni mogoče premakniti %s - datoteka s tem imenom že obstaja", "Could not move %s" => "Ni mogoče premakniti %s", -"Unable to rename file" => "Ni mogoče preimenovati datoteke", "No file was uploaded. Unknown error" => "Ni poslane datoteke. Neznana napaka.", "There is no error, the file uploaded with success" => "Datoteka je uspešno naložena.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Poslana datoteka presega dovoljeno velikost, ki je določena z možnostjo upload_max_filesize v datoteki php.ini:", @@ -47,6 +46,7 @@ "{count} folders" => "{count} map", "1 file" => "1 datoteka", "{count} files" => "{count} datotek", +"Unable to rename file" => "Ni mogoče preimenovati datoteke", "Upload" => "Pošlji", "File handling" => "Upravljanje z datotekami", "Maximum upload size" => "Največja velikost za pošiljanja", diff --git a/apps/files/l10n/sq.php b/apps/files/l10n/sq.php index fe3ae9e7a96..63c95f692e2 100644 --- a/apps/files/l10n/sq.php +++ b/apps/files/l10n/sq.php @@ -1,7 +1,6 @@ "%s nuk u spostua - Aty ekziston një skedar me të njëjtin emër", "Could not move %s" => "%s nuk u spostua", -"Unable to rename file" => "Nuk është i mundur riemërtimi i skedarit", "No file was uploaded. Unknown error" => "Nuk u ngarkua asnjë skedar. Veprim i gabuar i panjohur", "There is no error, the file uploaded with success" => "Nuk pati veprime të gabuara, skedari u ngarkua me sukses", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Skedari i ngarkuar tejkalon udhëzimin upload_max_filesize tek php.ini:", @@ -47,6 +46,7 @@ "{count} folders" => "{count} dosje", "1 file" => "1 skedar", "{count} files" => "{count} skedarë", +"Unable to rename file" => "Nuk është i mundur riemërtimi i skedarit", "Upload" => "Ngarko", "File handling" => "Trajtimi i skedarit", "Maximum upload size" => "Dimensioni maksimal i ngarkimit", diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index a10bd82b4cc..3be6dde91a7 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -1,7 +1,6 @@ "Не могу да преместим %s – датотека с овим именом већ постоји", "Could not move %s" => "Не могу да преместим %s", -"Unable to rename file" => "Не могу да преименујем датотеку", "No file was uploaded. Unknown error" => "Ниједна датотека није отпремљена услед непознате грешке", "There is no error, the file uploaded with success" => "Није дошло до грешке. Датотека је успешно отпремљена.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Отпремљена датотека прелази смерницу upload_max_filesize у датотеци php.ini:", @@ -47,6 +46,7 @@ "{count} folders" => "{count} фасцикле/и", "1 file" => "1 датотека", "{count} files" => "{count} датотеке/а", +"Unable to rename file" => "Не могу да преименујем датотеку", "Upload" => "Отпреми", "File handling" => "Управљање датотекама", "Maximum upload size" => "Највећа величина датотеке", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index c342db37538..82d169d569c 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -1,7 +1,6 @@ "Kunde inte flytta %s - Det finns redan en fil med detta namn", "Could not move %s" => "Kan inte flytta %s", -"Unable to rename file" => "Kan inte byta namn på filen", "No file was uploaded. Unknown error" => "Ingen fil uppladdad. Okänt fel", "There is no error, the file uploaded with success" => "Inga fel uppstod. Filen laddades upp utan problem.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Den uppladdade filen överskrider upload_max_filesize direktivet php.ini:", @@ -47,6 +46,7 @@ "{count} folders" => "{count} mappar", "1 file" => "1 fil", "{count} files" => "{count} filer", +"Unable to rename file" => "Kan inte byta namn på filen", "Upload" => "Ladda upp", "File handling" => "Filhantering", "Maximum upload size" => "Maximal storlek att ladda upp", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index a707edb6283..06d26edfec8 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -1,7 +1,6 @@ "ไม่สามารถย้าย %s ได้ - ไฟล์ที่ใช้ชื่อนี้มีอยู่แล้ว", "Could not move %s" => "ไม่สามารถย้าย %s ได้", -"Unable to rename file" => "ไม่สามารถเปลี่ยนชื่อไฟล์ได้", "No file was uploaded. Unknown error" => "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ", "There is no error, the file uploaded with success" => "ไม่พบข้อผิดพลาดใดๆ, ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini", @@ -46,6 +45,7 @@ "{count} folders" => "{count} โฟลเดอร์", "1 file" => "1 ไฟล์", "{count} files" => "{count} ไฟล์", +"Unable to rename file" => "ไม่สามารถเปลี่ยนชื่อไฟล์ได้", "Upload" => "อัพโหลด", "File handling" => "การจัดกาไฟล์", "Maximum upload size" => "ขนาดไฟล์สูงสุดที่อัพโหลดได้", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 1df062c994c..fd5c6bc6f09 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -1,7 +1,6 @@ "%s taşınamadı. Bu isimde dosya zaten var.", "Could not move %s" => "%s taşınamadı", -"Unable to rename file" => "Dosya adı değiştirilemedi", "No file was uploaded. Unknown error" => "Dosya yüklenmedi. Bilinmeyen hata", "There is no error, the file uploaded with success" => "Dosya başarıyla yüklendi, hata oluşmadı", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırı aşıldı.", @@ -47,6 +46,7 @@ "{count} folders" => "{count} dizin", "1 file" => "1 dosya", "{count} files" => "{count} dosya", +"Unable to rename file" => "Dosya adı değiştirilemedi", "Upload" => "Yükle", "File handling" => "Dosya taşıma", "Maximum upload size" => "Maksimum yükleme boyutu", diff --git a/apps/files/l10n/ug.php b/apps/files/l10n/ug.php index 1bcd78be5ae..fb8f187adef 100644 --- a/apps/files/l10n/ug.php +++ b/apps/files/l10n/ug.php @@ -1,6 +1,5 @@ "%s يۆتكىيەلمەيدۇ", -"Unable to rename file" => "ھۆججەت ئاتىنى ئۆزگەرتكىلى بولمايدۇ", "No file was uploaded. Unknown error" => "ھېچقانداق ھۆججەت يۈكلەنمىدى. يوچۇن خاتالىق", "No file was uploaded" => "ھېچقانداق ھۆججەت يۈكلەنمىدى", "Missing a temporary folder" => "ۋاقىتلىق قىسقۇچ كەم.", @@ -29,6 +28,7 @@ "1 folder" => "1 قىسقۇچ", "1 file" => "1 ھۆججەت", "{count} files" => "{count} ھۆججەت", +"Unable to rename file" => "ھۆججەت ئاتىنى ئۆزگەرتكىلى بولمايدۇ", "Upload" => "يۈكلە", "Save" => "ساقلا", "New" => "يېڭى", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 72915630cae..324b28936e7 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -1,7 +1,6 @@ "Не вдалося перемістити %s - Файл з таким ім'ям вже існує", "Could not move %s" => "Не вдалося перемістити %s", -"Unable to rename file" => "Не вдалося перейменувати файл", "No file was uploaded. Unknown error" => "Не завантажено жодного файлу. Невідома помилка", "There is no error, the file uploaded with success" => "Файл успішно вивантажено без помилок.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Розмір звантаження перевищує upload_max_filesize параметра в php.ini: ", @@ -47,6 +46,7 @@ "{count} folders" => "{count} папок", "1 file" => "1 файл", "{count} files" => "{count} файлів", +"Unable to rename file" => "Не вдалося перейменувати файл", "Upload" => "Вивантажити", "File handling" => "Робота з файлами", "Maximum upload size" => "Максимальний розмір відвантажень", diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index 77df2b0db41..c8aa11295c8 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -1,7 +1,6 @@ "Không thể di chuyển %s - Đã có tên tập tin này trên hệ thống", "Could not move %s" => "Không thể di chuyển %s", -"Unable to rename file" => "Không thể đổi tên file", "No file was uploaded. Unknown error" => "Không có tập tin nào được tải lên. Lỗi không xác định", "There is no error, the file uploaded with success" => "Không có lỗi, các tập tin đã được tải lên thành công", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "The uploaded file exceeds the upload_max_filesize directive in php.ini: ", @@ -47,6 +46,7 @@ "{count} folders" => "{count} thư mục", "1 file" => "1 tập tin", "{count} files" => "{count} tập tin", +"Unable to rename file" => "Không thể đổi tên file", "Upload" => "Tải lên", "File handling" => "Xử lý tập tin", "Maximum upload size" => "Kích thước tối đa ", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 8d4d8b2c37c..d5d2b84d123 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -1,7 +1,6 @@ "无法移动 %s - 同名文件已存在", "Could not move %s" => "无法移动 %s", -"Unable to rename file" => "无法重命名文件", "No file was uploaded. Unknown error" => "没有文件被上传。未知错误", "There is no error, the file uploaded with success" => "文件上传成功,没有错误发生", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "上传文件大小已超过php.ini中upload_max_filesize所规定的值", @@ -47,6 +46,7 @@ "{count} folders" => "{count} 个文件夹", "1 file" => "1 个文件", "{count} files" => "{count} 个文件", +"Unable to rename file" => "无法重命名文件", "Upload" => "上传", "File handling" => "文件处理", "Maximum upload size" => "最大上传大小", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 5cc7e358f02..600048a321c 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -1,7 +1,6 @@ "無法移動 %s - 同名的檔案已經存在", "Could not move %s" => "無法移動 %s", -"Unable to rename file" => "無法重新命名檔案", "No file was uploaded. Unknown error" => "沒有檔案被上傳。未知的錯誤。", "There is no error, the file uploaded with success" => "無錯誤,檔案上傳成功", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:", @@ -47,6 +46,7 @@ "{count} folders" => "{count} 個資料夾", "1 file" => "1 個檔案", "{count} files" => "{count} 個檔案", +"Unable to rename file" => "無法重新命名檔案", "Upload" => "上傳", "File handling" => "檔案處理", "Maximum upload size" => "最大上傳檔案大小", diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index e6549742d74..a1b17ff718f 100644 --- a/l10n/af_ZA/files.po +++ b/l10n/af_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 10:00+0200\n" -"PO-Revision-Date: 2013-04-26 08:00+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -86,7 +82,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "" @@ -94,43 +90,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 11080e1536f..4e209e0c8e5 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "فشل في نقل الملف %s - يوجد ملف بنفس هذا ال msgid "Could not move %s" msgstr "فشل في نقل %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "فشل في اعادة تسمية الملف" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "لم يتم رفع أي ملف , خطأ غير معروف" @@ -86,7 +82,7 @@ msgstr "شارك" msgid "Delete permanently" msgstr "حذف بشكل دائم" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "إلغاء" @@ -94,43 +90,43 @@ msgstr "إلغاء" msgid "Rename" msgstr "إعادة تسميه" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "قيد الانتظار" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} موجود مسبقا" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "استبدال" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "اقترح إسم" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "إلغاء" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "استبدل {new_name} بـ {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "تراجع" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "جاري تنفيذ عملية الحذف" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "جاري رفع 1 ملف" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "مساحتك التخزينية ممتلئة, لا يمكم تحديث msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "مساحتك التخزينية امتلأت تقريبا " -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "جاري تجهيز عملية التحميل. قد تستغرق بعض الوقت اذا كان حجم الملفات كبير." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "فشل في رفع ملفاتك , إما أنها مجلد أو حجمها 0 بايت" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "تم إلغاء عملية رفع الملفات ." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "عملية رفع الملفات قيد التنفيذ. اغلاق الصفحة سوف يلغي عملية رفع الملفات." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "عنوان ال URL لا يجوز أن يكون فارغا." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "إسم مجلد غير صحيح. استخدام مصطلح \"Shared\" محجوز للنظام" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "خطأ" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "اسم" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "حجم" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "معدل" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "مجلد عدد 1" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} مجلدات" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "ملف واحد" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} ملفات" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "فشل في اعادة تسمية الملف" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "رفع" @@ -279,37 +283,37 @@ msgstr "حذف الملفات" msgid "Cancel upload" msgstr "إلغاء رفع الملفات" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "لا تملك صلاحيات الكتابة هنا." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "لا يوجد شيء هنا. إرفع بعض الملفات!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "تحميل" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "إلغاء مشاركة" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "حجم الترفيع أعلى من المسموح" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "يرجى الانتظار , جاري فحص الملفات ." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "الفحص الحالي" diff --git a/l10n/be/files.po b/l10n/be/files.po index a7815f9dfb2..de9d057f6ad 100644 --- a/l10n/be/files.po +++ b/l10n/be/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 10:00+0200\n" -"PO-Revision-Date: 2013-04-26 08:00+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -86,7 +82,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "" @@ -94,43 +90,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 6460328a0ce..0d49d30e76d 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:31+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -86,7 +82,7 @@ msgstr "Споделяне" msgid "Delete permanently" msgstr "Изтриване завинаги" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Изтриване" @@ -94,43 +90,43 @@ msgstr "Изтриване" msgid "Rename" msgstr "Преименуване" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Чакащо" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "препокриване" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "отказ" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "възтановяване" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Качването е спряно." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Грешка" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Име" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Размер" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Променено" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 папка" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} папки" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 файл" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} файла" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Качване" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "Спри качването" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Няма нищо тук. Качете нещо." -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Изтегляне" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Файлът който сте избрали за качване е прекалено голям" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файловете които се опитвате да качите са по-големи от позволеното за сървъра." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Файловете се претърсват, изчакайте." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index e3b44fed116..ff66538e585 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:31+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "%s কে স্থানান্তর করা সম্ভব হ msgid "Could not move %s" msgstr "%s কে স্থানান্তর করা সম্ভব হলো না" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "ফাইলের নাম পরিবর্তন করা সম্ভব হলো না" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "কোন ফাইল আপলোড করা হয় নি। সমস্যার কারণটি অজ্ঞাত।" @@ -86,7 +82,7 @@ msgstr "ভাগাভাগি কর" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "মুছে" @@ -94,43 +90,43 @@ msgstr "মুছে" msgid "Rename" msgstr "পূনঃনামকরণ" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "মুলতুবি" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} টি বিদ্যমান" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "প্রতিস্থাপন" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "নাম সুপারিশ করুন" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "বাতিল" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "ক্রিয়া প্রত্যাহার" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "১টি ফাইল আপলোড করা হচ্ছে" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "আপনার ফাইলটি আপলোড করা সম্ভব হলো না, কেননা এটি হয় একটি ফোল্ডার কিংবা এর আকার ০ বাইট" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "যথেষ্ঠ পরিমাণ স্থান নেই" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "আপলোড বাতিল করা হয়েছে।" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URL ফাঁকা রাখা যাবে না।" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "ফোল্ডারের নামটি সঠিক নয়। 'ভাগাভাগি করা' শুধুমাত্র Owncloud এর জন্য সংরক্ষিত।" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "সমস্যা" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "রাম" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "আকার" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "পরিবর্তিত" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "১টি ফোল্ডার" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} টি ফোল্ডার" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "১টি ফাইল" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} টি ফাইল" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "ফাইলের নাম পরিবর্তন করা সম্ভব হলো না" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "আপলোড" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "আপলোড বাতিল কর" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "এখানে কিছুই নেই। কিছু আপলোড করুন !" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "ডাউনলোড" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "ভাগাভাগি বাতিল " -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "আপলোডের আকারটি অনেক বড়" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "আপনি এই সার্ভারে আপলোড করার জন্য অনুমোদিত ফাইলের সর্বোচ্চ আকারের চেয়ে বৃহদাকার ফাইল আপলোড করার চেষ্টা করছেন " -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "ফাইলগুলো স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "বর্তমান স্ক্যানিং" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 52940b62b98..b131f8debde 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "No s'ha pogut moure %s - Ja hi ha un fitxer amb aquest nom" msgid "Could not move %s" msgstr " No s'ha pogut moure %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "No es pot canviar el nom del fitxer" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "No s'ha carregat cap fitxer. Error desconegut" @@ -86,7 +82,7 @@ msgstr "Comparteix" msgid "Delete permanently" msgstr "Esborra permanentment" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Esborra" @@ -94,43 +90,43 @@ msgstr "Esborra" msgid "Rename" msgstr "Reanomena" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Pendent" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} ja existeix" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "substitueix" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "sugereix un nom" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "cancel·la" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "s'ha substituït {old_name} per {new_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "desfés" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "executa d'operació d'esborrar" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 fitxer pujant" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "fitxers pujant" @@ -156,69 +152,77 @@ msgstr "El vostre espai d'emmagatzemament és ple, els fitxers ja no es poden ac msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "El vostre espai d'emmagatzemament és gairebé ple ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "S'està preparant la baixada. Pot trigar una estona si els fitxers són grans." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "No hi ha prou espai disponible" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "La pujada s'ha cancel·lat." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "La URL no pot ser buida" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Error" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Nom" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Mida" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Modificat" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} carpetes" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 fitxer" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} fitxers" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "No es pot canviar el nom del fitxer" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Puja" @@ -279,37 +283,37 @@ msgstr "Fitxers esborrats" msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "No teniu permisos d'escriptura aquí." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Res per aquí. Pugeu alguna cosa!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Baixa" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Deixa de compartir" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "La pujada és massa gran" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "S'estan escanejant els fitxers, espereu" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Actualment escanejant" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 4d8a59d8c79..38b1eebdac3 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "Nelze přesunout %s - existuje soubor se stejným názvem" msgid "Could not move %s" msgstr "Nelze přesunout %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Nelze přejmenovat soubor" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Soubor nebyl odeslán. Neznámá chyba" @@ -86,7 +82,7 @@ msgstr "Sdílet" msgid "Delete permanently" msgstr "Trvale odstranit" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Smazat" @@ -94,43 +90,43 @@ msgstr "Smazat" msgid "Rename" msgstr "Přejmenovat" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Nevyřízené" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} již existuje" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "nahradit" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "navrhnout název" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "zrušit" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "nahrazeno {new_name} s {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "zpět" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "provést smazání" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "odesílá se 1 soubor" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "soubory se odesílají" @@ -156,69 +152,77 @@ msgstr "Vaše úložiště je plné, nelze aktualizovat ani synchronizovat soubo msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Vaše úložiště je téměř plné ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Vaše soubory ke stažení se připravují. Pokud jsou velké může to chvíli trvat." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nelze odeslat Váš soubor, protože je to adresář, nebo je jeho velikost 0 bajtů" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Nedostatek dostupného místa" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Odesílání zrušeno." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URL nemůže být prázdná" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Neplatný název složky. Použití 'Shared' je rezervováno pro vnitřní potřeby Owncloud" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Chyba" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Název" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Velikost" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Upraveno" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 složka" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} složky" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 soubor" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} soubory" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Nelze přejmenovat soubor" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Odeslat" @@ -279,37 +283,37 @@ msgstr "Odstraněné soubory" msgid "Cancel upload" msgstr "Zrušit odesílání" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "Nemáte zde práva zápisu." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Žádný obsah. Nahrajte něco." -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Stáhnout" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Zrušit sdílení" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Odesílaný soubor je příliš velký" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Soubory se prohledávají, prosím čekejte." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Aktuální prohledávání" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 7fa36284862..3c28222335f 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-01 01:59+0200\n" -"PO-Revision-Date: 2013-04-30 14:43+0000\n" -"Last-Translator: ubuntucymraeg \n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,10 +27,6 @@ msgstr "Methwyd symud %s - Mae ffeil gyda'r enw hwn eisoes yn bodoli" msgid "Could not move %s" msgstr "Methwyd symud %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Methu ailenwi ffeil" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ni lwythwyd ffeil i fyny. Gwall anhysbys." @@ -94,43 +90,43 @@ msgstr "Dileu" msgid "Rename" msgstr "Ailenwi" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "I ddod" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} yn bodoli'n barod" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "amnewid" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "awgrymu enw" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "diddymu" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "newidiwyd {new_name} yn lle {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "dadwneud" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "cyflawni gweithred dileu" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 ffeil yn llwytho i fyny" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "ffeiliau'n llwytho i fyny" @@ -219,6 +215,14 @@ msgstr "1 ffeil" msgid "{count} files" msgstr "{count} ffeil" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Methu ailenwi ffeil" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Llwytho i fyny" diff --git a/l10n/da/files.po b/l10n/da/files.po index 7c3fb5f5a27..3fcfd963c4b 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "Kunne ikke flytte %s - der findes allerede en fil med dette navn" msgid "Could not move %s" msgstr "Kunne ikke flytte %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Kunne ikke omdøbe fil" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil blev uploadet. Ukendt fejl." @@ -86,7 +82,7 @@ msgstr "Del" msgid "Delete permanently" msgstr "Slet permanent" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Slet" @@ -94,43 +90,43 @@ msgstr "Slet" msgid "Rename" msgstr "Omdøb" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Afventer" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} eksisterer allerede" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "erstat" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "foreslå navn" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "fortryd" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "erstattede {new_name} med {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "fortryd" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "udfør slet operation" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 fil uploades" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "uploader filer" @@ -156,69 +152,77 @@ msgstr "Din opbevaringsplads er fyldt op, filer kan ikke opdateres eller synkron msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Din opbevaringsplads er næsten fyldt op ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Dit download forberedes. Dette kan tage lidt tid ved større filer." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kan ikke uploade din fil - det er enten en mappe eller en fil med et indhold på 0 bytes." -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "ikke nok tilgængelig ledig plads " -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Upload afbrudt." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URLen kan ikke være tom." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Fejl" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Navn" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Størrelse" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Ændret" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 fil" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} filer" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Kunne ikke omdøbe fil" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Upload" @@ -279,37 +283,37 @@ msgstr "Slettede filer" msgid "Cancel upload" msgstr "Fortryd upload" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "Du har ikke skriverettigheder her." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Her er tomt. Upload noget!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Download" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Fjern deling" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Upload er for stor" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filerne, du prøver at uploade, er større end den maksimale størrelse for fil-upload på denne server." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Filerne bliver indlæst, vent venligst." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Indlæser" diff --git a/l10n/de/files.po b/l10n/de/files.po index 5a0a81b37da..fb3a8aac6c8 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-12 02:01+0200\n" -"PO-Revision-Date: 2013-05-09 21:00+0000\n" -"Last-Translator: Marcel Kühlhorn \n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,10 +28,6 @@ msgstr "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert berei msgid "Could not move %s" msgstr "Konnte %s nicht verschieben" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Konnte Datei nicht umbenennen" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" @@ -95,43 +91,43 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "Namen vorschlagen" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} ersetzt durch {new_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "Löschvorgang ausführen" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "Dateien werden hoch geladen" @@ -220,6 +216,14 @@ msgstr "1 Datei" msgid "{count} files" msgstr "{count} Dateien" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Konnte Datei nicht umbenennen" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Hochladen" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 55b91f87a79..02b73e2efab 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-12 02:01+0200\n" -"PO-Revision-Date: 2013-05-09 20:00+0000\n" -"Last-Translator: Marcel Kühlhorn \n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,10 +29,6 @@ msgstr "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert berei msgid "Could not move %s" msgstr "Konnte %s nicht verschieben" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Konnte Datei nicht umbenennen" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" @@ -96,43 +92,43 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "Namen vorschlagen" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} wurde ersetzt durch {new_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "Löschvorgang ausführen" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "Dateien werden hoch geladen" @@ -221,6 +217,14 @@ msgstr "1 Datei" msgid "{count} files" msgstr "{count} Dateien" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Konnte Datei nicht umbenennen" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Hochladen" diff --git a/l10n/el/files.po b/l10n/el/files.po index d411ad2cbc1..6f2c4fcdfa1 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "Αδυναμία μετακίνησης του %s - υπάρχει ήδ msgid "Could not move %s" msgstr "Αδυναμία μετακίνησης του %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Αδυναμία μετονομασίας αρχείου" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα" @@ -86,7 +82,7 @@ msgstr "Διαμοιρασμός" msgid "Delete permanently" msgstr "Μόνιμη διαγραφή" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Διαγραφή" @@ -94,43 +90,43 @@ msgstr "Διαγραφή" msgid "Rename" msgstr "Μετονομασία" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Εκκρεμεί" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} υπάρχει ήδη" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "αντικατέστησε" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "συνιστώμενο όνομα" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "ακύρωση" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "αντικαταστάθηκε το {new_name} με {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "αναίρεση" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "εκτέλεση της διαδικασίας διαγραφής" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 αρχείο ανεβαίνει" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "αρχεία ανεβαίνουν" @@ -156,69 +152,77 @@ msgstr "Ο αποθηκευτικός σας χώρος είναι γεμάτο msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ο αποθηκευτικός χώρος είναι σχεδόν γεμάτος ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Η λήψη προετοιμάζεται. Αυτό μπορεί να πάρει ώρα εάν τα αρχεία έχουν μεγάλο μέγεθος." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Αδυναμία στην αποστολή του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Δεν υπάρχει αρκετός διαθέσιμος χώρος" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Η αποστολή ακυρώθηκε." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "Η URL δεν μπορεί να είναι κενή." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του 'Κοινόχρηστος' χρησιμοποιείται από ο Owncloud" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Σφάλμα" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Όνομα" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 φάκελος" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} φάκελοι" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 αρχείο" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} αρχεία" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Αδυναμία μετονομασίας αρχείου" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Μεταφόρτωση" @@ -279,37 +283,37 @@ msgstr "Διαγραμμένα αρχεία" msgid "Cancel upload" msgstr "Ακύρωση αποστολής" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "Δεν έχετε δικαιώματα εγγραφής εδώ." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Δεν υπάρχει τίποτα εδώ. Ανεβάστε κάτι!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Λήψη" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Σταμάτημα διαμοιρασμού" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Πολύ μεγάλο αρχείο προς αποστολή" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν τον διακομιστή." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Τρέχουσα ανίχνευση" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index 941c39cc0a6..754680e81f5 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-12 02:01+0200\n" -"PO-Revision-Date: 2013-04-26 08:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -94,43 +90,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -219,6 +215,14 @@ msgstr "" msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 8321aacc672..780fab4f57d 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "Ne eblis movi %s: dosiero kun ĉi tiu nomo jam ekzistas" msgid "Could not move %s" msgstr "Ne eblis movi %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Ne eblis alinomigi dosieron" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Neniu dosiero alŝutiĝis. Nekonata eraro." @@ -86,7 +82,7 @@ msgstr "Kunhavigi" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Forigi" @@ -94,43 +90,43 @@ msgstr "Forigi" msgid "Rename" msgstr "Alinomigi" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Traktotaj" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} jam ekzistas" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "anstataŭigi" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "sugesti nomon" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "nuligi" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "anstataŭiĝis {new_name} per {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "malfari" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 dosiero estas alŝutata" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "dosieroj estas alŝutataj" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Via elŝuto pretiĝatas. Ĉi tio povas daŭri iom da tempo se la dosieroj grandas." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duumokojn" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Ne haveblas sufiĉa spaco" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "La alŝuto nuliĝis." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URL ne povas esti malplena." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nevalida dosierujnomo. Uzo de “Shared” rezervatas de Owncloud." -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Eraro" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Nomo" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Grando" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Modifita" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 dosierujo" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} dosierujoj" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 dosiero" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} dosierujoj" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Ne eblis alinomigi dosieron" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Alŝuti" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "Nuligi alŝuton" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Nenio estas ĉi tie. Alŝutu ion!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Elŝuti" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Malkunhavigi" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Alŝuto tro larĝa" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Dosieroj estas skanataj, bonvolu atendi." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Nuna skano" diff --git a/l10n/es/files.po b/l10n/es/files.po index 74327252992..70c4d26e3d5 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-12 02:01+0200\n" -"PO-Revision-Date: 2013-05-04 16:20+0000\n" -"Last-Translator: ggam \n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -28,10 +28,6 @@ msgstr "No se puede mover %s - Ya existe un archivo con ese nombre" msgid "Could not move %s" msgstr "No se puede mover %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "No se puede renombrar el archivo" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "No se subió ningún archivo. Error desconocido" @@ -95,43 +91,43 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Pendientes" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "sugerir nombre" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "deshacer" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "Eliminar" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "subiendo 1 archivo" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "subiendo archivos" @@ -220,6 +216,14 @@ msgstr "1 archivo" msgid "{count} files" msgstr "{count} archivos" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "No se puede renombrar el archivo" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Subir" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 76340a8c729..1341e2989fe 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "No se pudo mover %s - Un archivo con este nombre ya existe" msgid "Could not move %s" msgstr "No se pudo mover %s " -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "No fue posible cambiar el nombre al archivo" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "El archivo no fue subido. Error desconocido" @@ -86,7 +82,7 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "Borrar de manera permanente" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Borrar" @@ -94,43 +90,43 @@ msgstr "Borrar" msgid "Rename" msgstr "Cambiar nombre" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Pendientes" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "sugerir nombre" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "deshacer" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "Eliminar" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "Subiendo 1 archivo" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "Subiendo archivos" @@ -156,69 +152,77 @@ msgstr "El almacenamiento está lleno, los archivos no se pueden seguir actualiz msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "El almacenamiento está casi lleno ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Tu descarga esta siendo preparada. Esto puede tardar algun tiempo si los archivos son muy grandes." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "No fue posible subir el archivo porque es un directorio o porque su tamaño es 0 bytes" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "No hay suficiente espacio disponible" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "La subida fue cancelada" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "La URL no puede estar vacía" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nombre de carpeta inválido. El uso de 'Shared' está reservado por ownCloud" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Error" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Nombre" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Tamaño" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Modificado" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 directorio" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} directorios" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 archivo" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} archivos" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "No fue posible cambiar el nombre al archivo" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Subir" @@ -279,37 +283,37 @@ msgstr "Archivos Borrados" msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "No tenés permisos de escritura acá." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "No hay nada. ¡Subí contenido!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Descargar" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Dejar de compartir" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "El tamaño del archivo que querés subir es demasiado grande" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los archivos que intentás subir sobrepasan el tamaño máximo " -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Se están escaneando los archivos, por favor esperá." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 8d0e78eabd3..1b7c5d88378 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-01 01:59+0200\n" -"PO-Revision-Date: 2013-04-30 09:40+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -28,10 +28,6 @@ msgstr "Ei saa liigutada faili %s - samanimeline fail on juba olemas" msgid "Could not move %s" msgstr "%s liigutamine ebaõnnestus" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Faili ümbernimetamine ebaõnnestus" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ühtegi faili ei laetud üles. Tundmatu viga" @@ -95,43 +91,43 @@ msgstr "Kustuta" msgid "Rename" msgstr "Nimeta ümber" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Ootel" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} on juba olemas" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "asenda" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "soovita nime" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "loobu" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "asendas nime {old_name} nimega {new_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "tagasi" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "teosta kustutamine" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 faili üleslaadimisel" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "failide üleslaadimine" @@ -220,6 +216,14 @@ msgstr "1 fail" msgid "{count} files" msgstr "{count} faili" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Faili ümbernimetamine ebaõnnestus" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Lae üles" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 61fa18f263b..fd7b57bfd49 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "Ezin da %s mugitu - Izen hau duen fitxategia dagoeneko existitzen da" msgid "Could not move %s" msgstr "Ezin dira fitxategiak mugitu %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Ezin izan da fitxategia berrizendatu" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ez da fitxategirik igo. Errore ezezaguna" @@ -86,7 +82,7 @@ msgstr "Elkarbanatu" msgid "Delete permanently" msgstr "Ezabatu betirako" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Ezabatu" @@ -94,43 +90,43 @@ msgstr "Ezabatu" msgid "Rename" msgstr "Berrizendatu" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Zain" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} dagoeneko existitzen da" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "ordeztu" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "aholkatu izena" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "ezeztatu" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr " {new_name}-k {old_name} ordezkatu du" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "desegin" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "Ezabatu" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "fitxategi 1 igotzen" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "fitxategiak igotzen" @@ -156,69 +152,77 @@ msgstr "Zure biltegiratzea beterik dago, ezingo duzu aurrerantzean fitxategirik msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Zure biltegiratzea nahiko beterik dago (%{usedSpacePercent})" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Zure deskarga prestatu egin behar da. Denbora bat har lezake fitxategiak handiak badira. " -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ezin izan da zure fitxategia igo karpeta bat delako edo 0 byte dituelako" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Ez dago leku nahikorik." -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Igoera ezeztatuta" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URLa ezin da hutsik egon." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Baliogabeako karpeta izena. 'Shared' izena Owncloudek erreserbatzen du" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Errorea" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Izena" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Tamaina" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "karpeta bat" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} karpeta" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "fitxategi bat" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} fitxategi" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Ezin izan da fitxategia berrizendatu" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Igo" @@ -279,37 +283,37 @@ msgstr "Ezabatutako fitxategiak" msgid "Cancel upload" msgstr "Ezeztatu igoera" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "Ez duzu hemen idazteko baimenik." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Ez dago ezer. Igo zerbait!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Deskargatu" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Ez elkarbanatu" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Igoera handiegia da" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Igotzen saiatzen ari zaren fitxategiak zerbitzari honek igotzeko onartzen duena baino handiagoak dira." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Fitxategiak eskaneatzen ari da, itxoin mezedez." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Orain eskaneatzen ari da" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 003b3ef9cca..d066b537fc2 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "%s نمی تواند حرکت کند - در حال حاضر پرونده msgid "Could not move %s" msgstr "%s نمی تواند حرکت کند " -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "قادر به تغییر نام پرونده نیست." - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "هیچ فایلی آپلود نشد.خطای ناشناس" @@ -86,7 +82,7 @@ msgstr "اشتراک‌گذاری" msgid "Delete permanently" msgstr "حذف قطعی" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "حذف" @@ -94,43 +90,43 @@ msgstr "حذف" msgid "Rename" msgstr "تغییرنام" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "در انتظار" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{نام _جدید} در حال حاضر وجود دارد." -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "جایگزین" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "پیشنهاد نام" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "لغو" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "{نام_جدید} با { نام_قدیمی} جایگزین شد." -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "بازگشت" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "انجام عمل حذف" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 پرونده آپلود شد." -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "بارگذاری فایل ها" @@ -156,69 +152,77 @@ msgstr "فضای ذخیره ی شما کاملا پر است، بیش از ای msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "فضای ذخیره ی شما تقریبا پر است ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "دانلود شما در حال آماده شدن است. در صورتیکه پرونده ها بزرگ باشند ممکن است مدتی طول بکشد." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ناتوان در بارگذاری یا فایل یک پوشه است یا 0بایت دارد" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "فضای کافی در دسترس نیست" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "بار گذاری لغو شد" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "آپلودکردن پرونده در حال پیشرفت است. در صورت خروج از صفحه آپلود لغو میگردد. " -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URL نمی تواند خالی باشد." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "نام پوشه نامعتبر است. استفاده از \" به اشتراک گذاشته شده \" متعلق به سایت Owncloud است." -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "خطا" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "نام" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "اندازه" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "تاریخ" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 پوشه" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{ شمار} پوشه ها" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 پرونده" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{ شمار } فایل ها" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "قادر به تغییر نام پرونده نیست." + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "بارگزاری" @@ -279,37 +283,37 @@ msgstr "فایل های حذف شده" msgid "Cancel upload" msgstr "متوقف کردن بار گذاری" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "شما اجازه ی نوشتن در اینجا را ندارید" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "اینجا هیچ چیز نیست." -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "دانلود" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "لغو اشتراک" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "سایز فایل برای آپلود زیاد است(م.تنظیمات در php.ini)" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "پرونده ها در حال بازرسی هستند لطفا صبر کنید" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "بازرسی کنونی" diff --git a/l10n/fi/files.po b/l10n/fi/files.po index af389b21f9a..a43906c14d2 100644 --- a/l10n/fi/files.po +++ b/l10n/fi/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+0000\n" +"Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -86,7 +82,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "" @@ -94,43 +90,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 861e5ebe9fd..8ef0a08d519 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "Kohteen %s siirto ei onnistunut - Tiedosto samalla nimellä on jo olemas msgid "Could not move %s" msgstr "Kohteen %s siirto ei onnistunut" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Tiedoston nimeäminen uudelleen ei onnistunut" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Tiedostoa ei lähetetty. Tuntematon virhe" @@ -86,7 +82,7 @@ msgstr "Jaa" msgid "Delete permanently" msgstr "Poista pysyvästi" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Poista" @@ -94,43 +90,43 @@ msgstr "Poista" msgid "Rename" msgstr "Nimeä uudelleen" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Odottaa" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} on jo olemassa" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "korvaa" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "ehdota nimeä" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "peru" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "kumoa" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "suorita poistotoiminto" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "Tallennustila on loppu, tiedostoja ei voi enää päivittää tai synkro msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Tallennustila on melkein loppu ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Lataustasi valmistellaan. Tämä saattaa kestää hetken, jos tiedostot ovat suuria kooltaan." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio." -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Tilaa ei ole riittävästi" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Lähetys peruttu." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "Verkko-osoite ei voi olla tyhjä" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Virhe" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Nimi" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Koko" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Muokattu" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 kansio" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} kansiota" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 tiedosto" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} tiedostoa" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Tiedoston nimeäminen uudelleen ei onnistunut" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Lähetä" @@ -279,37 +283,37 @@ msgstr "Poistetut tiedostot" msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "Tunnuksellasi ei ole kirjoitusoikeuksia tänne." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Täällä ei ole mitään. Lähetä tänne jotakin!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Lataa" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Peru jakaminen" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Lähetettävä tiedosto on liian suuri" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Tiedostoja tarkistetaan, odota hetki." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Tämänhetkinen tutkinta" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index f93f948ef90..bec531ce06b 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-12 02:01+0200\n" -"PO-Revision-Date: 2013-05-07 15:00+0000\n" -"Last-Translator: MathieuP \n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,10 +28,6 @@ msgstr "Impossible de déplacer %s - Un fichier possédant ce nom existe déjà" msgid "Could not move %s" msgstr "Impossible de déplacer %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Impossible de renommer le fichier" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Aucun fichier n'a été envoyé. Erreur inconnue" @@ -95,43 +91,43 @@ msgstr "Supprimer" msgid "Rename" msgstr "Renommer" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "En attente" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} existe déjà" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "remplacer" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "Suggérer un nom" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "annuler" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} a été remplacé par {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "annuler" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "effectuer l'opération de suppression" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 fichier en cours d'envoi" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "fichiers en cours d'envoi" @@ -220,6 +216,14 @@ msgstr "1 fichier" msgid "{count} files" msgstr "{count} fichiers" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Impossible de renommer le fichier" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Envoyer" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 1287443bc34..0c0309bfa6e 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-12 02:01+0200\n" -"PO-Revision-Date: 2013-05-04 09:50+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -28,10 +28,6 @@ msgstr "Non se moveu %s - Xa existe un ficheiro con ese nome." msgid "Could not move %s" msgstr "Non foi posíbel mover %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Non é posíbel renomear o ficheiro" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Non se enviou ningún ficheiro. Produciuse un erro descoñecido." @@ -95,43 +91,43 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Pendentes" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "Xa existe un {new_name}" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "substituír" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "suxerir nome" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "substituír {new_name} por {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "desfacer" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "realizar a operación de eliminación" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "Enviándose 1 ficheiro" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "ficheiros enviándose" @@ -220,6 +216,14 @@ msgstr "1 ficheiro" msgid "{count} files" msgstr "{count} ficheiros" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Non é posíbel renomear o ficheiro" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Enviar" diff --git a/l10n/he/files.po b/l10n/he/files.po index 9466616bd3b..1082f58adcb 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "לא הועלה קובץ. טעות בלתי מזוהה." @@ -86,7 +82,7 @@ msgstr "שתף" msgid "Delete permanently" msgstr "מחק לצמיתות" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "מחיקה" @@ -94,43 +90,43 @@ msgstr "מחיקה" msgid "Rename" msgstr "שינוי שם" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "ממתין" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} כבר קיים" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "החלפה" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "הצעת שם" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "ביטול" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} הוחלף ב־{old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "ביטול" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "קובץ אחד נשלח" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "לא יכול להעלות את הקובץ מכיוון שזו תקיה או שמשקל הקובץ 0 בתים" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "ההעלאה בוטלה." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "קישור אינו יכול להיות ריק." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "שגיאה" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "שם" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "גודל" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "תיקייה אחת" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} תיקיות" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "קובץ אחד" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} קבצים" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "העלאה" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "ביטול ההעלאה" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "אין כאן שום דבר. אולי ברצונך להעלות משהו?" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "הורדה" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "הסר שיתוף" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "העלאה גדולה מידי" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "הקבצים נסרקים, נא להמתין." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "הסריקה הנוכחית" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index e2c6db13a0f..9474cdb73f6 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 10:00+0200\n" -"PO-Revision-Date: 2013-04-26 08:00+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -86,7 +82,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "" @@ -94,43 +90,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index bf86e8720ad..834f399695c 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -86,7 +82,7 @@ msgstr "Podijeli" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Obriši" @@ -94,43 +90,43 @@ msgstr "Obriši" msgid "Rename" msgstr "Promjeni ime" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "U tijeku" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "zamjeni" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "predloži ime" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "odustani" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "vrati" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 datoteka se učitava" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "datoteke se učitavaju" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nemoguće poslati datoteku jer je prazna ili je direktorij" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Slanje poništeno." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Greška" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Ime" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Veličina" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Učitaj" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "Prekini upload" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Nema ničega u ovoj mapi. Pošalji nešto!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Preuzimanje" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Makni djeljenje" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Prijenos je preobiman" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke koje pokušavate prenijeti prelaze maksimalnu veličinu za prijenos datoteka na ovom poslužitelju." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Datoteke se skeniraju, molimo pričekajte." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Trenutno skeniranje" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 6b5c091cb94..e619f8ec6f9 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "%s áthelyezése nem sikerült - már létezik másik fájl ezzel a név msgid "Could not move %s" msgstr "Nem sikerült %s áthelyezése" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Nem lehet átnevezni a fájlt" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nem történt feltöltés. Ismeretlen hiba" @@ -86,7 +82,7 @@ msgstr "Megosztás" msgid "Delete permanently" msgstr "Végleges törlés" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Törlés" @@ -94,43 +90,43 @@ msgstr "Törlés" msgid "Rename" msgstr "Átnevezés" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Folyamatban" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} már létezik" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "írjuk fölül" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "legyen más neve" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "mégse" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} fájlt kicseréltük ezzel: {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "visszavonás" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "a törlés végrehajtása" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 fájl töltődik föl" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "fájl töltődik föl" @@ -156,69 +152,77 @@ msgstr "A tároló tele van, a fájlok nem frissíthetőek vagy szinkronizálhat msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "A tároló majdnem tele van ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Készül a letöltendő állomány. Ez eltarthat egy ideig, ha nagyok a fájlok." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Nincs elég szabad hely" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "A feltöltést megszakítottuk." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "Az URL nem lehet semmi." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Érvénytelen mappanév. A név használata csak a Owncloud számára lehetséges." -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Hiba" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Név" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Méret" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Módosítva" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} mappa" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 fájl" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} fájl" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Nem lehet átnevezni a fájlt" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Feltöltés" @@ -279,37 +283,37 @@ msgstr "Törölt fájlok" msgid "Cancel upload" msgstr "A feltöltés megszakítása" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "Itt nincs írásjoga." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Itt nincs semmi. Töltsön fel valamit!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Letöltés" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "A megosztás visszavonása" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "A feltöltés túl nagy" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "A fájllista ellenőrzése zajlik, kis türelmet!" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Ellenőrzés alatt" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index f372a97b7a0..52f66f4a8d3 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+0000\n" +"Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -86,7 +82,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Ջնջել" @@ -94,43 +90,43 @@ msgstr "Ջնջել" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Բեռնել" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 4e14c66dfd8..94c9b971fa6 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-04 01:58+0200\n" -"PO-Revision-Date: 2013-05-03 13:10+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -94,43 +90,43 @@ msgstr "Deler" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -219,6 +215,14 @@ msgstr "" msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Incargar" diff --git a/l10n/id/files.po b/l10n/id/files.po index b7dcb610f8b..12d75c1e307 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:31+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "Tidak dapat memindahkan %s - Berkas dengan nama ini sudah ada" msgid "Could not move %s" msgstr "Tidak dapat memindahkan %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Tidak dapat mengubah nama berkas" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Tidak ada berkas yang diunggah. Galat tidak dikenal." @@ -86,7 +82,7 @@ msgstr "Bagikan" msgid "Delete permanently" msgstr "Hapus secara permanen" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Hapus" @@ -94,43 +90,43 @@ msgstr "Hapus" msgid "Rename" msgstr "Ubah nama" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Menunggu" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} sudah ada" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "ganti" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "sarankan nama" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "batalkan" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "mengganti {new_name} dengan {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "urungkan" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "Lakukan operasi penghapusan" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 berkas diunggah" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "berkas diunggah" @@ -156,69 +152,77 @@ msgstr "Ruang penyimpanan Anda penuh, berkas tidak dapat diperbarui atau disinkr msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ruang penyimpanan hampir penuh ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Unduhan Anda sedang disiapkan. Prosesnya dapat berlangsung agak lama jika ukuran berkasnya besar." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Gagal mengunggah berkas Anda karena berupa direktori atau mempunyai ukuran 0 byte" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Ruang penyimpanan tidak mencukupi" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Pengunggahan dibatalkan." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Berkas sedang diunggah. Meninggalkan halaman ini akan membatalkan proses." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URL tidak boleh kosong" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nama folder salah. Nama 'Shared' telah digunakan oleh Owncloud." -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Galat" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Nama" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Ukuran" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 folder" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} folder" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 berkas" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} berkas" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Tidak dapat mengubah nama berkas" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Unggah" @@ -279,37 +283,37 @@ msgstr "Berkas yang dihapus" msgid "Cancel upload" msgstr "Batal pengunggahan" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "Anda tidak memiliki izin menulis di sini." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Tidak ada apa-apa di sini. Unggah sesuatu!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Unduh" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Batalkan berbagi" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Yang diunggah terlalu besar" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Berkas yang dicoba untuk diunggah melebihi ukuran maksimum pengunggahan berkas di server ini." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Berkas sedang dipindai, silakan tunggu." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Yang sedang dipindai" diff --git a/l10n/is/files.po b/l10n/is/files.po index c9604990680..62c5f2deed6 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:31+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "Gat ekki fært %s - Skrá með þessu nafni er þegar til" msgid "Could not move %s" msgstr "Gat ekki fært %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Gat ekki endurskýrt skrá" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Engin skrá var send inn. Óþekkt villa." @@ -86,7 +82,7 @@ msgstr "Deila" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Eyða" @@ -94,43 +90,43 @@ msgstr "Eyða" msgid "Rename" msgstr "Endurskýra" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Bíður" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} er þegar til" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "yfirskrifa" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "stinga upp á nafni" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "hætta við" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "yfirskrifaði {new_name} með {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "afturkalla" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 skrá innsend" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Innsending á skrá mistókst, hugsanlega sendir þú möppu eða skráin er 0 bæti." -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Ekki nægt pláss tiltækt" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Hætt við innsendingu." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "Vefslóð má ekki vera tóm." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Óleyfilegt nafn á möppu. Nafnið 'Shared' er frátekið fyrir Owncloud" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Villa" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Nafn" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Stærð" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Breytt" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} möppur" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 skrá" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} skrár" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Gat ekki endurskýrt skrá" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Senda inn" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "Hætta við innsendingu" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Ekkert hér. Settu eitthvað inn!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Niðurhal" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Hætta deilingu" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Innsend skrá er of stór" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Skrárnar sem þú ert að senda inn eru stærri en hámarks innsendingarstærð á þessum netþjóni." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Verið er að skima skrár, vinsamlegast hinkraðu." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Er að skima" diff --git a/l10n/it/files.po b/l10n/it/files.po index f5ae1c2dbea..59ff6298b47 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "Impossibile spostare %s - un file con questo nome esiste già" msgid "Could not move %s" msgstr "Impossibile spostare %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Impossibile rinominare il file" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nessun file è stato inviato. Errore sconosciuto" @@ -86,7 +82,7 @@ msgstr "Condividi" msgid "Delete permanently" msgstr "Elimina definitivamente" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Elimina" @@ -94,43 +90,43 @@ msgstr "Elimina" msgid "Rename" msgstr "Rinomina" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "In corso" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} esiste già" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "sostituisci" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "suggerisci nome" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "annulla" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "sostituito {new_name} con {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "annulla" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "esegui l'operazione di eliminazione" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 file in fase di caricamento" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "caricamento file" @@ -156,69 +152,77 @@ msgstr "Lo spazio di archiviazione è pieno, i file non possono essere più aggi msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Lo spazio di archiviazione è quasi pieno ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Il tuo scaricamento è in fase di preparazione. Ciò potrebbe richiedere del tempo se i file sono grandi." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossibile caricare il file poiché è una cartella o ha una dimensione di 0 byte" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Spazio disponibile insufficiente" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Invio annullato" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "L'URL non può essere vuoto." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome della cartella non valido. L'uso di 'Shared' è riservato da ownCloud" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Errore" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Nome" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Dimensione" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Modificato" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 cartella" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} cartelle" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 file" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} file" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Impossibile rinominare il file" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Carica" @@ -279,37 +283,37 @@ msgstr "File eliminati" msgid "Cancel upload" msgstr "Annulla invio" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "Qui non hai i permessi di scrittura." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Non c'è niente qui. Carica qualcosa!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Scarica" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Rimuovi condivisione" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Caricamento troppo grande" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "I file che stai provando a caricare superano la dimensione massima consentita su questo server." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Scansione dei file in corso, attendi" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Scansione corrente" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index ef82ef3ed32..bf5947b4430 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "%s を移動できませんでした ― この名前のファイルは msgid "Could not move %s" msgstr "%s を移動できませんでした" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "ファイル名の変更ができません" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ファイルは何もアップロードされていません。不明なエラー" @@ -86,7 +82,7 @@ msgstr "共有" msgid "Delete permanently" msgstr "完全に削除する" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "削除" @@ -94,43 +90,43 @@ msgstr "削除" msgid "Rename" msgstr "名前の変更" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "中断" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} はすでに存在しています" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "置き換え" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "推奨名称" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "キャンセル" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} を {new_name} に置換" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "元に戻す" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "削除を実行" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "ファイルを1つアップロード中" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "ファイルをアップロード中" @@ -156,69 +152,77 @@ msgstr "あなたのストレージは一杯です。ファイルの更新と同 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "あなたのストレージはほぼ一杯です({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "ダウンロードの準備中です。ファイルサイズが大きい場合は少し時間がかかるかもしれません。" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ディレクトリもしくは0バイトのファイルはアップロードできません" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "利用可能なスペースが十分にありません" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "アップロードはキャンセルされました。" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URLは空にできません。" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "無効なフォルダ名です。'Shared' の利用は ownCloud が予約済みです。" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "エラー" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "名前" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "サイズ" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "変更" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 フォルダ" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} フォルダ" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 ファイル" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} ファイル" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "ファイル名の変更ができません" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "アップロード" @@ -279,37 +283,37 @@ msgstr "削除ファイル" msgid "Cancel upload" msgstr "アップロードをキャンセル" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "あなたには書き込み権限がありません。" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "ここには何もありません。何かアップロードしてください。" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "ダウンロード" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "共有解除" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "アップロードには大きすぎます。" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "アップロードしようとしているファイルは、サーバで規定された最大サイズを超えています。" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "ファイルをスキャンしています、しばらくお待ちください。" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "スキャン中" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 25301e504fb..b139973c0ca 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -86,7 +82,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "" @@ -94,43 +90,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "გადმოწერა" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index b20fd4c236f..4977e0d493f 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 09:02+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,10 +27,6 @@ msgstr "%s –ის გადატანა ვერ მოხერხდა msgid "Could not move %s" msgstr "%s –ის გადატანა ვერ მოხერხდა" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "ფაილის სახელის გადარქმევა ვერ მოხერხდა" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ფაილი არ აიტვირთა. უცნობი შეცდომა" @@ -86,7 +82,7 @@ msgstr "გაზიარება" msgid "Delete permanently" msgstr "სრულად წაშლა" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "წაშლა" @@ -94,43 +90,43 @@ msgstr "წაშლა" msgid "Rename" msgstr "გადარქმევა" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "მოცდის რეჟიმში" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} უკვე არსებობს" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "შეცვლა" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "სახელის შემოთავაზება" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "უარყოფა" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} შეცვლილია {old_name}–ით" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "დაბრუნება" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "მიმდინარეობს წაშლის ოპერაცია" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 ფაილის ატვირთვა" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "ფაილები იტვირთება" @@ -156,69 +152,77 @@ msgstr "თქვენი საცავი გადაივსო. ფა msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "თქვენი საცავი თითქმის გადაივსო ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "გადმოწერის მოთხოვნა მუშავდება. ის მოითხოვს გარკვეულ დროს რაგდან ფაილები არის დიდი ზომის." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "თქვენი ფაილის ატვირთვა ვერ მოხერხდა. ის არის საქაღალდე და შეიცავს 0 ბაიტს" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "საკმარისი ადგილი არ არის" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "ატვირთვა შეჩერებულ იქნა." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URL არ შეიძლება იყოს ცარიელი." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "დაუშვებელი ფოლდერის სახელი. 'Shared'–ის გამოყენება რეზერვირებულია Owncloud–ის მიერ" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "შეცდომა" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "სახელი" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "ზომა" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "შეცვლილია" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 საქაღალდე" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} საქაღალდე" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 ფაილი" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} ფაილი" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "ფაილის სახელის გადარქმევა ვერ მოხერხდა" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "ატვირთვა" @@ -279,37 +283,37 @@ msgstr "წაშლილი ფაილები" msgid "Cancel upload" msgstr "ატვირთვის გაუქმება" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "თქვენ არ გაქვთ ჩაწერის უფლება აქ." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "აქ არაფერი არ არის. ატვირთე რამე!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "გაუზიარებადი" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "ასატვირთი ფაილი ძალიან დიდია" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ფაილის ზომა რომლის ატვირთვასაც თქვენ აპირებთ, აჭარბებს სერვერზე დაშვებულ მაქსიმუმს." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "მიმდინარეობს ფაილების სკანირება, გთხოვთ დაელოდოთ." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "მიმდინარე სკანირება" diff --git a/l10n/kn/files.po b/l10n/kn/files.po index 7e61c23fc10..6dc22644115 100644 --- a/l10n/kn/files.po +++ b/l10n/kn/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 10:00+0200\n" -"PO-Revision-Date: 2013-04-26 08:00+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -86,7 +82,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "" @@ -94,43 +90,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 6a764822f6c..6ca79779ec3 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-12 02:01+0200\n" -"PO-Revision-Date: 2013-05-08 15:50+0000\n" -"Last-Translator: Sungjin Gang \n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,10 +29,6 @@ msgstr "%s 항목을 이동시키지 못하였음 - 파일 이름이 이미 존 msgid "Could not move %s" msgstr "%s 항목을 이딩시키지 못하였음" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "파일 이름바꾸기 할 수 없음" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다" @@ -96,43 +92,43 @@ msgstr "삭제" msgid "Rename" msgstr "이름 바꾸기" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "대기 중" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name}이(가) 이미 존재함" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "바꾸기" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "이름 제안" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "취소" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "{old_name}이(가) {new_name}(으)로 대체됨" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "되돌리기" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "삭제 작업중" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "파일 1개 업로드 중" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "파일 업로드중" @@ -221,6 +217,14 @@ msgstr "파일 1개" msgid "{count} files" msgstr "파일 {count}개" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "파일 이름바꾸기 할 수 없음" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "업로드" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 0eab1067b2f..faec0ff8edb 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -86,7 +82,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "" @@ -94,43 +90,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "هه‌ڵه" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "ناو" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "بارکردن" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "داگرتن" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 9c56c3d4da4..b1e060dc20e 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:31+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -86,7 +82,7 @@ msgstr "Deelen" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Läschen" @@ -94,43 +90,43 @@ msgstr "Läschen" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "ofbriechen" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "réckgängeg man" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kann deng Datei net eroplueden well et en Dossier ass oder 0 byte grouss ass." -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Upload ofgebrach." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Fehler" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Numm" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Gréisst" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Geännert" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Eroplueden" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "Upload ofbriechen" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Hei ass näischt. Lued eppes rop!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Download" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Net méi deelen" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Upload ze grouss" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Déi Dateien déi Dir probéiert erop ze lueden sinn méi grouss wei déi Maximal Gréisst déi op dësem Server erlaabt ass." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Fichieren gi gescannt, war weg." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Momentane Scan" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 2178a80a06b..4c54e269f65 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -86,7 +82,7 @@ msgstr "Dalintis" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Ištrinti" @@ -94,43 +90,43 @@ msgstr "Ištrinti" msgid "Rename" msgstr "Pervadinti" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Laukiantis" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} jau egzistuoja" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "pakeisti" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "pasiūlyti pavadinimą" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "atšaukti" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "pakeiskite {new_name} į {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "anuliuoti" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "įkeliamas 1 failas" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Neįmanoma įkelti failo - jo dydis gali būti 0 bitų arba tai katalogas" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Įkėlimas atšauktas." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutrūks." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Klaida" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Dydis" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Pakeista" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 aplankalas" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} aplankalai" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 failas" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} failai" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Įkelti" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "Atšaukti siuntimą" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Čia tuščia. Įkelkite ką nors!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Atsisiųsti" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Nebesidalinti" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Įkėlimui failas per didelis" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Bandomų įkelti failų dydis viršija maksimalų, kuris leidžiamas šiame serveryje" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Skenuojami failai, prašome palaukti." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Šiuo metu skenuojama" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index f4d2f07452c..5077cd29172 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "Nevarēja pārvietot %s — jau eksistē datne ar tādu nosaukumu" msgid "Could not move %s" msgstr "Nevarēja pārvietot %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Nevarēja pārsaukt datni" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Netika augšupielādēta neviena datne. Nezināma kļūda" @@ -86,7 +82,7 @@ msgstr "Dalīties" msgid "Delete permanently" msgstr "Dzēst pavisam" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Dzēst" @@ -94,43 +90,43 @@ msgstr "Dzēst" msgid "Rename" msgstr "Pārsaukt" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Gaida savu kārtu" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} jau eksistē" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "aizvietot" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "ieteiktais nosaukums" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "atcelt" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "aizvietoja {new_name} ar {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "atsaukt" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "veikt dzēšanas darbību" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "Augšupielādē 1 datni" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "Jūsu krātuve ir pilna, datnes vairs nevar augšupielādēt vai sinhron msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Jūsu krātuve ir gandrīz pilna ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Tiek sagatavota lejupielāde. Tas var aizņemt kādu laiciņu, ja datnes ir lielas." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nevar augšupielādēt jūsu datni, jo tā ir direktorija vai arī tā ir 0 baitu liela" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Nepietiek brīvas vietas" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Augšupielāde ir atcelta." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URL nevar būt tukšs." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nederīgs mapes nosaukums. “Koplietots” izmantojums ir rezervēts ownCloud servisam." -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Kļūda" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Nosaukums" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Izmērs" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Mainīts" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 mape" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} mapes" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 datne" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} datnes" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Nevarēja pārsaukt datni" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Augšupielādēt" @@ -279,37 +283,37 @@ msgstr "Dzēstās datnes" msgid "Cancel upload" msgstr "Atcelt augšupielādi" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "Jums nav tiesību šeit rakstīt." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Te vēl nekas nav. Rīkojies, sāc augšupielādēt!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Lejupielādēt" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Pārtraukt dalīšanos" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Datne ir par lielu, lai to augšupielādētu" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Augšupielādējamās datnes pārsniedz servera pieļaujamo datņu augšupielādes apjomu" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Datnes šobrīd tiek caurskatītas, lūdzu, uzgaidiet." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Šobrīd tiek caurskatīts" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index ee5a7fa3ff5..15433ffccd4 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ниту еден фајл не се вчита. Непозната грешка" @@ -86,7 +82,7 @@ msgstr "Сподели" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Избриши" @@ -94,43 +90,43 @@ msgstr "Избриши" msgid "Rename" msgstr "Преименувај" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Чека" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} веќе постои" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "замени" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "предложи име" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "откажи" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "заменета {new_name} со {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "врати" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 датотека се подига" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не може да се преземе вашата датотека бидејќи фолдерот во кој се наоѓа фајлот има големина од 0 бајти" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Преземањето е прекинато." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "Адресата неможе да биде празна." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Грешка" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Име" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Големина" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Променето" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 папка" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} папки" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 датотека" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} датотеки" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Подигни" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "Откажи прикачување" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Тука нема ништо. Снимете нешто!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Преземи" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Не споделувај" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Фајлот кој се вчитува е преголем" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Датотеките кои се обидувате да ги подигнете ја надминуваат максималната големина за подигнување датотеки на овој сервер." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Се скенираат датотеки, ве молам почекајте." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Моментално скенирам" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index ffc6777c0f3..df4e1fb7804 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Tiada fail dimuatnaik. Ralat tidak diketahui." @@ -86,7 +82,7 @@ msgstr "Kongsi" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Padam" @@ -94,43 +90,43 @@ msgstr "Padam" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Dalam proses" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "ganti" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "Batal" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Tidak boleh memuatnaik fail anda kerana mungkin ianya direktori atau saiz fail 0 bytes" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Muatnaik dibatalkan." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Ralat" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Nama" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Saiz" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Muat naik" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "Batal muat naik" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Tiada apa-apa di sini. Muat naik sesuatu!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Muat turun" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Muatnaik terlalu besar" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fail yang cuba dimuat naik melebihi saiz maksimum fail upload server" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Fail sedang diimbas, harap bersabar." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Imbasan semasa" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index c524b59a4cc..fedecb2ad5a 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -86,7 +82,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "" @@ -94,43 +90,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "ဒေါင်းလုတ်" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index a7f905b6518..ea77c752b34 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer ble lastet opp. Ukjent feil." @@ -86,7 +82,7 @@ msgstr "Del" msgid "Delete permanently" msgstr "Slett permanent" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Slett" @@ -94,43 +90,43 @@ msgstr "Slett" msgid "Rename" msgstr "Omdøp" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Ventende" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} finnes allerede" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "erstatt" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "foreslå navn" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "erstatt {new_name} med {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "angre" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 fil lastes opp" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "filer lastes opp" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Opplasting avbrutt." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URL-en kan ikke være tom." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Feil" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Navn" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Størrelse" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Endret" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 fil" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} filer" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Last opp" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last opp noe!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Last ned" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Avslutt deling" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Filen er for stor" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filene du prøver å laste opp er for store for å laste opp til denne serveren." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Skanner etter filer, vennligst vent." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Pågående skanning" diff --git a/l10n/ne/files.po b/l10n/ne/files.po index 1bd24b1346f..a20804fbfeb 100644 --- a/l10n/ne/files.po +++ b/l10n/ne/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 10:00+0200\n" -"PO-Revision-Date: 2013-04-26 08:00+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -86,7 +82,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "" @@ -94,43 +90,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index f1d984cf414..1100a0517fb 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "Kon %s niet verplaatsen - Er bestaat al een bestand met deze naam" msgid "Could not move %s" msgstr "Kon %s niet verplaatsen" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Kan bestand niet hernoemen" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Er was geen bestand geladen. Onbekende fout" @@ -86,7 +82,7 @@ msgstr "Delen" msgid "Delete permanently" msgstr "Verwijder definitief" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Verwijder" @@ -94,43 +90,43 @@ msgstr "Verwijder" msgid "Rename" msgstr "Hernoem" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "In behandeling" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} bestaat al" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "vervang" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "Stel een naam voor" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "annuleren" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "verving {new_name} met {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "ongedaan maken" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "uitvoeren verwijderactie" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 bestand wordt ge-upload" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "bestanden aan het uploaden" @@ -156,69 +152,77 @@ msgstr "Uw opslagruimte zit vol, Bestanden kunnen niet meer worden ge-upload of msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Uw opslagruimte zit bijna vol ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Uw download wordt voorbereid. Dit kan enige tijd duren bij grote bestanden." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Het lukt niet om uw bestand te uploaded, omdat het een folder of 0 bytes is" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Niet genoeg ruimte beschikbaar" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URL kan niet leeg zijn." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ongeldige mapnaam. Gebruik van'Gedeeld' is voorbehouden aan Owncloud" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Fout" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Naam" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Grootte" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Aangepast" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 map" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} mappen" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 bestand" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} bestanden" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Kan bestand niet hernoemen" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Uploaden" @@ -279,37 +283,37 @@ msgstr "Verwijderde bestanden" msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "U hebt hier geen schrijfpermissies." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Er bevindt zich hier niets. Upload een bestand!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Downloaden" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Stop met delen" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Upload is te groot" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Bestanden worden gescand, even wachten." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Er wordt gescand" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 7f244a9be09..e817942480c 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-12 02:01+0200\n" -"PO-Revision-Date: 2013-05-07 20:20+0000\n" -"Last-Translator: unhammer \n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,10 +28,6 @@ msgstr "Klarte ikkje å flytta %s – det finst allereie ei fil med dette namnet msgid "Could not move %s" msgstr "Klarte ikkje å flytta %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Klarte ikkje å endra filnamnet" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer lasta opp. Ukjend feil" @@ -95,43 +91,43 @@ msgstr "Slett" msgid "Rename" msgstr "Endra namn" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Under vegs" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} finst allereie" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "byt ut" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "føreslå namn" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "bytte ut {new_name} med {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "angre" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "utfør sletting" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 fil lastar opp" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "filer lastar opp" @@ -220,6 +216,14 @@ msgstr "1 fil" msgid "{count} files" msgstr "{count} filer" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Klarte ikkje å endra filnamnet" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Last opp" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 7bff1f0e1bc..3ce89e5ae39 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -86,7 +82,7 @@ msgstr "Parteja" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Escafa" @@ -94,43 +90,43 @@ msgstr "Escafa" msgid "Rename" msgstr "Torna nomenar" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Al esperar" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "remplaça" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "nom prepausat" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "anulla" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "defar" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 fichièr al amontcargar" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "fichièrs al amontcargar" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossible d'amontcargar lo teu fichièr qu'es un repertòri o que ten pas que 0 octet." -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Amontcargar anullat." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo cargament. " -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Error" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Nom" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Talha" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Modificat" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Amontcarga" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr " Anulla l'amontcargar" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Pas res dedins. Amontcarga qualquaren" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Avalcarga" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Pas partejador" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Amontcargament tròp gròs" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los fichièrs que sias a amontcargar son tròp pesucs per la talha maxi pel servidor." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Los fiichièrs son a èsser explorats, " -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Exploracion en cors" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index bd3470063b5..3316033db84 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "Nie można było przenieść %s - Plik o takiej nazwie już istnieje" msgid "Could not move %s" msgstr "Nie można było przenieść %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Nie można zmienić nazwy pliku" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Żaden plik nie został załadowany. Nieznany błąd" @@ -86,7 +82,7 @@ msgstr "Udostępnij" msgid "Delete permanently" msgstr "Trwale usuń" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Usuń" @@ -94,43 +90,43 @@ msgstr "Usuń" msgid "Rename" msgstr "Zmień nazwę" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Oczekujące" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} już istnieje" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "zastąp" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "zasugeruj nazwę" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "anuluj" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "zastąpiono {new_name} przez {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "cofnij" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "wykonaj operację usunięcia" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 plik wczytywany" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "pliki wczytane" @@ -156,69 +152,77 @@ msgstr "Magazyn jest pełny. Pliki nie mogą zostać zaktualizowane lub zsynchro msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Twój magazyn jest prawie pełny ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Pobieranie jest przygotowywane. Może to zająć trochę czasu jeśli pliki są duże." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nie można wczytać pliku, ponieważ jest on katalogiem lub ma 0 bajtów" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Za mało miejsca" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Wysyłanie pliku jest w toku. Jeśli opuścisz tę stronę, wysyłanie zostanie przerwane." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URL nie może być pusty." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nieprawidłowa nazwa folderu. Korzystanie z nazwy „Shared” jest zarezerwowane dla ownCloud" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Błąd" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Nazwa" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Rozmiar" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Modyfikacja" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 folder" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "Ilość folderów: {count}" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 plik" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "Ilość plików: {count}" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Nie można zmienić nazwy pliku" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Wyślij" @@ -279,37 +283,37 @@ msgstr "Pliki usunięte" msgid "Cancel upload" msgstr "Anuluj wysyłanie" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "Nie masz uprawnień do zapisu w tym miejscu." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Pusto. Wyślij coś!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Pobierz" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Zatrzymaj współdzielenie" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Ładowany plik jest za duży" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Pliki, które próbujesz przesłać, przekraczają maksymalną dopuszczalną wielkość." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Skanowanie plików, proszę czekać." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Aktualnie skanowane" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index 4cf5e0b5477..8e524496642 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+0000\n" +"Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -86,7 +82,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "" @@ -94,43 +90,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 2e9f259cd2b..10892d43027 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "Impossível mover %s - Um arquivo com este nome já existe" msgid "Could not move %s" msgstr "Impossível mover %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Impossível renomear arquivo" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nenhum arquivo foi enviado. Erro desconhecido" @@ -86,7 +82,7 @@ msgstr "Compartilhar" msgid "Delete permanently" msgstr "Excluir permanentemente" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Excluir" @@ -94,43 +90,43 @@ msgstr "Excluir" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} já existe" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "substituir" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "sugerir nome" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "Substituído {old_name} por {new_name} " -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "desfazer" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "realizar operação de exclusão" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "enviando 1 arquivo" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "enviando arquivos" @@ -156,69 +152,77 @@ msgstr "Seu armazenamento está cheio, arquivos não podem mais ser atualizados msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Seu armazenamento está quase cheio ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Seu download está sendo preparado. Isto pode levar algum tempo se os arquivos forem grandes." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossível enviar seus arquivo por ele ser um diretório ou ter 0 bytes." -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Espaço de armazenamento insuficiente" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Upload em andamento. Sair da página agora resultará no cancelamento do envio." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URL não pode ficar em branco" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de pasta inválido. O uso de 'Shared' é reservado para o Owncloud" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Erro" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Nome" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Tamanho" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Modificado" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 arquivo" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} arquivos" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Impossível renomear arquivo" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Upload" @@ -279,37 +283,37 @@ msgstr "Arquivos apagados" msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "Você não possui permissão de escrita aqui." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Nada aqui.Carrege alguma coisa!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Baixar" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Descompartilhar" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Upload muito grande" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os arquivos que você está tentando carregar excedeu o tamanho máximo para arquivos no servidor." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Arquivos sendo escaneados, por favor aguarde." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Scanning atual" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 664e95876ae..dd8b0a58869 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "Não foi possível mover o ficheiro %s - Já existe um ficheiro com esse msgid "Could not move %s" msgstr "Não foi possível move o ficheiro %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Não foi possível renomear o ficheiro" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" @@ -86,7 +82,7 @@ msgstr "Partilhar" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Eliminar" @@ -94,43 +90,43 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "O nome {new_name} já existe" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "substituir" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "sugira um nome" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "substituido {new_name} por {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "desfazer" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "Executar a tarefa de apagar" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "A enviar 1 ficheiro" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "A enviar os ficheiros" @@ -156,69 +152,77 @@ msgstr "O seu armazenamento está cheio, os ficheiros não podem ser sincronizad msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "O seu espaço de armazenamento está quase cheiro ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "O seu download está a ser preparado. Este processo pode demorar algum tempo se os ficheiros forem grandes." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Não é possível fazer o envio do ficheiro devido a ser uma pasta ou ter 0 bytes" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Espaço em disco insuficiente!" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "O URL não pode estar vazio." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de pasta inválido. O Uso de 'shared' é reservado para o ownCloud" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Erro" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Nome" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Tamanho" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Modificado" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} ficheiros" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Não foi possível renomear o ficheiro" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Carregar" @@ -279,37 +283,37 @@ msgstr "Ficheiros eliminados" msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "Não tem permissões de escrita aqui." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Vazio. Envie alguma coisa!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Transferir" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Deixar de partilhar" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Upload muito grande" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiro que está a tentar enviar excedem o tamanho máximo de envio neste servidor." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Os ficheiros estão a ser analisados, por favor aguarde." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 5b878d86c2b..c9651266b3f 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-28 01:57+0200\n" -"PO-Revision-Date: 2013-04-27 13:00+0000\n" -"Last-Translator: ripkid666 \n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,10 +28,6 @@ msgstr "Nu se poate de mutat %s - Fișier cu acest nume deja există" msgid "Could not move %s" msgstr "Nu s-a putut muta %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Nu s-a putut redenumi fișierul" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nici un fișier nu a fost încărcat. Eroare necunoscută" @@ -87,7 +83,7 @@ msgstr "Partajează" msgid "Delete permanently" msgstr "Stergere permanenta" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Șterge" @@ -95,43 +91,43 @@ msgstr "Șterge" msgid "Rename" msgstr "Redenumire" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "În așteptare" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} deja exista" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "înlocuire" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "sugerează nume" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "anulare" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} inlocuit cu {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "Anulează ultima acțiune" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "efectueaza operatiunea de stergere" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "un fișier se încarcă" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "fișiere se încarcă" @@ -157,69 +153,77 @@ msgstr "Spatiul de stocare este plin, nu mai puteti incarca s-au sincroniza alte msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Spatiul de stocare este aproape plin ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Se pregătește descărcarea. Aceasta poate să dureze ceva timp dacă fișierele sunt mari." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nu s-a putut încărca fișierul tău deoarece pare să fie un director sau are 0 bytes." -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Nu este suficient spațiu disponibil" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Încărcare anulată." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "Adresa URL nu poate fi goală." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Invalid folder name. Usage of 'Shared' is reserved by Ownclou" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Eroare" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Nume" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Dimensiune" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Modificat" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 folder" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} foldare" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 fisier" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} fisiere" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Nu s-a putut redenumi fișierul" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Încărcare" @@ -280,37 +284,37 @@ msgstr "Sterge fisierele" msgid "Cancel upload" msgstr "Anulează încărcarea" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "Nu ai permisiunea de a sterge fisiere aici." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Nimic aici. Încarcă ceva!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Descarcă" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Anulare partajare" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Fișierul încărcat este prea mare" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fișierul care l-ai încărcat a depășită limita maximă admisă la încărcare pe acest server." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Fișierele sunt scanate, te rog așteptă." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "În curs de scanare" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 0493878feb1..05c45719904 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "Невозможно переместить %s - файл с таким msgid "Could not move %s" msgstr "Невозможно переместить %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Невозможно переименовать файл" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Файл не был загружен. Неизвестная ошибка" @@ -86,7 +82,7 @@ msgstr "Открыть доступ" msgid "Delete permanently" msgstr "Удалено навсегда" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Удалить" @@ -94,43 +90,43 @@ msgstr "Удалить" msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Ожидание" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} уже существует" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "заменить" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "предложить название" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "отмена" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "заменено {new_name} на {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "отмена" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "выполняется операция удаления" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "загружается 1 файл" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "файлы загружаются" @@ -156,69 +152,77 @@ msgstr "Ваше дисковое пространство полностью з msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ваше хранилище почти заполнено ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Загрузка началась. Это может потребовать много времени, если файл большого размера." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Файл не был загружен: его размер 0 байт либо это не файл, а директория." -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Недостаточно свободного места" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Загрузка отменена." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "Ссылка не может быть пустой." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Неправильное имя каталога. Имя 'Shared' зарезервировано." -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Ошибка" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Имя" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Размер" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Изменён" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 папка" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 файл" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} файлов" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Невозможно переименовать файл" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Загрузка" @@ -279,37 +283,37 @@ msgstr "Удалённые файлы" msgid "Cancel upload" msgstr "Отмена загрузки" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "У вас нет разрешений на запись здесь." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Здесь ничего нет. Загрузите что-нибудь!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Скачать" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Закрыть общий доступ" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Файл слишком велик" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файлы, которые Вы пытаетесь загрузить, превышают лимит для файлов на этом сервере." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Подождите, файлы сканируются." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Текущее сканирование" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index eb144d24e47..5b8f542999b 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්" @@ -86,7 +82,7 @@ msgstr "බෙදා හදා ගන්න" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "මකා දමන්න" @@ -94,43 +90,43 @@ msgstr "මකා දමන්න" msgid "Rename" msgstr "නැවත නම් කරන්න" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "ප්‍රතිස්ථාපනය කරන්න" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "නමක් යෝජනා කරන්න" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "අත් හරින්න" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "නිෂ්ප්‍රභ කරන්න" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 ගොනුවක් උඩගත කෙරේ" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "උඩුගත කිරීම අත් හරින්න ලදී" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "යොමුව හිස් විය නොහැක" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "දෝෂයක්" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "නම" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "ප්‍රමාණය" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "වෙනස් කළ" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 ෆොල්ඩරයක්" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 ගොනුවක්" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "උඩුගත කරන්න" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "උඩුගත කිරීම අත් හරින්න" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "මෙහි කිසිවක් නොමැත. යමක් උඩුගත කරන්න" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "බාන්න" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "නොබෙදු" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "උඩුගත කිරීම විශාල වැඩිය" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ඔබ උඩුගත කිරීමට තැත් කරන ගොනු මෙම සේවාදායකයා උඩුගත කිරීමට ඉඩදී ඇති උපරිම ගොනු විශාලත්වයට වඩා වැඩිය" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "ගොනු පරික්ෂා කෙරේ. මඳක් රැඳී සිටින්න" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "වර්තමාන පරික්ෂාව" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index b8788c7a3b8..29c0e202761 100644 --- a/l10n/sk/files.po +++ b/l10n/sk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 10:00+0200\n" -"PO-Revision-Date: 2013-04-26 08:00+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -86,7 +82,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "" @@ -94,43 +90,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index f482515f73c..14299ed3914 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "Nie je možné presunúť %s - súbor s týmto menom už existuje" msgid "Could not move %s" msgstr "Nie je možné presunúť %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Nemožno premenovať súbor" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Žiaden súbor nebol odoslaný. Neznáma chyba" @@ -86,7 +82,7 @@ msgstr "Zdieľať" msgid "Delete permanently" msgstr "Zmazať trvalo" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Zmazať" @@ -94,43 +90,43 @@ msgstr "Zmazať" msgid "Rename" msgstr "Premenovať" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Prebieha" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} už existuje" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "nahradiť" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "pomôcť s menom" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "zrušiť" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "prepísaný {new_name} súborom {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "vrátiť" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "vykonať zmazanie" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 súbor sa posiela " -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "nahrávanie súborov" @@ -156,69 +152,77 @@ msgstr "Vaše úložisko je plné. Súbory nemožno aktualizovať ani synchroniz msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Vaše úložisko je takmer plné ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Vaše sťahovanie sa pripravuje. Ak sú sťahované súbory veľké, môže to chvíľu trvať." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nedá sa odoslať Váš súbor, pretože je to priečinok, alebo je jeho veľkosť 0 bajtov" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Nie je k dispozícii dostatok miesta" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Odosielanie zrušené" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Opustenie stránky zruší práve prebiehajúce odosielanie súboru." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URL nemôže byť prázdne" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Neplatné meno priečinka. Používanie mena 'Shared' je vyhradené len pre Owncloud" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Chyba" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Názov" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Veľkosť" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Upravené" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 priečinok" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} priečinkov" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 súbor" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} súborov" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Nemožno premenovať súbor" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Odoslať" @@ -279,37 +283,37 @@ msgstr "Zmazané súbory" msgid "Cancel upload" msgstr "Zrušiť odosielanie" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "Nemáte oprávnenie na zápis." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Žiadny súbor. Nahrajte niečo!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Sťahovanie" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Zrušiť zdieľanie" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Nahrávanie je príliš veľké" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Súbory, ktoré sa snažíte nahrať, presahujú maximálnu veľkosť pre nahratie súborov na tento server." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Čakajte, súbory sú prehľadávané." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Práve prezerané" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 3cd5da7a411..dd91fd8974e 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "Ni mogoče premakniti %s - datoteka s tem imenom že obstaja" msgid "Could not move %s" msgstr "Ni mogoče premakniti %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Ni mogoče preimenovati datoteke" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ni poslane datoteke. Neznana napaka." @@ -86,7 +82,7 @@ msgstr "Souporaba" msgid "Delete permanently" msgstr "Izbriši dokončno" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Izbriši" @@ -94,43 +90,43 @@ msgstr "Izbriši" msgid "Rename" msgstr "Preimenuj" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "V čakanju ..." -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} že obstaja" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "zamenjaj" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "predlagaj ime" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "prekliči" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "preimenovano ime {new_name} z imenom {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "razveljavi" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "izvedi opravilo brisanja" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "Pošiljanje 1 datoteke" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "poteka pošiljanje datotek" @@ -156,69 +152,77 @@ msgstr "Shramba je povsem napolnjena. Datotek ni več mogoče posodabljati in us msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Mesto za shranjevanje je skoraj polno ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Postopek priprave datoteke za prejem je lahko dolgotrajen, če je datoteka zelo velika." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Pošiljanja ni mogoče izvesti, saj gre za mapo oziroma datoteko velikosti 0 bajtov." -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Na voljo ni dovolj prostora." -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Pošiljanje je preklicano." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "Naslov URL ne sme biti prazna vrednost." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Neveljavno ime mape. Uporaba oznake \"Souporaba\" je zadržan za sistem ownCloud." -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Napaka" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Ime" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Velikost" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 mapa" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} map" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 datoteka" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} datotek" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Ni mogoče preimenovati datoteke" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Pošlji" @@ -279,37 +283,37 @@ msgstr "Izbrisane datoteke" msgid "Cancel upload" msgstr "Prekliči pošiljanje" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "Za to mesto ni ustreznih dovoljenj za pisanje." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Tukaj še ni ničesar. Najprej je treba kakšno datoteko poslati v oblak!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Prejmi" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Prekliči souporabo" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Prekoračenje omejitve velikosti" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke, ki jih želite poslati, presegajo največjo dovoljeno velikost na strežniku." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Poteka preučevanje datotek, počakajte ..." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Trenutno poteka preučevanje" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 5a921c586ab..f6b060849e0 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "%s nuk u spostua - Aty ekziston një skedar me të njëjtin emër" msgid "Could not move %s" msgstr "%s nuk u spostua" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Nuk është i mundur riemërtimi i skedarit" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nuk u ngarkua asnjë skedar. Veprim i gabuar i panjohur" @@ -86,7 +82,7 @@ msgstr "Nda" msgid "Delete permanently" msgstr "Elimino përfundimisht" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Elimino" @@ -94,43 +90,43 @@ msgstr "Elimino" msgid "Rename" msgstr "Riemërto" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Pezulluar" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} ekziston" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "zëvëndëso" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "sugjero një emër" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "anulo" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "U zëvëndësua {new_name} me {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "anulo" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "ekzekuto operacionin e eliminimit" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "Po ngarkohet 1 skedar" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "po ngarkoj skedarët" @@ -156,69 +152,77 @@ msgstr "Hapësira juaj e memorizimit është plot, nuk mund të ngarkoni apo sin msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Hapësira juaj e memorizimit është gati plot ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Shkarkimi juaj po përgatitet. Mund të duhet pak kohë nqse skedarët janë të mëdhenj." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nuk është i mundur ngarkimi i skedarit tuaj sepse është dosje ose ka dimension 0 byte" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Nuk ka hapësirë memorizimi e mjaftueshme" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Ngarkimi u anulua." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Ngarkimi i skedarit është në vazhdim. Nqse ndërroni faqen tani ngarkimi do të anulohet." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URL-i nuk mund të jetë bosh." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Emri i dosjes është i pavlefshëm. Përdorimi i \"Shared\" është i rezervuar nga Owncloud-i." -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Veprim i gabuar" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Emri" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Dimensioni" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Modifikuar" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 dosje" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} dosje" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 skedar" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} skedarë" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Nuk është i mundur riemërtimi i skedarit" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Ngarko" @@ -279,37 +283,37 @@ msgstr "Skedarë të eliminuar" msgid "Cancel upload" msgstr "Anulo ngarkimin" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "Nuk keni të drejta për të shkruar këtu." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Këtu nuk ka asgjë. Ngarkoni diçka!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Shkarko" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Hiq ndarjen" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Ngarkimi është shumë i madh" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Skedarët që doni të ngarkoni tejkalojnë dimensionet maksimale për ngarkimet në këtë server." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Skedarët po analizohen, ju lutemi pritni." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Analizimi aktual" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 9a0ef172ee6..1a261d747e7 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "Не могу да преместим %s – датотека с ови msgid "Could not move %s" msgstr "Не могу да преместим %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Не могу да преименујем датотеку" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ниједна датотека није отпремљена услед непознате грешке" @@ -86,7 +82,7 @@ msgstr "Дели" msgid "Delete permanently" msgstr "Обриши за стално" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Обриши" @@ -94,43 +90,43 @@ msgstr "Обриши" msgid "Rename" msgstr "Преименуј" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "На чекању" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} већ постоји" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "замени" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "предложи назив" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "откажи" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "замењено {new_name} са {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "опозови" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "обриши" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "Отпремам 1 датотеку" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "датотеке се отпремају" @@ -156,69 +152,77 @@ msgstr "Ваше складиште је пуно. Датотеке више н msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ваше складиште је скоро па пуно ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Припремам преузимање. Ово може да потраје ако су датотеке велике." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не могу да отпремим датотеку као фасциклу или она има 0 бајтова" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Нема довољно простора" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Отпремање је прекинуто." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "Адреса не може бити празна." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Неисправно име фасцикле. Фасцикла „Shared“ је резервисана за ownCloud." -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Грешка" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Име" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Величина" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Измењено" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 фасцикла" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} фасцикле/и" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 датотека" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} датотеке/а" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Не могу да преименујем датотеку" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Отпреми" @@ -279,37 +283,37 @@ msgstr "Обрисане датотеке" msgid "Cancel upload" msgstr "Прекини отпремање" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "Овде немате дозволу за писање." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Овде нема ничег. Отпремите нешто!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Преузми" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Укини дељење" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Датотека је превелика" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Датотеке које желите да отпремите прелазе ограничење у величини." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Скенирам датотеке…" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Тренутно скенирање" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index d7489c98191..e7c6cc4f530 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -86,7 +82,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Obriši" @@ -94,43 +90,43 @@ msgstr "Obriši" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Ime" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Veličina" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Pošalji" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Ovde nema ničeg. Pošaljite nešto!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Preuzmi" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Pošiljka je prevelika" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fajlovi koje želite da pošaljete prevazilaze ograničenje maksimalne veličine pošiljke na ovom serveru." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index a36c0ffa80a..0baab452a74 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "Kunde inte flytta %s - Det finns redan en fil med detta namn" msgid "Could not move %s" msgstr "Kan inte flytta %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Kan inte byta namn på filen" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil uppladdad. Okänt fel" @@ -86,7 +82,7 @@ msgstr "Dela" msgid "Delete permanently" msgstr "Radera permanent" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Radera" @@ -94,43 +90,43 @@ msgstr "Radera" msgid "Rename" msgstr "Byt namn" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Väntar" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} finns redan" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "ersätt" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "föreslå namn" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "ersatt {new_name} med {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "ångra" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "utför raderingen" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 filuppladdning" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "filer laddas upp" @@ -156,69 +152,77 @@ msgstr "Ditt lagringsutrymme är fullt, filer kan ej längre laddas upp eller sy msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ditt lagringsutrymme är nästan fullt ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Din nedladdning förbereds. Det kan ta tid om det är stora filer." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kan inte ladda upp din fil eftersom det är en katalog eller har 0 bytes" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Inte tillräckligt med utrymme tillgängligt" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Uppladdning avbruten." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URL kan inte vara tom." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Fel" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Namn" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Storlek" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Ändrad" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 mapp" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} mappar" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 fil" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} filer" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Kan inte byta namn på filen" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Ladda upp" @@ -279,37 +283,37 @@ msgstr "Raderade filer" msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "Du saknar skrivbehörighet här." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Ingenting här. Ladda upp något!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Ladda ner" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Sluta dela" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "För stor uppladdning" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Filer skannas, var god vänta" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Aktuell skanning" diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po index 13e9c0e6db0..a8b0ef83d08 100644 --- a/l10n/sw_KE/files.po +++ b/l10n/sw_KE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-26 10:00+0200\n" -"PO-Revision-Date: 2013-04-26 08:00+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -86,7 +82,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "" @@ -94,43 +90,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 3e527911022..dbcd1813fdd 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு" @@ -86,7 +82,7 @@ msgstr "பகிர்வு" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "நீக்குக" @@ -94,43 +90,43 @@ msgstr "நீக்குக" msgid "Rename" msgstr "பெயர்மாற்றம்" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "நிலுவையிலுள்ள" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} ஏற்கனவே உள்ளது" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "மாற்றிடுக" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "பெயரை பரிந்துரைக்க" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "இரத்து செய்க" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ஆனது {old_name} இனால் மாற்றப்பட்டது" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "முன் செயல் நீக்கம் " -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 கோப்பு பதிவேற்றப்படுகிறது" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "அடைவு அல்லது 0 bytes ஐ கொண்டுள்ளதால் உங்களுடைய கோப்பை பதிவேற்ற முடியவில்லை" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URL வெறுமையாக இருக்கமுடியாது." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "வழு" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "பெயர்" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "அளவு" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "மாற்றப்பட்டது" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 கோப்புறை" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{எண்ணிக்கை} கோப்புறைகள்" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 கோப்பு" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{எண்ணிக்கை} கோப்புகள்" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "பதிவேற்றுக" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "பதிவேற்றலை இரத்து செய்க" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "இங்கு ஒன்றும் இல்லை. ஏதாவது பதிவேற்றுக!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "பகிரப்படாதது" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "பதிவேற்றல் மிகப்பெரியது" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "நீங்கள் பதிவேற்ற முயற்சிக்கும் கோப்புகளானது இந்த சேவையகத்தில் கோப்பு பதிவேற்றக்கூடிய ஆகக்கூடிய அளவிலும் கூடியது." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "கோப்புகள் வருடப்படுகின்றன, தயவுசெய்து காத்திருங்கள்." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "தற்போது வருடப்படுபவை" diff --git a/l10n/te/files.po b/l10n/te/files.po index 3b1c8bdab4a..d13a3ed0228 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -86,7 +82,7 @@ msgstr "" msgid "Delete permanently" msgstr "శాశ్వతంగా తొలగించు" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "తొలగించు" @@ -94,43 +90,43 @@ msgstr "తొలగించు" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "రద్దుచేయి" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "పొరపాటు" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "పేరు" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "పరిమాణం" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index d34c5edc813..6484f017d59 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-14 02:01+0200\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 51c5ec0d518..3638badffca 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-14 02:01+0200\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -94,43 +90,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -219,6 +215,14 @@ msgstr "" msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 2953ca91aa9..582ea6b8bdd 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-14 02:01+0200\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 2c71c833ee0..cef54068180 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-14 02:01+0200\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 3c4199e04cd..466168d5ec3 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-14 02:01+0200\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index d37f8da1adf..62e0e019d63 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-14 02:01+0200\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 0281b59a187..0afc111950c 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-14 02:01+0200\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index cc9146b348b..739486fd3e1 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-14 02:01+0200\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index dc15a7ea4fa..babd591ec2e 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-14 02:01+0200\n" +"POT-Creation-Date: 2013-05-15 02:00+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 555205eb00d..519b205bd91 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-14 02:01+0200\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index b99f1fbd062..715af4d3568 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-05-14 02:01+0200\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 55940d310ae..eda2b6d03df 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "ไม่สามารถย้าย %s ได้ - ไฟล์ท msgid "Could not move %s" msgstr "ไม่สามารถย้าย %s ได้" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "ไม่สามารถเปลี่ยนชื่อไฟล์ได้" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ" @@ -86,7 +82,7 @@ msgstr "แชร์" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "ลบ" @@ -94,43 +90,43 @@ msgstr "ลบ" msgid "Rename" msgstr "เปลี่ยนชื่อ" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} มีอยู่แล้วในระบบ" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "แทนที่" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "แนะนำชื่อ" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "ยกเลิก" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "แทนที่ {new_name} ด้วย {old_name} แล้ว" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "เลิกทำ" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "ดำเนินการตามคำสั่งลบ" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "กำลังอัพโหลดไฟล์ 1 ไฟล์" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "การอัพโหลดไฟล์" @@ -156,69 +152,77 @@ msgstr "พื้นที่จัดเก็บข้อมูลของค msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "พื้นที่จัดเก็บข้อมูลของคุณใกล้เต็มแล้ว ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "กำลังเตรียมดาวน์โหลดข้อมูล หากไฟล์มีขนาดใหญ่ อาจใช้เวลาสักครู่" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ไม่สามารถอัพโหลดไฟล์ของคุณได้ เนื่องจากไฟล์ดังกล่าวเป็นไดเร็กทอรี่ หรือ มีขนาดไฟล์ 0 ไบต์" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "มีพื้นที่เหลือไม่เพียงพอ" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "การอัพโหลดถูกยกเลิก" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URL ไม่สามารถเว้นว่างได้" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "ชื่อโฟลเดอร์ไม่ถูกต้อง การใช้งาน 'แชร์' สงวนไว้สำหรับ Owncloud เท่านั้น" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "ข้อผิดพลาด" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "ชื่อ" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "ขนาด" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "แก้ไขแล้ว" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 โฟลเดอร์" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} โฟลเดอร์" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 ไฟล์" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} ไฟล์" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "ไม่สามารถเปลี่ยนชื่อไฟล์ได้" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "อัพโหลด" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "ยกเลิกการแชร์" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "ไฟล์ที่กำลังสแกนอยู่ขณะนี้" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 826904dd186..5c0d5d7ad5d 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "%s taşınamadı. Bu isimde dosya zaten var." msgid "Could not move %s" msgstr "%s taşınamadı" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Dosya adı değiştirilemedi" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Dosya yüklenmedi. Bilinmeyen hata" @@ -86,7 +82,7 @@ msgstr "Paylaş" msgid "Delete permanently" msgstr "Kalıcı olarak sil" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Sil" @@ -94,43 +90,43 @@ msgstr "Sil" msgid "Rename" msgstr "İsim değiştir." -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Bekliyor" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} zaten mevcut" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "değiştir" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "Öneri ad" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "iptal" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ismi {old_name} ile değiştirildi" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "geri al" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "Silme işlemini gerçekleştir" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 dosya yüklendi" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "Dosyalar yükleniyor" @@ -156,69 +152,77 @@ msgstr "Depolama alanınız dolu, artık dosyalar güncellenmeyecek yada senkron msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Depolama alanınız neredeyse dolu ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "İndirmeniz hazırlanıyor. Dosya büyük ise biraz zaman alabilir." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Dosyanızın boyutu 0 byte olduğundan veya bir dizin olduğundan yüklenemedi" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Yeterli disk alanı yok" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Yükleme iptal edildi." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URL boş olamaz." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Geçersiz dizin adı. Shared isminin kullanımı Owncloud tarafından rezerver edilmiştir." -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Hata" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "İsim" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Boyut" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 dizin" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} dizin" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 dosya" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} dosya" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Dosya adı değiştirilemedi" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Yükle" @@ -279,37 +283,37 @@ msgstr "Dosyalar silindi" msgid "Cancel upload" msgstr "Yüklemeyi iptal et" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "Buraya erişim hakkınız yok." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Burada hiçbir şey yok. Birşeyler yükleyin!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "İndir" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Paylaşılmayan" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Yükleme çok büyük" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Yüklemeye çalıştığınız dosyalar bu sunucudaki maksimum yükleme boyutunu aşıyor." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Dosyalar taranıyor, lütfen bekleyin." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Güncel tarama" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index fa4a56b319c..10168dedbcf 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-12 02:01+0200\n" -"PO-Revision-Date: 2013-05-04 12:00+0000\n" -"Last-Translator: Abduqadir Abliz \n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "%s يۆتكىيەلمەيدۇ" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "ھۆججەت ئاتىنى ئۆزگەرتكىلى بولمايدۇ" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ھېچقانداق ھۆججەت يۈكلەنمىدى. يوچۇن خاتالىق" @@ -94,43 +90,43 @@ msgstr "ئۆچۈر" msgid "Rename" msgstr "ئات ئۆزگەرت" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "كۈتۈۋاتىدۇ" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} مەۋجۇت" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "ئالماشتۇر" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "تەۋسىيە ئات" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "ۋاز كەچ" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "يېنىۋال" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 ھۆججەت يۈكلىنىۋاتىدۇ" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "ھۆججەت يۈكلىنىۋاتىدۇ" @@ -219,6 +215,14 @@ msgstr "1 ھۆججەت" msgid "{count} files" msgstr "{count} ھۆججەت" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "ھۆججەت ئاتىنى ئۆزگەرتكىلى بولمايدۇ" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "يۈكلە" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 6f4e493551b..c411fcf37cf 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "Не вдалося перемістити %s - Файл з таким msgid "Could not move %s" msgstr "Не вдалося перемістити %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Не вдалося перейменувати файл" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Не завантажено жодного файлу. Невідома помилка" @@ -86,7 +82,7 @@ msgstr "Поділитися" msgid "Delete permanently" msgstr "Видалити назавжди" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "Видалити" @@ -94,43 +90,43 @@ msgstr "Видалити" msgid "Rename" msgstr "Перейменувати" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Очікування" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} вже існує" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "заміна" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "запропонуйте назву" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "відміна" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "замінено {new_name} на {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "відмінити" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "виконати операцію видалення" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 файл завантажується" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "файли завантажуються" @@ -156,69 +152,77 @@ msgstr "Ваше сховище переповнене, файли більше msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ваше сховище майже повне ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ваше завантаження готується. Це може зайняти деякий час, якщо файли завеликі." -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Неможливо завантажити ваш файл тому, що він тека або файл розміром 0 байт" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "Місця більше немає" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "Завантаження перервано." -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження." -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URL не може бути пустим." -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Невірне ім'я теки. Використання \"Shared\" зарезервовано Owncloud" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "Помилка" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "Ім'я" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "Розмір" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "Змінено" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 папка" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 файл" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} файлів" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Не вдалося перейменувати файл" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Вивантажити" @@ -279,37 +283,37 @@ msgstr "Видалено файлів" msgid "Cancel upload" msgstr "Перервати завантаження" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "У вас тут немає прав на запис." -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "Тут нічого немає. Відвантажте що-небудь!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "Завантажити" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Закрити доступ" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "Файл занадто великий" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файли,що ви намагаєтесь відвантажити перевищують максимальний дозволений розмір файлів на цьому сервері." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "Файли скануються, зачекайте, будь-ласка." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "Поточне сканування" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 11f0069a817..c9ff60d2075 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:31+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -86,7 +82,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "" @@ -94,43 +90,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "ایرر" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "شئیرنگ ختم کریں" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index d6dfedc95a9..b0d71c5e22f 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-12 02:01+0200\n" -"PO-Revision-Date: 2013-05-04 17:40+0000\n" -"Last-Translator: xtdv \n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,10 +28,6 @@ msgstr "Không thể di chuyển %s - Đã có tên tập tin này trên hệ th msgid "Could not move %s" msgstr "Không thể di chuyển %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "Không thể đổi tên file" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Không có tập tin nào được tải lên. Lỗi không xác định" @@ -95,43 +91,43 @@ msgstr "Xóa" msgid "Rename" msgstr "Sửa tên" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "Đang chờ" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} đã tồn tại" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "thay thế" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "tên gợi ý" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "hủy" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "đã thay thế {new_name} bằng {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "lùi lại" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "thực hiện việc xóa" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 tệp tin đang được tải lên" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "tệp tin đang được tải lên" @@ -220,6 +216,14 @@ msgstr "1 tập tin" msgid "{count} files" msgstr "{count} tập tin" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "Không thể đổi tên file" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "Tải lên" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index c2de52c9959..1b4d4b16f1e 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "没有上传文件。未知错误" @@ -86,7 +82,7 @@ msgstr "分享" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "删除" @@ -94,43 +90,43 @@ msgstr "删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "等待中" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "替换" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "推荐名称" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "取消" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "已用 {old_name} 替换 {new_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "撤销" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 个文件正在上传" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "个文件正在上传" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "不能上传您的文件,由于它是文件夹或者为空文件" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "上传取消了" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传。关闭页面会取消上传。" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "网址不能为空。" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "出错" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "名称" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "大小" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "修改日期" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 个文件夹" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 个文件" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} 个文件" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "上传" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "取消上传" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "这里没有东西.上传点什么!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "下载" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "取消分享" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "上传过大" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "你正在试图上传的文件超过了此服务器支持的最大的文件大小." -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "正在扫描文件,请稍候." -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "正在扫描" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 6f0626fc694..a9ab24df245 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "无法移动 %s - 同名文件已存在" msgid "Could not move %s" msgstr "无法移动 %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "无法重命名文件" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "没有文件被上传。未知错误" @@ -86,7 +82,7 @@ msgstr "分享" msgid "Delete permanently" msgstr "永久删除" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "删除" @@ -94,43 +90,43 @@ msgstr "删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "等待" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "替换" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "建议名称" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "取消" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "已将 {old_name}替换成 {new_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "撤销" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "进行删除操作" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1个文件上传中" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "文件上传中" @@ -156,69 +152,77 @@ msgstr "您的存储空间已满,文件将无法更新或同步!" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "您的存储空间即将用完 ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "下载正在准备中。如果文件较大可能会花费一些时间。" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "无法上传您的文件,文件夹或者空文件" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "没有足够可用空间" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "上传已取消" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URL不能为空" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "无效文件夹名。'共享' 是 Owncloud 预留的文件夹名。" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "错误" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "名称" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "大小" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "修改日期" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1个文件夹" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 个文件" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} 个文件" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "无法重命名文件" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "上传" @@ -279,37 +283,37 @@ msgstr "删除文件" msgid "Cancel upload" msgstr "取消上传" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "您没有写权限" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "这里还什么都没有。上传些东西吧!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "下载" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "取消共享" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "上传文件过大" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "您正尝试上传的文件超过了此服务器可以上传的最大容量限制" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "文件正在被扫描,请稍候。" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "当前扫描" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index c309f0cffbe..675fe9c8b4d 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -86,7 +82,7 @@ msgstr "分享" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "刪除" @@ -94,43 +90,43 @@ msgstr "刪除" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "" @@ -156,69 +152,77 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "錯誤" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "名稱" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{}文件夾" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "上傳" @@ -279,37 +283,37 @@ msgstr "" msgid "Cancel upload" msgstr "" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "下載" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "取消分享" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index d4eeb6cbc2f..92e7616365d 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:16+0200\n" -"PO-Revision-Date: 2013-04-26 08:27+0000\n" +"POT-Creation-Date: 2013-05-15 01:59+0200\n" +"PO-Revision-Date: 2013-05-15 00:00+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" @@ -27,10 +27,6 @@ msgstr "無法移動 %s - 同名的檔案已經存在" msgid "Could not move %s" msgstr "無法移動 %s" -#: ajax/rename.php:22 ajax/rename.php:25 -msgid "Unable to rename file" -msgstr "無法重新命名檔案" - #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "沒有檔案被上傳。未知的錯誤。" @@ -86,7 +82,7 @@ msgstr "分享" msgid "Delete permanently" msgstr "永久刪除" -#: js/fileactions.js:128 templates/index.php:94 templates/index.php:95 +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" msgstr "刪除" @@ -94,43 +90,43 @@ msgstr "刪除" msgid "Rename" msgstr "重新命名" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 msgid "Pending" msgstr "等候中" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "{new_name} already exists" msgstr "{new_name} 已經存在" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "replace" msgstr "取代" -#: js/filelist.js:252 +#: js/filelist.js:259 msgid "suggest name" msgstr "建議檔名" -#: js/filelist.js:252 js/filelist.js:254 +#: js/filelist.js:259 js/filelist.js:261 msgid "cancel" msgstr "取消" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "replaced {new_name} with {old_name}" msgstr "使用 {new_name} 取代 {old_name}" -#: js/filelist.js:299 +#: js/filelist.js:306 msgid "undo" msgstr "復原" -#: js/filelist.js:324 +#: js/filelist.js:331 msgid "perform delete operation" msgstr "進行刪除動作" -#: js/filelist.js:406 +#: js/filelist.js:413 msgid "1 file uploading" msgstr "1 個檔案正在上傳" -#: js/filelist.js:409 js/filelist.js:463 +#: js/filelist.js:416 js/filelist.js:470 msgid "files uploading" msgstr "檔案正在上傳中" @@ -156,69 +152,77 @@ msgstr "您的儲存空間已滿,沒有辦法再更新或是同步檔案!" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "您的儲存空間快要滿了 ({usedSpacePercent}%)" -#: js/files.js:226 +#: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "正在準備您的下載,若您的檔案較大,將會需要更多時間。" -#: js/files.js:259 +#: js/files.js:264 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0" -#: js/files.js:272 +#: js/files.js:277 msgid "Not enough space available" msgstr "沒有足夠的可用空間" -#: js/files.js:312 +#: js/files.js:317 msgid "Upload cancelled." msgstr "上傳已取消" -#: js/files.js:408 +#: js/files.js:413 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "檔案上傳中。離開此頁面將會取消上傳。" -#: js/files.js:481 +#: js/files.js:486 msgid "URL cannot be empty." msgstr "URL 不能為空白。" -#: js/files.js:486 +#: js/files.js:491 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "無效的資料夾名稱,'Shared' 的使用被 ownCloud 保留" -#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 msgid "Error" msgstr "錯誤" -#: js/files.js:872 templates/index.php:70 +#: js/files.js:877 templates/index.php:69 msgid "Name" msgstr "名稱" -#: js/files.js:873 templates/index.php:81 +#: js/files.js:878 templates/index.php:80 msgid "Size" msgstr "大小" -#: js/files.js:874 templates/index.php:83 +#: js/files.js:879 templates/index.php:82 msgid "Modified" msgstr "修改" -#: js/files.js:893 +#: js/files.js:898 msgid "1 folder" msgstr "1 個資料夾" -#: js/files.js:895 +#: js/files.js:900 msgid "{count} folders" msgstr "{count} 個資料夾" -#: js/files.js:903 +#: js/files.js:908 msgid "1 file" msgstr "1 個檔案" -#: js/files.js:905 +#: js/files.js:910 msgid "{count} files" msgstr "{count} 個檔案" +#: lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: lib/app.php:73 +msgid "Unable to rename file" +msgstr "無法重新命名檔案" + #: lib/helper.php:11 templates/index.php:18 msgid "Upload" msgstr "上傳" @@ -279,37 +283,37 @@ msgstr "已刪除的檔案" msgid "Cancel upload" msgstr "取消上傳" -#: templates/index.php:55 +#: templates/index.php:54 msgid "You don’t have write permissions here." msgstr "您在這裡沒有編輯權。" -#: templates/index.php:62 +#: templates/index.php:61 msgid "Nothing in here. Upload something!" msgstr "這裡什麼也沒有,上傳一些東西吧!" -#: templates/index.php:76 +#: templates/index.php:75 msgid "Download" msgstr "下載" -#: templates/index.php:88 templates/index.php:89 +#: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "取消共享" -#: templates/index.php:108 +#: templates/index.php:107 msgid "Upload too large" msgstr "上傳過大" -#: templates/index.php:110 +#: templates/index.php:109 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "您試圖上傳的檔案已超過伺服器的最大檔案大小限制。" -#: templates/index.php:115 +#: templates/index.php:114 msgid "Files are being scanned, please wait." msgstr "正在掃描檔案,請稍等。" -#: templates/index.php:118 +#: templates/index.php:117 msgid "Current scanning" msgstr "目前掃描" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 9c5b7713d9d..7b0dd5b766f 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-04-27 02:17+0200\n" -"PO-Revision-Date: 2013-04-26 16:22+0000\n" +"POT-Creation-Date: 2013-05-15 02:00+0200\n" +"PO-Revision-Date: 2013-05-14 11:00+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -125,44 +125,44 @@ msgstr "已更新" msgid "Saving..." msgstr "儲存中..." -#: js/users.js:43 +#: js/users.js:47 msgid "deleted" msgstr "已刪除" -#: js/users.js:43 +#: js/users.js:47 msgid "undo" msgstr "復原" -#: js/users.js:75 +#: js/users.js:79 msgid "Unable to remove user" msgstr "無法刪除用戶" -#: js/users.js:88 templates/users.php:26 templates/users.php:78 +#: js/users.js:92 templates/users.php:26 templates/users.php:78 #: templates/users.php:103 msgid "Groups" msgstr "群組" -#: js/users.js:91 templates/users.php:80 templates/users.php:115 +#: js/users.js:95 templates/users.php:80 templates/users.php:115 msgid "Group Admin" msgstr "群組 管理員" -#: js/users.js:111 templates/users.php:155 +#: js/users.js:115 templates/users.php:155 msgid "Delete" msgstr "刪除" -#: js/users.js:262 +#: js/users.js:269 msgid "add group" msgstr "新增群組" -#: js/users.js:414 +#: js/users.js:420 msgid "A valid username must be provided" msgstr "一定要提供一個有效的用戶名" -#: js/users.js:415 js/users.js:421 js/users.js:436 +#: js/users.js:421 js/users.js:427 js/users.js:442 msgid "Error creating user" msgstr "創建用戶時出現錯誤" -#: js/users.js:420 +#: js/users.js:426 msgid "A valid password must be provided" msgstr "一定要提供一個有效的密碼" @@ -329,7 +329,7 @@ msgstr "少" msgid "Version" msgstr "版本" -#: templates/admin.php:238 templates/personal.php:108 +#: templates/admin.php:237 templates/personal.php:108 msgid "" "Developed by the ownCloud community, the Date: Wed, 15 May 2013 13:53:15 +0200 Subject: [PATCH 132/135] Add Contacts repo to CONTRIBUTING.md --- CONTRIBUTING.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3f3cf20e9a5..fd87513ec2a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -12,11 +12,12 @@ If you have questions about how to use ownCloud, please direct these to the [mai - Apps: - [Bookmarks](https://github.com/owncloud/bookmarks/issues) - [Calendar](https://github.com/owncloud/calendar/issues) + - [Contacts](https://github.com/owncloud/contacts/issues) - [Mail](https://github.com/owncloud/mail/issues) - [News](https://github.com/owncloud/news/issues) - [Notes](https://github.com/owncloud/notes/issues) - [Shorty](https://github.com/owncloud/shorty/issues) - - [other apps](https://github.com/owncloud/apps/issues) (e.g. Contacts, Pictures, Music, ...) + - [other apps](https://github.com/owncloud/apps/issues) (e.g. Pictures, Music, Tasks, ...) If your issue appears to be a bug, and hasn't been reported, open a new issue. -- GitLab From cb41a30b00ef8d31676989017fa2b9ad416659b9 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Wed, 15 May 2013 18:56:54 +0200 Subject: [PATCH 133/135] Add Compound property to avoid double escaping values. --- lib/vobject/compoundproperty.php | 70 ++++++++++++++++++++++++++++++++ tests/lib/vobject.php | 19 +++++++++ 2 files changed, 89 insertions(+) create mode 100644 lib/vobject/compoundproperty.php diff --git a/lib/vobject/compoundproperty.php b/lib/vobject/compoundproperty.php new file mode 100644 index 00000000000..d702ab802e0 --- /dev/null +++ b/lib/vobject/compoundproperty.php @@ -0,0 +1,70 @@ +. + * + */ + +namespace OC\VObject; + +/** + * This class overrides \Sabre\VObject\Property::serialize() to not + * double escape commas and semi-colons in compound properties. +*/ +class CompoundProperty extends \Sabre\VObject\Property\Compound { + + /** + * Turns the object back into a serialized blob. + * + * @return string + */ + public function serialize() { + + $str = $this->name; + if ($this->group) { + $str = $this->group . '.' . $this->name; + } + + foreach($this->parameters as $param) { + $str.=';' . $param->serialize(); + } + $src = array( + "\n", + ); + $out = array( + '\n', + ); + $str.=':' . str_replace($src, $out, $this->value); + + $out = ''; + while(strlen($str) > 0) { + if (strlen($str) > 75) { + $out .= mb_strcut($str, 0, 75, 'utf-8') . "\r\n"; + $str = ' ' . mb_strcut($str, 75, strlen($str), 'utf-8'); + } else { + $out .= $str . "\r\n"; + $str = ''; + break; + } + } + + return $out; + + } + +} \ No newline at end of file diff --git a/tests/lib/vobject.php b/tests/lib/vobject.php index 1103a4b3297..f28d22a1fcd 100644 --- a/tests/lib/vobject.php +++ b/tests/lib/vobject.php @@ -10,10 +10,29 @@ class Test_VObject extends PHPUnit_Framework_TestCase { public function setUp() { Sabre\VObject\Property::$classMap['SUMMARY'] = 'OC\VObject\StringProperty'; + Sabre\VObject\Property::$classMap['ORG'] = 'OC\VObject\CompoundProperty'; } function testStringProperty() { $property = Sabre\VObject\Property::create('SUMMARY', 'Escape;this,please'); $this->assertEquals("SUMMARY:Escape\;this\,please\r\n", $property->serialize()); } + + function testCompoundProperty() { + + $arr = array( + 'ABC, Inc.', + 'North American Division', + 'Marketing;Sales', + ); + + $property = Sabre\VObject\Property::create('ORG'); + $property->setParts($arr); + + $this->assertEquals('ABC\, Inc.;North American Division;Marketing\;Sales', $property->value); + $this->assertEquals('ORG:ABC\, Inc.;North American Division;Marketing\;Sales' . "\r\n", $property->serialize()); + $this->assertEquals(3, count($property->getParts())); + $parts = $property->getParts(); + $this->assertEquals('Marketing;Sales', $parts[2]); + } } \ No newline at end of file -- GitLab From c50bf3e3c54ccbad6b58538fb131924d4f0ff3d7 Mon Sep 17 00:00:00 2001 From: Florin Peter Date: Wed, 15 May 2013 10:19:38 +0200 Subject: [PATCH 134/135] fix for losing mount point "/" --- lib/files/filesystem.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php index eadd8a93faf..d60d430d77c 100644 --- a/lib/files/filesystem.php +++ b/lib/files/filesystem.php @@ -222,7 +222,10 @@ class Filesystem { return false; } self::$defaultInstance = new View($root); - self::$mounts = new Mount\Manager(); + + if(!self::$mounts) { + self::$mounts = new Mount\Manager(); + } //load custom mount config self::initMountPoints($user); -- GitLab From 990980392c754edac0b4f8325458f1055c7ba0d8 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Wed, 15 May 2013 22:44:15 +0200 Subject: [PATCH 135/135] No unit test coverage reports for pgsql - this causes issues on Jenkins. --- autotest.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/autotest.sh b/autotest.sh index fdf6d2fe098..267815e96d8 100755 --- a/autotest.sh +++ b/autotest.sh @@ -90,7 +90,12 @@ function execute_tests { rm -rf coverage-html-$1 mkdir coverage-html-$1 php -f enable_all.php - phpunit --configuration phpunit-autotest.xml --log-junit autotest-results-$1.xml --coverage-clover autotest-clover-$1.xml --coverage-html coverage-html-$1 + if [ "$1" == "pgsql" ] ; then + # no coverage with pg - causes segfault on ci.tmit.eu - reason unknown + phpunit --configuration phpunit-autotest.xml --log-junit autotest-results-$1.xml + else + phpunit --configuration phpunit-autotest.xml --log-junit autotest-results-$1.xml --coverage-clover autotest-clover-$1.xml --coverage-html coverage-html-$1 + fi } # -- GitLab