From 507325dd501c89972d5c820bcfefb3aab8b81e34 Mon Sep 17 00:00:00 2001 From: kondou Date: Fri, 20 Sep 2013 11:46:11 +0200 Subject: [PATCH 01/84] Add public API for \OC\Avatar --- lib/avatarmanager.php | 55 +++++++++++++++++++++++++++++++++ lib/private/avatar.php | 2 +- lib/private/server.php | 23 +++++++++++++- lib/public/iavatarmanager.php | 38 +++++++++++++++++++++++ lib/public/iservercontainer.php | 6 ++++ 5 files changed, 122 insertions(+), 2 deletions(-) create mode 100644 lib/avatarmanager.php create mode 100644 lib/public/iavatarmanager.php diff --git a/lib/avatarmanager.php b/lib/avatarmanager.php new file mode 100644 index 0000000000..51481e412d --- /dev/null +++ b/lib/avatarmanager.php @@ -0,0 +1,55 @@ +avatar = new \OC\Avatar($user); + } + + /** + * @brief get the users avatar + * @param $size integer size in px of the avatar, defaults to 64 + * @return boolean|\OC_Image containing the avatar or false if there's no image + */ + function get($size = 64) { + $this->avatar->get($size); + } + + /** + * @brief sets the users avatar + * @param $data mixed imagedata or path to set a new avatar + * @throws Exception if the provided file is not a jpg or png image + * @throws Exception if the provided image is not valid + * @throws \OC\NotSquareException if the image is not square + * @return void + */ + function set($data) { + $this->avatar->set($data); + } + + /** + * @brief remove the users avatar + * @return void + */ + function remove() { + $this->avatar->remove(); + } +} diff --git a/lib/private/avatar.php b/lib/private/avatar.php index 720740569d..e9b02a7d34 100644 --- a/lib/private/avatar.php +++ b/lib/private/avatar.php @@ -24,7 +24,7 @@ class OC_Avatar { /** * @brief get the users avatar - * @param $size integer size in px of the avatar, defaults to 64 + * @param $size integer size in px of the avatar, avatars are square, defaults to 64 * @return boolean|\OC_Image containing the avatar or false if there's no image */ public function get ($size = 64) { diff --git a/lib/private/server.php b/lib/private/server.php index 65899f3007..65542d19ab 100644 --- a/lib/private/server.php +++ b/lib/private/server.php @@ -56,7 +56,7 @@ class Server extends SimpleContainer implements IServerContainer { }); $this->registerService('TagManager', function($c) { $user = \OC_User::getUser(); - return new TagManager($user); + return new Tags($user); }); $this->registerService('RootFolder', function($c) { // TODO: get user and user manager from container as well @@ -131,6 +131,9 @@ class Server extends SimpleContainer implements IServerContainer { $this->registerService('ActivityManager', function($c) { return new ActivityManager(); }); + $this->registerService('AvatarManager', function($c) { + return new AvatarManager(); //TODO AvatarManager needs $user + }); } /** @@ -160,6 +163,15 @@ class Server extends SimpleContainer implements IServerContainer { return $this->query('PreviewManager'); } + /** + * Returns the avatar manager, used for avatar functionality + * + * @return \OCP\IAvatar + */ + function getAvatarManager() { + return $this->query('AvatarManager'); + } + /** * Returns the tag manager which can get and set tags for different object types * @@ -170,6 +182,15 @@ class Server extends SimpleContainer implements IServerContainer { return $this->query('TagManager'); } + /** + * Returns the avatar manager, used for avatar functionality + * + * @return \OCP\IAvatar + */ + function getAvatarManager() { + return $this->query('AvatarManager'); + } + /** * Returns the root folder of ownCloud's data directory * diff --git a/lib/public/iavatarmanager.php b/lib/public/iavatarmanager.php new file mode 100644 index 0000000000..818dbb124a --- /dev/null +++ b/lib/public/iavatarmanager.php @@ -0,0 +1,38 @@ + Date: Mon, 30 Sep 2013 22:25:01 +0200 Subject: [PATCH 02/84] Remove duplicate getAvatarManager() --- lib/private/server.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/lib/private/server.php b/lib/private/server.php index 65542d19ab..ec0703cce3 100644 --- a/lib/private/server.php +++ b/lib/private/server.php @@ -163,15 +163,6 @@ class Server extends SimpleContainer implements IServerContainer { return $this->query('PreviewManager'); } - /** - * Returns the avatar manager, used for avatar functionality - * - * @return \OCP\IAvatar - */ - function getAvatarManager() { - return $this->query('AvatarManager'); - } - /** * Returns the tag manager which can get and set tags for different object types * From bcd776b0c0480291c793c89ba36477163c9e4249 Mon Sep 17 00:00:00 2001 From: kondou Date: Thu, 7 Nov 2013 12:51:03 +0100 Subject: [PATCH 03/84] =?UTF-8?q?Fix=20a=20regression=20(Tags=E2=86=92TagM?= =?UTF-8?q?anager)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/private/server.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/server.php b/lib/private/server.php index ec0703cce3..7711269acf 100644 --- a/lib/private/server.php +++ b/lib/private/server.php @@ -56,7 +56,7 @@ class Server extends SimpleContainer implements IServerContainer { }); $this->registerService('TagManager', function($c) { $user = \OC_User::getUser(); - return new Tags($user); + return new TagManager($user); }); $this->registerService('RootFolder', function($c) { // TODO: get user and user manager from container as well From a6d8854d2af234d0613467f12b45f229e0431b35 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 8 Nov 2013 14:30:08 +0100 Subject: [PATCH 04/84] Make working en_US.UTF-8 locale a hard requirement --- lib/base.php | 8 +------- lib/private/util.php | 7 +++++++ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/lib/base.php b/lib/base.php index 4f8d97ac95..cf9230c367 100644 --- a/lib/base.php +++ b/lib/base.php @@ -241,7 +241,7 @@ class OC { $minimizerCSS->clearCache(); $minimizerJS = new OC_Minimizer_JS(); $minimizerJS->clearCache(); - OC_Util::addscript('update'); + OC_Util::addScript('update'); $tmpl = new OC_Template('', 'update.admin', 'guest'); $tmpl->assign('version', OC_Util::getVersionString()); $tmpl->printPage(); @@ -564,12 +564,6 @@ class OC { } } - // write error into log if locale can't be set - if (OC_Util::isSetLocaleWorking() == false) { - OC_Log::write('core', - 'setting locale to en_US.UTF-8/en_US.UTF8 failed. Support is probably not installed on your system', - OC_Log::ERROR); - } if (OC_Config::getValue('installed', false) && !self::checkUpgrade(false)) { if (OC_Appconfig::getValue('core', 'backgroundjobs_mode', 'ajax') == 'ajax') { OC_Util::addScript('backgroundjobs'); diff --git a/lib/private/util.php b/lib/private/util.php index 176eb4bc36..f285f83cf5 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -353,6 +353,13 @@ class OC_Util { $errors = array_merge($errors, self::checkDataDirectoryPermissions($CONFIG_DATADIRECTORY)); } + if(!OC_Util::isSetLocaleWorking()) { + $errors[] = array( + 'error' => 'Setting locale to en_US.UTF-8/en_US.UTF8 failed', + 'hint' => 'Please install the locale on your system and restart your webserver.' + ); + } + $moduleHint = "Please ask your server administrator to install the module."; // check if all required php modules are present if(!class_exists('ZipArchive')) { From 80c8666d3abae0a4004e48ad9f580397e98c6ac0 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 30 Oct 2013 22:34:37 +0100 Subject: [PATCH 05/84] Deleting all files in trash now only sends a single flag To prevent having to send the list of all files for deletion, only set a flag "allfiles". This should make it a bit smoother when deleting 5000+ files. Also fixes some "empty trash" message issues. --- apps/files/js/filelist.js | 5 +-- apps/files_trashbin/ajax/delete.php | 39 ++++++++++++++------ apps/files_trashbin/js/filelist.js | 7 ++++ apps/files_trashbin/js/trash.js | 48 +++++++++++++++++++------ apps/files_trashbin/templates/index.php | 4 +-- 5 files changed, 77 insertions(+), 26 deletions(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 0a94657c2d..eaa60f9aaa 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -681,8 +681,9 @@ var FileList={ var $fileList = $('#fileList'); var permissions = $('#permissions').val(); var isCreatable = (permissions & OC.PERMISSION_CREATE) !== 0; - $('#emptycontent').toggleClass('hidden', !isCreatable || $fileList.find('tr').exists()); - $('#filestable th').toggleClass('hidden', $fileList.find('tr').exists() === false); + var exists = $fileList.find('tr:first').exists(); + $('#emptycontent').toggleClass('hidden', !isCreatable || exists); + $('#filestable th').toggleClass('hidden', !exists); }, showMask: function() { // in case one was shown before diff --git a/apps/files_trashbin/ajax/delete.php b/apps/files_trashbin/ajax/delete.php index 92361b65f6..5498250dbf 100644 --- a/apps/files_trashbin/ajax/delete.php +++ b/apps/files_trashbin/ajax/delete.php @@ -3,10 +3,19 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); -$files = $_POST['files']; -$dirlisting = $_POST['dirlisting']; -$list = json_decode($files); - +// "empty trash" command +$deleteAll = false; +if (isset($_POST['allfiles']) and $_POST['allfiles'] === 'true'){ + $user = \OCP\User::getUser(); + $list = OCA\Files_Trashbin\Helper::getTrashFiles('/'); + $deleteAll = true; + $dirlisting = '0'; +} +else { + $files = $_POST['files']; + $dirlisting = $_POST['dirlisting']; + $list = json_decode($files); +} $error = array(); $success = array(); @@ -14,22 +23,30 @@ $success = array(); $i = 0; foreach ($list as $file) { if ( $dirlisting === '0') { - $delimiter = strrpos($file, '.d'); - $filename = substr($file, 0, $delimiter); - $timestamp = substr($file, $delimiter+2); + if ($deleteAll) { + $filename = $file['name']; + $timestamp = $file['timestamp']; + } + else { + $delimiter = strrpos($file, '.d'); + $filename = substr($file, 0, $delimiter); + $timestamp = substr($file, $delimiter+2); + } } else { $filename = $file; $timestamp = null; } OCA\Files_Trashbin\Trashbin::delete($filename, $timestamp); - if (!OCA\Files_Trashbin\Trashbin::file_exists($filename, $timestamp)) { + if (OCA\Files_Trashbin\Trashbin::file_exists($filename, $timestamp)) { + $error[] = $filename; + OC_Log::write('trashbin','can\'t delete ' . $filename . ' permanently.', OC_Log::ERROR); + } + // only list deleted files if not deleting everything + else if (!$deleteAll) { $success[$i]['filename'] = $file; $success[$i]['timestamp'] = $timestamp; $i++; - } else { - $error[] = $filename; - OC_Log::write('trashbin','can\'t delete ' . $filename . ' permanently.', OC_Log::ERROR); } } diff --git a/apps/files_trashbin/js/filelist.js b/apps/files_trashbin/js/filelist.js index cd5a67ddfe..f42abb6d02 100644 --- a/apps/files_trashbin/js/filelist.js +++ b/apps/files_trashbin/js/filelist.js @@ -22,3 +22,10 @@ FileList.reload = function(){ FileList.linkTo = function(dir){ return OC.linkTo('files_trashbin', 'index.php')+"?dir="+ encodeURIComponent(dir).replace(/%2F/g, '/'); } + +FileList.updateEmptyContent = function(){ + var $fileList = $('#fileList'); + var exists = $fileList.find('tr:first').exists(); + $('#emptycontent').toggleClass('hidden', exists); + $('#filestable th').toggleClass('hidden', !exists); +} diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 4e6a1e93fa..84c23d6699 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -19,6 +19,7 @@ $(document).ready(function() { } enableActions(); FileList.updateFileSummary(); + FileList.updateEmptyContent(); } ); @@ -45,6 +46,7 @@ $(document).ready(function() { } enableActions(); FileList.updateFileSummary(); + FileList.updateEmptyContent(); } ); @@ -122,34 +124,60 @@ $(document).ready(function() { } enableActions(); FileList.updateFileSummary(); + FileList.updateEmptyContent(); } ); }); $('.delete').click('click', function(event) { event.preventDefault(); - var files = getSelectedFiles('file'); - var fileslist = JSON.stringify(files); - var dirlisting = getSelectedFiles('dirlisting')[0]; + var allFiles = $('#select_all').is(':checked'); + var files = []; + var params = {}; + if (allFiles) { + params = { + allfiles: true + }; + } + else { + files = getSelectedFiles('file'); + params = { + files: JSON.stringify(files), + dirlisting: getSelectedFiles('dirlisting')[0] + }; + }; disableActions(); - for (var i = 0; i < files.length; i++) { - var deleteAction = $('tr').filterAttr('data-file', files[i]).children("td.date").children(".action.delete"); - deleteAction.removeClass('delete-icon').addClass('progress-icon'); + if (allFiles) { + FileList.showMask(); + } + else { + for (var i = 0; i < files.length; i++) { + var deleteAction = $('tr').filterAttr('data-file', files[i]).children("td.date").children(".action.delete"); + deleteAction.removeClass('delete-icon').addClass('progress-icon'); + } } $.post(OC.filePath('files_trashbin', 'ajax', 'delete.php'), - {files: fileslist, dirlisting: dirlisting}, + params, function(result) { - for (var i = 0; i < result.data.success.length; i++) { - var row = document.getElementById(result.data.success[i].filename); - row.parentNode.removeChild(row); + if (allFiles) { + FileList.hideMask(); + // simply remove all files + $('#fileList').empty(); + } + else { + for (var i = 0; i < result.data.success.length; i++) { + var row = document.getElementById(result.data.success[i].filename); + row.parentNode.removeChild(row); + } } if (result.status !== 'success') { OC.dialogs.alert(result.data.message, t('core', 'Error')); } enableActions(); FileList.updateFileSummary(); + FileList.updateEmptyContent(); } ); diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index 15ba074e45..f9264d4352 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -4,9 +4,7 @@
- -
t('Nothing in here. Your trash bin is empty!'))?>
- +
class="hidden">t('Nothing in here. Your trash bin is empty!'))?>
From ca675d7b085f2c13a51dcd7bdbf05f8f1e20921d Mon Sep 17 00:00:00 2001 From: ringmaster Date: Thu, 14 Nov 2013 09:41:55 -0500 Subject: [PATCH 06/84] Alias the aggregate columns so SQL Server doesn't combine them. --- lib/private/files/cache/cache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/files/cache/cache.php b/lib/private/files/cache/cache.php index 8c34fa5854..ac50a988e3 100644 --- a/lib/private/files/cache/cache.php +++ b/lib/private/files/cache/cache.php @@ -507,7 +507,7 @@ class Cache { $entry = $this->get($path); if ($entry && $entry['mimetype'] === 'httpd/unix-directory') { $id = $entry['fileid']; - $sql = 'SELECT SUM(`size`), MIN(`size`) FROM `*PREFIX*filecache` '. + $sql = 'SELECT SUM(`size`) AS f1, MIN(`size`) AS f2 FROM `*PREFIX*filecache` '. 'WHERE `parent` = ? AND `storage` = ?'; $result = \OC_DB::executeAudited($sql, array($id, $this->getNumericStorageId())); if ($row = $result->fetchRow()) { From bd3ead0d3181f74fd666b21ef83df8a6b2efc12d Mon Sep 17 00:00:00 2001 From: ringmaster Date: Thu, 14 Nov 2013 09:42:56 -0500 Subject: [PATCH 07/84] Compare dirname() results to DIRECTORY_SEPARATOR, not '/' --- lib/private/files/cache/updater.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/files/cache/updater.php b/lib/private/files/cache/updater.php index da22356700..d45c5e17fc 100644 --- a/lib/private/files/cache/updater.php +++ b/lib/private/files/cache/updater.php @@ -142,7 +142,7 @@ class Updater { $cache->update($id, array('mtime' => $time, 'etag' => $storage->getETag($internalPath))); if ($realPath !== '') { $realPath = dirname($realPath); - if($realPath === '/') { + if($realPath === DIRECTORY_SEPARATOR ) { $realPath = ""; } // check storage for parent in case we change the storage in this step From 926b274200d929af2d290d19202a5236c32c18bd Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Fri, 15 Nov 2013 01:46:51 +0100 Subject: [PATCH 08/84] Movie preview - use frame after 5 seconds --- lib/private/preview/movies.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/private/preview/movies.php b/lib/private/preview/movies.php index 28f130f750..276209a876 100644 --- a/lib/private/preview/movies.php +++ b/lib/private/preview/movies.php @@ -50,13 +50,13 @@ if (!\OC_Util::runningOnWindows()) { file_put_contents($absPath, $firstmb); if (self::$avconvBinary) { - $cmd = self::$avconvBinary . ' -an -y -ss 1'. + $cmd = self::$avconvBinary . ' -an -y -ss 5'. ' -i ' . escapeshellarg($absPath) . ' -f mjpeg -vframes 1 ' . escapeshellarg($tmpPath) . ' > /dev/null 2>&1'; } else { - $cmd = self::$ffmpegBinary . ' -y -ss 1' . + $cmd = self::$ffmpegBinary . ' -y -ss 5' . ' -i ' . escapeshellarg($absPath) . ' -f mjpeg -vframes 1' . ' -s ' . escapeshellarg($maxX) . 'x' . escapeshellarg($maxY) . From bcf56b04078f4a8b9381f110c379b0d33d0db48c Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 15 Nov 2013 13:06:35 +0100 Subject: [PATCH 09/84] Use \Patchwork\Utf8\Bootup::initLocale --- lib/private/util.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/private/util.php b/lib/private/util.php index f285f83cf5..d44ae09ecb 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -854,8 +854,8 @@ class OC_Util { return true; } - $result = setlocale(LC_ALL, 'en_US.UTF-8', 'en_US.UTF8'); - if($result == false) { + \Patchwork\Utf8\Bootup::initLocale(); + if ('' === basename('§')) { return false; } return true; From 368342a085cd33d6f6ea9fa037b9695c82571992 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 15 Nov 2013 14:46:00 +0100 Subject: [PATCH 10/84] Update error messages --- lib/private/util.php | 2 +- settings/admin.php | 2 +- settings/templates/admin.php | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/private/util.php b/lib/private/util.php index d44ae09ecb..115deaceb5 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -355,7 +355,7 @@ class OC_Util { if(!OC_Util::isSetLocaleWorking()) { $errors[] = array( - 'error' => 'Setting locale to en_US.UTF-8/en_US.UTF8 failed', + 'error' => 'Setting locale to en_US.UTF-8/fr_FR.UTF-8/es_ES.UTF-8/de_DE.UTF-8/ru_RU.UTF-8/pt_BR.UTF-8/it_IT.UTF-8/ja_JP.UTF-8/zh_CN.UTF-8 failed', 'hint' => 'Please install the locale on your system and restart your webserver.' ); } diff --git a/settings/admin.php b/settings/admin.php index 120f15bec1..0d3868afea 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -25,7 +25,7 @@ $tmpl->assign('entries', $entries); $tmpl->assign('entriesremain', $entriesremain); $tmpl->assign('htaccessworking', $htaccessworking); $tmpl->assign('internetconnectionworking', OC_Util::isInternetConnectionEnabled() ? OC_Util::isInternetConnectionWorking() : false); -$tmpl->assign('islocaleworking', OC_Util::isSetLocaleWorking()); +$tmpl->assign('isLocaleWorking', OC_Util::isSetLocaleWorking()); $tmpl->assign('isWebDavWorking', OC_Util::isWebDAVWorking()); $tmpl->assign('has_fileinfo', OC_Util::fileInfoLoaded()); $tmpl->assign('backgroundjobs_mode', OC_Appconfig::getValue('core', 'backgroundjobs_mode', 'ajax')); diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 5413b70093..66bcfa21c3 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -59,14 +59,14 @@ if (!$_['has_fileinfo']) { } // is locale working ? -if (!$_['islocaleworking']) { +if (!$_['isLocaleWorking']) { ?>

t('Locale not working'));?>

t('System locale can\'t be set 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.', array($locales, $locales))); ?> From 3e2d4c1bc1cb7c9d8e93848cfdc23491fd4e85f7 Mon Sep 17 00:00:00 2001 From: hkjolhede Date: Fri, 15 Nov 2013 21:10:09 +0100 Subject: [PATCH 11/84] Fixed error-checking error in sftp.php --- apps/files_external/lib/sftp.php | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/apps/files_external/lib/sftp.php b/apps/files_external/lib/sftp.php index fb1ecd5463..7c5aed5aa0 100644 --- a/apps/files_external/lib/sftp.php +++ b/apps/files_external/lib/sftp.php @@ -94,15 +94,17 @@ class SFTP extends \OC\Files\Storage\Common { private function writeHostKeys($keys) { try { $keyPath = $this->hostKeysPath(); - $fp = fopen($keyPath, 'w'); - foreach ($keys as $host => $key) { - fwrite($fp, $host . '::' . $key . "\n"); + if ($keyPath && file_exists($keyPath)) { + $fp = fopen($keyPath, 'w'); + foreach ($keys as $host => $key) { + fwrite($fp, $host . '::' . $key . "\n"); + } + fclose($fp); + return true; } - fclose($fp); - return true; } catch (\Exception $e) { - return false; } + return false; } private function readHostKeys() { From b678766c7d0e383d1f6a92d4234da30e77f08665 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 18 Nov 2013 17:30:24 +0100 Subject: [PATCH 12/84] remove bold from legend, table header, label - less obtrusive --- core/css/styles.css | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 15eae529b4..fc213e09eb 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -696,8 +696,6 @@ tbody tr:hover, tr:active { background-color:#f8f8f8; } } #body-settings .personalblock#quota { position:relative; padding:0; } #body-settings #controls+.helpblock { position:relative; margin-top:3em; } -.personalblock > legend { margin-top:2em; } -.personalblock > legend, th, dt, label { font-weight:bold; } code { font-family:"Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", monospace; } #quota div { From a7962faa5621c5a52e4fab3a94eab0b5b975e742 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 14 Nov 2013 16:48:04 +0100 Subject: [PATCH 13/84] Fixed delete action to show error message as notification --- apps/files/js/filelist.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index f20d942927..5cab0707bd 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -569,8 +569,18 @@ var FileList={ FileList.updateEmptyContent(); Files.updateStorageStatistics(); } else { + if (result.status === 'error' && result.data.message) { + OC.Notification.show(result.data.message); + } + else { + OC.Notification.show(t('files', 'Error deleting file.')); + } + // hide notification after 10 sec + setTimeout(function() { + OC.Notification.hide(); + }, 10000); $.each(files,function(index,file) { - var deleteAction = $('tr[data-file="'+files[i]+'"]').children("td.date").children(".action.delete"); + var deleteAction = $('tr[data-file="' + file + '"] .action.delete'); deleteAction.removeClass('progress-icon').addClass('delete-icon'); }); } From 8ab40f195984e76ec1fe8e89c8f0081f6bb7a418 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 14 Nov 2013 16:52:00 +0100 Subject: [PATCH 14/84] Removing trailing dot in path that samba doesn't seem to like Fixes #5778 Added unit test for getId() and constructUrl() --- apps/files_external/lib/smb.php | 7 +++- apps/files_external/tests/smbfunctions.php | 41 ++++++++++++++++++++++ 2 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 apps/files_external/tests/smbfunctions.php diff --git a/apps/files_external/lib/smb.php b/apps/files_external/lib/smb.php index ecd4dae048..c464fa9107 100644 --- a/apps/files_external/lib/smb.php +++ b/apps/files_external/lib/smb.php @@ -47,8 +47,13 @@ class SMB extends \OC\Files\Storage\StreamWrapper{ public function constructUrl($path) { if (substr($path, -1)=='/') { - $path=substr($path, 0, -1); + $path = substr($path, 0, -1); } + if (substr($path, 0, 1)=='/') { + $path = substr($path, 1); + } + // remove trailing dots which some versions of samba don't seem to like + $path = rtrim($path, '.'); $path = urlencode($path); $user = urlencode($this->user); $pass = urlencode($this->password); diff --git a/apps/files_external/tests/smbfunctions.php b/apps/files_external/tests/smbfunctions.php new file mode 100644 index 0000000000..749906d013 --- /dev/null +++ b/apps/files_external/tests/smbfunctions.php @@ -0,0 +1,41 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace Test\Files\Storage; + +class SMBFunctions extends \PHPUnit_Framework_TestCase { + + public function setUp() { + $id = uniqid(); + // dummy config + $this->config = array( + 'run'=>false, + 'user'=>'test', + 'password'=>'testpassword', + 'host'=>'smbhost', + 'share'=>'/sharename', + 'root'=>'/rootdir/', + ); + + $this->instance = new \OC\Files\Storage\SMB($this->config); + } + + public function tearDown() { + } + + public function testGetId() { + $this->assertEquals('smb::test@smbhost//sharename//rootdir/', $this->instance->getId()); + } + + public function testConstructUrl() { + $this->assertEquals("smb://test:testpassword@smbhost/sharename/rootdir/abc", $this->instance->constructUrl('/abc')); + $this->assertEquals("smb://test:testpassword@smbhost/sharename/rootdir/abc", $this->instance->constructUrl('/abc/')); + $this->assertEquals("smb://test:testpassword@smbhost/sharename/rootdir/abc%2F", $this->instance->constructUrl('/abc/.')); + $this->assertEquals("smb://test:testpassword@smbhost/sharename/rootdir/abc%2Fdef", $this->instance->constructUrl('/abc/def')); + } +} From 5b6d1d79d06e404ce4a52f75393a98f52769da48 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 14 Nov 2013 18:39:39 +0100 Subject: [PATCH 15/84] Fixed SMB file deletion success detection Since unlink() smb4php doesn't return true on deletion success, we need to check whether the file was deleted to confirm success. Fixes #5866 --- apps/files_external/lib/smb.php | 12 ++++++++++++ tests/lib/files/storage/storage.php | 16 ++++++++++++++-- 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/apps/files_external/lib/smb.php b/apps/files_external/lib/smb.php index c464fa9107..5bff597fdc 100644 --- a/apps/files_external/lib/smb.php +++ b/apps/files_external/lib/smb.php @@ -81,6 +81,18 @@ class SMB extends \OC\Files\Storage\StreamWrapper{ } } + /** + * Unlinks file + * @param string @path + */ + public function unlink($path) { + unlink($this->constructUrl($path)); + clearstatcache(); + // smb4php still returns false even on success so + // check here whether file was really deleted + return !file_exists($path); + } + /** * check if a file or folder has been updated since $time * @param string $path diff --git a/tests/lib/files/storage/storage.php b/tests/lib/files/storage/storage.php index f72a5276db..6c433e9547 100644 --- a/tests/lib/files/storage/storage.php +++ b/tests/lib/files/storage/storage.php @@ -182,8 +182,9 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { $this->assertTrue($this->instance->hasUpdated('/lorem.txt', $ctimeStart - 5)); $this->assertTrue($this->instance->hasUpdated('/', $ctimeStart - 5)); - $this->assertTrue(($ctimeStart - 5) <= $mTime); - $this->assertTrue($mTime <= ($ctimeEnd + 1)); + // check that ($ctimeStart - 5) <= $mTime <= ($ctimeEnd + 1) + $this->assertGreaterThanOrEqual(($ctimeStart - 5), $mTime); + $this->assertLessThanOrEqual(($ctimeEnd + 1), $mTime); $this->assertEquals(filesize($textFile), $this->instance->filesize('/lorem.txt')); $stat = $this->instance->stat('/lorem.txt'); @@ -202,6 +203,17 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { $this->assertTrue($this->instance->hasUpdated('/', $mtimeStart - 5)); } + public function testUnlink() { + $textFile = \OC::$SERVERROOT . '/tests/data/lorem.txt'; + $this->instance->file_put_contents('/lorem.txt', file_get_contents($textFile)); + + $this->assertTrue($this->instance->file_exists('/lorem.txt')); + + $this->assertTrue($this->instance->unlink('/lorem.txt')); + + $this->assertFalse($this->instance->file_exists('/lorem.txt')); + } + public function testFOpen() { $textFile = \OC::$SERVERROOT . '/tests/data/lorem.txt'; From b823505bd1190f5e8920373fc043d6735e640d01 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 19 Nov 2013 18:28:51 +0100 Subject: [PATCH 16/84] make sure that the owners home is mounted correctly --- apps/files_encryption/lib/util.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 1af5e56e10..f9beb9de67 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -84,6 +84,8 @@ class Util { $this->privateKeyPath = '/owncloud_private_key/' . $this->userId . '.private.key'; // e.g. data/admin/admin.private.key $this->isPublic = true; + // make sure that the owners home is mounted + \OC\Files\Filesystem::initMountPoints($GLOBALS['fileOwner']); } } else { @@ -99,6 +101,8 @@ class Util { $this->publicKeyDir . '/' . $this->userId . '.public.key'; // e.g. data/public-keys/admin.public.key $this->privateKeyPath = $this->encryptionDir . '/' . $this->userId . '.private.key'; // e.g. data/admin/admin.private.key + // make sure that the owners home is mounted + \OC\Files\Filesystem::initMountPoints($this->userId); } } From 0c24c7c4203071542d1f1acc447bb6c6b18148db Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 20 Nov 2013 11:02:22 +0100 Subject: [PATCH 17/84] only check if the key file exists to decide if it is an encrypted file or not. This solves problems with external storage which doesn't support fseek --- apps/files_encryption/lib/keymanager.php | 3 +-- apps/files_encryption/lib/stream.php | 2 +- apps/files_encryption/lib/util.php | 23 ++++++++--------------- apps/files_encryption/tests/crypt.php | 14 +++++++------- 4 files changed, 17 insertions(+), 25 deletions(-) diff --git a/apps/files_encryption/lib/keymanager.php b/apps/files_encryption/lib/keymanager.php index 6dadd12a62..3427e8a963 100755 --- a/apps/files_encryption/lib/keymanager.php +++ b/apps/files_encryption/lib/keymanager.php @@ -172,14 +172,13 @@ class Keymanager { /** * @brief retrieve keyfile for an encrypted file * @param \OC_FilesystemView $view - * @param $userId * @param $filePath * @internal param \OCA\Encryption\file $string name * @return string file key or false * @note The keyfile returned is asymmetrically encrypted. Decryption * of the keyfile must be performed by client code */ - public static function getFileKey(\OC_FilesystemView $view, $userId, $filePath) { + public static function getFileKey(\OC_FilesystemView $view, $filePath) { $util = new Util($view, \OCP\User::getUser()); diff --git a/apps/files_encryption/lib/stream.php b/apps/files_encryption/lib/stream.php index 1738955d1a..206e346902 100644 --- a/apps/files_encryption/lib/stream.php +++ b/apps/files_encryption/lib/stream.php @@ -250,7 +250,7 @@ class Stream { // Fetch and decrypt keyfile // Fetch existing keyfile - $this->encKeyfile = Keymanager::getFileKey($this->rootView, $this->userId, $this->relPath); + $this->encKeyfile = Keymanager::getFileKey($this->rootView, $this->relPath); // If a keyfile already exists if ($this->encKeyfile) { diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index f9beb9de67..4f27c2b00f 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -367,7 +367,7 @@ class Util { // scanning every file like this // will eat server resources :( if ( - Keymanager::getFileKey($this->view, $this->userId, $relPath) + Keymanager::getFileKey($this->view, $relPath) && $isEncryptedPath ) { @@ -472,22 +472,15 @@ class Util { */ public function isEncryptedPath($path) { - // Disable encryption proxy so data retrieved is in its - // original form - $proxyStatus = \OC_FileProxy::$enabled; - \OC_FileProxy::$enabled = false; + $relPath = Helper::stripUserFilesPath($path); - // we only need 24 byte from the last chunk - $data = ''; - $handle = $this->view->fopen($path, 'r'); - if (is_resource($handle) && !fseek($handle, -24, SEEK_END)) { - $data = fgets($handle); + $fileKey = Keymanager::getFileKey($this->view, $relPath); + + if ($fileKey === false) { + return false; } - // re-enable proxy - \OC_FileProxy::$enabled = $proxyStatus; - - return Crypt::isCatfileContent($data); + return true; } @@ -1059,7 +1052,7 @@ class Util { private function decryptKeyfile($filePath, $privateKey) { // Get the encrypted keyfile - $encKeyfile = Keymanager::getFileKey($this->view, $this->userId, $filePath); + $encKeyfile = Keymanager::getFileKey($this->view, $filePath); // The file has a shareKey and must use it for decryption $shareKey = Keymanager::getShareKey($this->view, $this->userId, $filePath); diff --git a/apps/files_encryption/tests/crypt.php b/apps/files_encryption/tests/crypt.php index 5146613e25..9c32ee0645 100755 --- a/apps/files_encryption/tests/crypt.php +++ b/apps/files_encryption/tests/crypt.php @@ -176,7 +176,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { $this->assertNotEquals($this->dataShort, $retreivedCryptedFile); // Get the encrypted keyfile - $encKeyfile = Encryption\Keymanager::getFileKey($this->view, $this->userId, $filename); + $encKeyfile = Encryption\Keymanager::getFileKey($this->view, $filename); // Attempt to fetch the user's shareKey $shareKey = Encryption\Keymanager::getShareKey($this->view, $this->userId, $filename); @@ -244,13 +244,13 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { $i = 0; while ($i < count($r)-1) { $e[] = $r[$i] . $r[$i+1]; - $i = $i + 2; + $i = $i + 2; } //print_r($e); // Get the encrypted keyfile - $encKeyfile = Encryption\Keymanager::getFileKey($this->view, $this->userId, $filename); + $encKeyfile = Encryption\Keymanager::getFileKey($this->view, $filename); // Attempt to fetch the user's shareKey $shareKey = Encryption\Keymanager::getShareKey($this->view, $this->userId, $filename); @@ -387,7 +387,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { * @brief test decryption using legacy blowfish method */ function testLegacyDecryptShort() { - + $crypted = $this->legacyEncrypt($this->dataShort, $this->pass); $decrypted = Encryption\Crypt::legacyBlockDecrypt($crypted, $this->pass); @@ -401,7 +401,7 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { * @brief test decryption using legacy blowfish method */ function testLegacyDecryptLong() { - + $crypted = $this->legacyEncrypt($this->dataLong, $this->pass); $decrypted = Encryption\Crypt::legacyBlockDecrypt($crypted, $this->pass); @@ -653,8 +653,8 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { // tear down $view->unlink($filename); } - - + + /** * @brief encryption using legacy blowfish method * @param $data string data to encrypt From caf486d6e78ee9a69d9350bce45cb9c3871df408 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 20 Nov 2013 12:23:10 +0100 Subject: [PATCH 18/84] - show a spinner while decrypting files if the encryption app was disabled - don't fade-out the decryption result --- settings/js/personal.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/settings/js/personal.js b/settings/js/personal.js index cdf7d0e963..2934677f25 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -190,7 +190,7 @@ $(document).ready(function(){ var privateKeyPassword = $('#decryptAll input:password[id="privateKeyPassword"]').val(); OC.Encryption.decryptAll(privateKeyPassword); }); - + $('#decryptAll input:password[name="privateKeyPassword"]').keyup(function(event) { var privateKeyPassword = $('#decryptAll input:password[id="privateKeyPassword"]').val(); if (privateKeyPassword !== '' ) { @@ -202,7 +202,7 @@ $(document).ready(function(){ $('#decryptAll button:button[name="submitDecryptAll"]').attr("disabled", "true"); } }); - + var uploadparms = { done: function(e, data) { avatarResponseHandler(data.result); @@ -261,8 +261,9 @@ OC.Encryption = { OC.Encryption.msg={ startDecrypting:function(selector){ + var spinner = ''; $(selector) - .html( t('files_encryption', 'Decrypting files... Please wait, this can take some time.') ) + .html( t('files_encryption', 'Decrypting files... Please wait, this can take some time.') + ' ' + spinner ) .removeClass('success') .removeClass('error') .stop(true, true) @@ -273,8 +274,7 @@ OC.Encryption.msg={ $(selector).html( data.data.message ) .addClass('success') .stop(true, true) - .delay(3000) - .fadeOut(900); + .delay(3000); }else{ $(selector).html( data.data.message ).addClass('error'); } From f3e2a63712e3306c5bb1cad1921da4a3ff542474 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 20 Nov 2013 12:34:23 +0100 Subject: [PATCH 19/84] check if it is a cached file or a version to resolve the correct path to the file key --- apps/files_encryption/lib/util.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 4f27c2b00f..b208a808ba 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -472,7 +472,11 @@ class Util { */ public function isEncryptedPath($path) { - $relPath = Helper::stripUserFilesPath($path); + $relPath = Helper::getPathToRealFile($path); + + if ($relPath === false) { + $relPath = Helper::stripUserFilesPath($path); + } $fileKey = Keymanager::getFileKey($this->view, $relPath); From 726a202cdb9471a0bc4c6c27e59469af1e39a32e Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 20 Nov 2013 14:33:59 +0100 Subject: [PATCH 20/84] Fixed getLocalFile() condition for x-send-file Until now, addSendfileHeader() was called even when no x-send-file headers were set. Even though the method itself doesn't do anything, a call to getLocalFile() was done and would trigger a full download when using external storage. Additionally, the storage resolution code is wrong and always returns the local storage of the root filesystem, which caused the code to be run anyway. This commit fixes both issues. --- lib/private/files.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/private/files.php b/lib/private/files.php index 8b4d5c59ae..e76dd8644c 100644 --- a/lib/private/files.php +++ b/lib/private/files.php @@ -131,9 +131,11 @@ class OC_Files { if ($filesize > -1) { header("Content-Length: ".$filesize); } - list($storage) = \OC\Files\Filesystem::resolvePath($filename); - if ($storage instanceof \OC\Files\Storage\Local) { - self::addSendfileHeader(\OC\Files\Filesystem::getLocalFile($filename)); + if ($xsendfile) { + list($storage) = \OC\Files\Filesystem::resolvePath(\OC\Files\Filesystem::getView()->getAbsolutePath($filename)); + if ($storage instanceof \OC\Files\Storage\Local) { + self::addSendfileHeader(\OC\Files\Filesystem::getLocalFile($filename)); + } } } } elseif ($zip or !\OC\Files\Filesystem::file_exists($filename)) { From a0d570b4cc22cb344921147a511b071ebce24c22 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 20 Nov 2013 15:25:29 +0100 Subject: [PATCH 21/84] Change default mimetype detection for storage backends to only use filename --- lib/private/files/storage/common.php | 26 ++++++----------------- lib/private/files/storage/commontest.php | 2 +- lib/private/files/storage/local.php | 8 ------- lib/private/files/storage/mappedlocal.php | 8 ------- 4 files changed, 7 insertions(+), 37 deletions(-) diff --git a/lib/private/files/storage/common.php b/lib/private/files/storage/common.php index 3943d667c3..f99bbc9ae5 100644 --- a/lib/private/files/storage/common.php +++ b/lib/private/files/storage/common.php @@ -142,7 +142,7 @@ abstract class Common implements \OC\Files\Storage\Storage { return false; } else { $directoryHandle = $this->opendir($directory); - if(is_resource($directoryHandle)) { + if (is_resource($directoryHandle)) { while (($contents = readdir($directoryHandle)) !== false) { if (!\OC\Files\Filesystem::isIgnoredDir($contents)) { $path = $directory . '/' . $contents; @@ -165,27 +165,13 @@ abstract class Common implements \OC\Files\Storage\Storage { } public function getMimeType($path) { - if (!$this->file_exists($path)) { - return false; - } if ($this->is_dir($path)) { return 'httpd/unix-directory'; - } - $source = $this->fopen($path, 'r'); - if (!$source) { + } elseif ($this->file_exists($path)) { + return \OC_Helper::getFileNameMimeType($path); + } else { return false; } - $head = fread($source, 8192); //8kb should suffice to determine a mimetype - if ($pos = strrpos($path, '.')) { - $extension = substr($path, $pos); - } else { - $extension = ''; - } - $tmpFile = \OC_Helper::tmpFile($extension); - file_put_contents($tmpFile, $head); - $mime = \OC_Helper::getMimeType($tmpFile); - unlink($tmpFile); - return $mime; } public function hash($type, $path, $raw = false) { @@ -227,7 +213,7 @@ abstract class Common implements \OC\Files\Storage\Storage { private function addLocalFolder($path, $target) { $dh = $this->opendir($path); - if(is_resource($dh)) { + if (is_resource($dh)) { while (($file = readdir($dh)) !== false) { if ($file !== '.' and $file !== '..') { if ($this->is_dir($path . '/' . $file)) { @@ -298,7 +284,7 @@ abstract class Common implements \OC\Files\Storage\Storage { return $this->watcher; } - public function getStorageCache(){ + public function getStorageCache() { if (!isset($this->storageCache)) { $this->storageCache = new \OC\Files\Cache\Storage($this); } diff --git a/lib/private/files/storage/commontest.php b/lib/private/files/storage/commontest.php index c3f1eb3195..2394b14a82 100644 --- a/lib/private/files/storage/commontest.php +++ b/lib/private/files/storage/commontest.php @@ -54,7 +54,7 @@ class CommonTest extends \OC\Files\Storage\Common{ return $this->storage->stat($path); } public function filetype($path) { - return $this->storage->filetype($path); + return @$this->storage->filetype($path); } public function isReadable($path) { return $this->storage->isReadable($path); diff --git a/lib/private/files/storage/local.php b/lib/private/files/storage/local.php index 5209fabc30..02e8df4af4 100644 --- a/lib/private/files/storage/local.php +++ b/lib/private/files/storage/local.php @@ -203,14 +203,6 @@ if (\OC_Util::runningOnWindows()) { return $return; } - public function getMimeType($path) { - if ($this->isReadable($path)) { - return \OC_Helper::getMimeType($this->datadir . $path); - } else { - return false; - } - } - private function delTree($dir) { $dirRelative = $dir; $dir = $this->datadir . $dir; diff --git a/lib/private/files/storage/mappedlocal.php b/lib/private/files/storage/mappedlocal.php index ba5ac4191c..6c37d44586 100644 --- a/lib/private/files/storage/mappedlocal.php +++ b/lib/private/files/storage/mappedlocal.php @@ -210,14 +210,6 @@ class MappedLocal extends \OC\Files\Storage\Common{ return $return; } - public function getMimeType($path) { - if($this->isReadable($path)) { - return \OC_Helper::getMimeType($this->buildPath($path)); - }else{ - return false; - } - } - private function delTree($dir, $isLogicPath=true) { $dirRelative=$dir; if ($isLogicPath) { From 51a8172868c1d6763041b12bfaa9cd2f1cbe8350 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Wed, 20 Nov 2013 16:14:08 +0100 Subject: [PATCH 22/84] always get the right node for the given file path --- lib/private/connector/sabre/filesplugin.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/private/connector/sabre/filesplugin.php b/lib/private/connector/sabre/filesplugin.php index 89444cb8d1..1c80ebe804 100644 --- a/lib/private/connector/sabre/filesplugin.php +++ b/lib/private/connector/sabre/filesplugin.php @@ -78,6 +78,8 @@ class OC_Connector_Sabre_FilesPlugin extends Sabre_DAV_ServerPlugin * @throws Sabre_DAV_Exception_BadRequest */ public function sendFileIdHeader($filePath, Sabre_DAV_INode $node = null) { + // we get the node for the given $filePath here because in case of afterCreateFile $node is the parent folder + $node = $this->server->tree->getNodeForPath($filePath); if ($node instanceof OC_Connector_Sabre_Node) { $fileId = $node->getFileId(); if (!is_null($fileId)) { From fe440248683fb74d758dd257272efcffb7e3c325 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 20 Nov 2013 16:20:21 +0100 Subject: [PATCH 23/84] Fix for extstorage + encryption where unencrypted size is not kept Fix for external storage with encryption where the unencrypted size is first written in the DB, then set back to zero, causing performance issue because the file needs to be reopened every time to find out the unencrypted size (and potentially needs a full redownload) --- apps/files_encryption/lib/proxy.php | 3 +++ apps/files_encryption/lib/stream.php | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index 54c3b9caa1..a8c74bd9dd 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -349,7 +349,10 @@ class Proxy extends \OC_FileProxy { $fileInfo = false; // get file info from database/cache if not .part file if (!Helper::isPartialFilePath($path)) { + $proxyState = \OC_FileProxy::$enabled; + \OC_FileProxy::$enabled = false; $fileInfo = $view->getFileInfo($path); + \OC_FileProxy::$enabled = $proxyState; } // if file is encrypted return real file size diff --git a/apps/files_encryption/lib/stream.php b/apps/files_encryption/lib/stream.php index 1738955d1a..1f4f14d7fe 100644 --- a/apps/files_encryption/lib/stream.php +++ b/apps/files_encryption/lib/stream.php @@ -491,7 +491,8 @@ class Stream { if ( $this->meta['mode'] !== 'r' && $this->meta['mode'] !== 'rb' && - $this->size > 0 + $this->size > 0 && + $this->unencryptedSize > 0 ) { // only write keyfiles if it was a new file From e26500045fd9f0f102398fabd5e44497618f8b03 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 20 Nov 2013 18:59:02 +0100 Subject: [PATCH 24/84] Fixed move operation to pass the whole URL as expected The MOVE and COPY spec expect the "Destination" header to receive the full URL, not only the root. Fixes #5942 --- apps/files_external/lib/webdav.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files_external/lib/webdav.php b/apps/files_external/lib/webdav.php index 66920fc9f6..9ee7f55528 100644 --- a/apps/files_external/lib/webdav.php +++ b/apps/files_external/lib/webdav.php @@ -268,7 +268,7 @@ class DAV extends \OC\Files\Storage\Common{ public function rename($path1, $path2) { $this->init(); $path1=$this->cleanPath($path1); - $path2=$this->root.$this->cleanPath($path2); + $path2=$this->createBaseUri().$this->cleanPath($path2); try { $this->client->request('MOVE', $path1, null, array('Destination'=>$path2)); return true; @@ -280,7 +280,7 @@ class DAV extends \OC\Files\Storage\Common{ public function copy($path1, $path2) { $this->init(); $path1=$this->cleanPath($path1); - $path2=$this->root.$this->cleanPath($path2); + $path2=$this->createBaseUri().$this->cleanPath($path2); try { $this->client->request('COPY', $path1, null, array('Destination'=>$path2)); return true; From c2ccf4a6b3398ffe137f9eafdda55cc695ad0722 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Wed, 20 Nov 2013 19:30:30 +0100 Subject: [PATCH 25/84] beta 5 is here --- version.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version.php b/version.php index 9b04bd244f..2e3b8f1f90 100644 --- a/version.php +++ b/version.php @@ -1,10 +1,10 @@ Date: Thu, 21 Nov 2013 09:58:35 +0100 Subject: [PATCH 26/84] unify translation string - less work for the translators --- core/templates/altmail.php | 3 ++- core/templates/mail.php | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/core/templates/altmail.php b/core/templates/altmail.php index 00b67bee45..7776919ea3 100644 --- a/core/templates/altmail.php +++ b/core/templates/altmail.php @@ -1,7 +1,8 @@ t("Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n", array($_['user_displayname'], $_['filename'], $_['link']))); if ( isset($_['expiration']) ) { - print_unescaped($l->t("The share will expire on %s.\n\n", array($_['expiration']))); + print_unescaped($l->t("The share will expire on %s.", array($_['expiration']))); + print_unescaped('\n\n'); } p($l->t("Cheers!")); ?> diff --git a/core/templates/mail.php b/core/templates/mail.php index 40092f5491..4fa54aa528 100644 --- a/core/templates/mail.php +++ b/core/templates/mail.php @@ -14,7 +14,8 @@ t('Hey there,

just letting you know that %s shared »%s« with you.
View it!

', array($_['user_displayname'], $_['filename'], $_['link']))); if ( isset($_['expiration']) ) { - print_unescaped($l->t("The share will expire on %s.

", array($_['expiration']))); + p($l->t("The share will expire on %s.", array($_['expiration']))); + print_unescaped('

'); } p($l->t('Cheers!')); ?> From f2fe47bc2128ac98a8cc53a2b89f98223fa2f77e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 21 Nov 2013 09:59:21 +0100 Subject: [PATCH 27/84] fixing spelling and restructure sentence --- lib/private/files.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/files.php b/lib/private/files.php index e76dd8644c..8b8ff81ec5 100644 --- a/lib/private/files.php +++ b/lib/private/files.php @@ -253,7 +253,7 @@ class OC_Files { header("HTTP/1.0 409 Conflict"); OC_Template::printErrorPage( $l->t('Selected files too large to generate zip file.'), - $l->t('Download the files in smaller chunks, seperately or kindly ask your administrator.') + $l->t('Please download the files separately in smaller chunks or kindly ask your administrator.') .'
' . $l->t('Back to Files') . '' ); From dd5e1092c7960ba9e919332eb8991fb7b7a171f6 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 21 Nov 2013 11:20:31 +0100 Subject: [PATCH 28/84] LDAP Wizard: add objectclass for group detection in Zimbra --- apps/user_ldap/lib/wizard.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php index fb6aca9e96..9286af46be 100644 --- a/apps/user_ldap/lib/wizard.php +++ b/apps/user_ldap/lib/wizard.php @@ -215,7 +215,7 @@ class Wizard extends LDAPUtility { throw new \Exception('Could not connect to LDAP'); } - $obclasses = array('posixGroup', 'group', '*'); + $obclasses = array('posixGroup', 'group', 'zimbraDistributionList', '*'); $this->determineFeature($obclasses, 'cn', $dbkey, $confkey); if($testMemberOf) { From c9646ddc4c23faebcd729b6d7061dbadaf475a10 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 21 Nov 2013 12:02:09 +0100 Subject: [PATCH 29/84] fix undefined index errors if public share view --- apps/files/templates/index.php | 5 +++-- apps/files_sharing/public.php | 6 ++++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 6dd28532cc..bf57790684 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -25,7 +25,7 @@ data-url="" /> - + >
@@ -111,8 +111,9 @@ + - +assign('breadcrumb', $breadcrumb); $breadcrumbNav->assign('baseURL', OCP\Util::linkToPublic('files') . $urlLinkIdentifiers . '&path='); $maxUploadFilesize=OCP\Util::maxUploadFilesize($path); + $fileHeader = (!isset($files) or count($files) > 0); + $emptyContent = ($allowPublicUploadEnabled and !$fileHeader); $folder = new OCP\Template('files', 'index', ''); $folder->assign('fileList', $list->fetchPage()); $folder->assign('breadcrumb', $breadcrumbNav->fetchPage()); @@ -234,6 +236,10 @@ if (isset($path)) { $folder->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize)); $folder->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); $folder->assign('usedSpacePercent', 0); + $folder->assign('fileHeader', $fileHeader); + $folder->assign('disableSharing', true); + $folder->assign('emptyContent', $emptyContent); + $folder->assign('ajaxLoad', false); $tmpl->assign('folder', $folder->fetchPage()); $maxInputFileSize = OCP\Config::getSystemValue('maxZipInputSize', OCP\Util::computerFileSize('800 MB')); $allowZip = OCP\Config::getSystemValue('allowZipDownload', true) From 356eef07398f8829a2558eee809599be60441b59 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 6 Nov 2013 11:57:04 +0100 Subject: [PATCH 30/84] Quota storage wrapper is now used for all users in sharing mode When accessing a shared folder, the folder's owner appears as mountpoint but wasn't wrapped by a quota storage wrapper. This fix makes sure that all home storages are wrapped by a quota storage wrapper, if applicable, to make sure quotas are respected when uploading into shared folders. --- apps/files/tests/ajax_rename.php | 15 ++++++++++ lib/private/util.php | 33 +++++++++++++++------ tests/lib/util.php | 49 ++++++++++++++++++++++++++++++++ 3 files changed, 88 insertions(+), 9 deletions(-) diff --git a/apps/files/tests/ajax_rename.php b/apps/files/tests/ajax_rename.php index e654255c40..3735b0a49c 100644 --- a/apps/files/tests/ajax_rename.php +++ b/apps/files/tests/ajax_rename.php @@ -22,9 +22,18 @@ */ class Test_OC_Files_App_Rename extends \PHPUnit_Framework_TestCase { + private static $user; function setUp() { // mock OC_L10n + if (!self::$user) { + self::$user = uniqid(); + } + \OC_User::createUser(self::$user, 'password'); + \OC_User::setUserId(self::$user); + + \OC\Files\Filesystem::init(self::$user, '/' . self::$user . '/files'); + $l10nMock = $this->getMock('\OC_L10N', array('t'), array(), '', false); $l10nMock->expects($this->any()) ->method('t') @@ -39,6 +48,12 @@ class Test_OC_Files_App_Rename extends \PHPUnit_Framework_TestCase { $this->files = new \OCA\Files\App($viewMock, $l10nMock); } + function tearDown() { + $result = \OC_User::deleteUser(self::$user); + $this->assertTrue($result); + \OC\Files\Filesystem::tearDown(); + } + /** * @brief test rename of file/folder named "Shared" */ diff --git a/lib/private/util.php b/lib/private/util.php index 176eb4bc36..88f1f197b5 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -53,16 +53,31 @@ class OC_Util { //if we aren't logged in, there is no use to set up the filesystem if( $user != "" ) { - $quota = self::getUserQuota($user); - if ($quota !== \OC\Files\SPACE_UNLIMITED) { - \OC\Files\Filesystem::addStorageWrapper(function($mountPoint, $storage) use ($quota, $user) { - if ($mountPoint === '/' . $user . '/'){ - return new \OC\Files\Storage\Wrapper\Quota(array('storage' => $storage, 'quota' => $quota)); - } else { - return $storage; + \OC\Files\Filesystem::addStorageWrapper(function($mountPoint, $storage){ + // set up quota for home storages, even for other users + // which can happen when using sharing + + if (strlen($mountPoint) > 1) { + // the user name will be extracted from the mountpoint + // with the format '/username/' (no suffix) + $user = null; + // find second separator + $nextSepPos = strpos($mountPoint, '/', 1); + // next separator is the last one, format matches + if ($nextSepPos === strlen($mountPoint) - 1) { + $user = substr($mountPoint, 1, $nextSepPos - 1); } - }); - } + if ($user) { + $quota = OC_Util::getUserQuota($user); + if ($quota !== \OC\Files\SPACE_UNLIMITED) { + return new \OC\Files\Storage\Wrapper\Quota(array('storage' => $storage, 'quota' => $quota)); + } + } + } + + return $storage; + }); + $userDir = '/'.$user.'/files'; $userRoot = OC_User::getHome($user); $userDirectory = $userRoot . '/files'; diff --git a/tests/lib/util.php b/tests/lib/util.php index d607a3e772..852caaeccc 100644 --- a/tests/lib/util.php +++ b/tests/lib/util.php @@ -93,6 +93,55 @@ class Test_Util extends PHPUnit_Framework_TestCase { $this->assertStringStartsWith('oc', OC_Util::getInstanceId()); } + /** + * Tests that the home storage is not wrapped when no quota exists. + */ + function testHomeStorageWrapperWithoutQuota() { + $user1 = uniqid(); + \OC_User::createUser($user1, 'test'); + OC_Preferences::setValue($user1, 'files', 'quota', 'none'); + \OC_User::setUserId($user1); + + \OC_Util::setupFS($user1); + + $userMount = \OC\Files\Filesystem::getMountManager()->find('/' . $user1 . '/'); + $this->assertNotNull($userMount); + $this->assertNotInstanceOf('\OC\Files\Storage\Wrapper\Quota', $userMount->getStorage()); + + // clean up + \OC_User::setUserId(''); + \OC_User::deleteUser($user1); + OC_Preferences::deleteUser($user1); + \OC_Util::tearDownFS(); + } + + /** + * Tests that the home storage is not wrapped when no quota exists. + */ + function testHomeStorageWrapperWithQuota() { + $user1 = uniqid(); + \OC_User::createUser($user1, 'test'); + OC_Preferences::setValue($user1, 'files', 'quota', '1024'); + \OC_User::setUserId($user1); + + \OC_Util::setupFS($user1); + + $userMount = \OC\Files\Filesystem::getMountManager()->find('/' . $user1 . '/'); + $this->assertNotNull($userMount); + $this->assertInstanceOf('\OC\Files\Storage\Wrapper\Quota', $userMount->getStorage()); + + // ensure that root wasn't wrapped + $rootMount = \OC\Files\Filesystem::getMountManager()->find('/'); + $this->assertNotNull($rootMount); + $this->assertNotInstanceOf('\OC\Files\Storage\Wrapper\Quota', $rootMount->getStorage()); + + // clean up + \OC_User::setUserId(''); + \OC_User::deleteUser($user1); + OC_Preferences::deleteUser($user1); + \OC_Util::tearDownFS(); + } + /** * @dataProvider baseNameProvider */ From 9d16353e094a3567eb09f9626d8768890fe57cbc Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 21 Nov 2013 12:06:35 +0100 Subject: [PATCH 31/84] disable trahs in files_sharing/public.php --- apps/files/templates/index.php | 2 +- apps/files_sharing/public.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index bf57790684..4f8623573c 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -25,7 +25,7 @@ data-url="" />
- + >
diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 99b74da6a1..3c902ea9a3 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -238,6 +238,7 @@ if (isset($path)) { $folder->assign('usedSpacePercent', 0); $folder->assign('fileHeader', $fileHeader); $folder->assign('disableSharing', true); + $folder->assign('trash', false); $folder->assign('emptyContent', $emptyContent); $folder->assign('ajaxLoad', false); $tmpl->assign('folder', $folder->fetchPage()); From 69e8e7dbd5039652cceb078025248c308ffd0d55 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 21 Nov 2013 12:17:47 +0100 Subject: [PATCH 32/84] Now using the "Home" storage detection approach for quota To find out whether to apply a quota, we now try and detect whether the storage to wrap is a "Home" storage. --- lib/private/files/storage/home.php | 17 +++++++++++++++++ lib/private/util.php | 20 +++++--------------- 2 files changed, 22 insertions(+), 15 deletions(-) diff --git a/lib/private/files/storage/home.php b/lib/private/files/storage/home.php index b4ceb8f4f9..1c2a682f19 100644 --- a/lib/private/files/storage/home.php +++ b/lib/private/files/storage/home.php @@ -22,6 +22,12 @@ class Home extends Local { */ protected $user; + /** + * @brief Construct a Home storage instance + * @param array $arguments array with "user" containing the + * storage owner and "legacy" containing "true" if the storage is + * a legacy storage with "local::" URL instead of the new "home::" one. + */ public function __construct($arguments) { $this->user = $arguments['user']; $datadir = $this->user->getHome(); @@ -40,10 +46,21 @@ class Home extends Local { return $this->id; } + /** + * @return \OC\Files\Cache\HomeCache + */ public function getCache($path = '') { if (!isset($this->cache)) { $this->cache = new \OC\Files\Cache\HomeCache($this); } return $this->cache; } + + /** + * @brief Returns the owner of this home storage + * @return \OC\User\User owner of this home storage + */ + public function getUser() { + return $this->user; + } } diff --git a/lib/private/util.php b/lib/private/util.php index 88f1f197b5..959d36a89e 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -57,21 +57,11 @@ class OC_Util { // set up quota for home storages, even for other users // which can happen when using sharing - if (strlen($mountPoint) > 1) { - // the user name will be extracted from the mountpoint - // with the format '/username/' (no suffix) - $user = null; - // find second separator - $nextSepPos = strpos($mountPoint, '/', 1); - // next separator is the last one, format matches - if ($nextSepPos === strlen($mountPoint) - 1) { - $user = substr($mountPoint, 1, $nextSepPos - 1); - } - if ($user) { - $quota = OC_Util::getUserQuota($user); - if ($quota !== \OC\Files\SPACE_UNLIMITED) { - return new \OC\Files\Storage\Wrapper\Quota(array('storage' => $storage, 'quota' => $quota)); - } + if ($storage instanceof \OC\Files\Storage\Home) { + $user = $storage->getUser()->getUID(); + $quota = OC_Util::getUserQuota($user); + if ($quota !== \OC\Files\SPACE_UNLIMITED) { + return new \OC\Files\Storage\Wrapper\Quota(array('storage' => $storage, 'quota' => $quota)); } } From cd1cf58875ffacf427420d6dbe94d8718e4075e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 21 Nov 2013 14:44:25 +0100 Subject: [PATCH 33/84] Fixing the warning notifications --- lib/private/util.php | 2 +- settings/templates/admin.php | 10 +++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/lib/private/util.php b/lib/private/util.php index 115deaceb5..695d641b5b 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -356,7 +356,7 @@ class OC_Util { if(!OC_Util::isSetLocaleWorking()) { $errors[] = array( 'error' => 'Setting locale to en_US.UTF-8/fr_FR.UTF-8/es_ES.UTF-8/de_DE.UTF-8/ru_RU.UTF-8/pt_BR.UTF-8/it_IT.UTF-8/ja_JP.UTF-8/zh_CN.UTF-8 failed', - 'hint' => 'Please install the locale on your system and restart your webserver.' + 'hint' => 'Please install one of theses locales on your system and restart your webserver.' ); } diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 66bcfa21c3..f655a14be8 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -67,7 +67,15 @@ if (!$_['isLocaleWorking']) { t('System locale can\'t be set 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.', array($locales, $locales))); + p($l->t('System locale can not be set to a one which supports UTF-8.')); + ?> +
+ t('This means that there might be problems with certain characters in file names.')); + ?> +
+ t('We strongly suggest to install the required packages on your system to support one of the following locales: %s.', array($locales))); ?>
From 14ad1ebf533eb211426ad24b862538059b3bfefa Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 21 Nov 2013 14:45:24 +0100 Subject: [PATCH 34/84] Added min width to files table Having a too small widths for the files table doesn't make sense as it overlaps file actions with the files themselves and make them unclickable, especially when viewed on mobile phone. The compromise that this fix introduces is to have a minimum width that will trigger horizontal scrolling, which will at least make it possible to click files on mobile phones. --- apps/files/css/files.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 5ad9e389c0..e96fa64815 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -65,6 +65,9 @@ top: 44px; width: 100%; } +#filestable, #controls { + min-width: 680px; +} #filestable tbody tr { background-color:#fff; height:2.5em; } #filestable tbody tr:hover, tbody tr:active { background-color: rgb(240,240,240); From 5d9731cef28d9c93e81216d31299b2b68fbc8758 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 21 Nov 2013 10:05:34 -0500 Subject: [PATCH 35/84] [tx-robot] updated from transifex --- apps/files/l10n/de_DE.php | 12 +- apps/files/l10n/pl.php | 14 ++ apps/files/l10n/ru_RU.php | 4 +- apps/files/l10n/sl.php | 18 ++- apps/files_encryption/l10n/el.php | 12 ++ apps/files_encryption/l10n/pl.php | 1 + apps/files_encryption/l10n/sl.php | 43 +++--- apps/files_external/l10n/ar.php | 1 + apps/files_external/l10n/ru_RU.php | 6 + apps/files_trashbin/l10n/ru_RU.php | 3 +- apps/user_ldap/l10n/ca.php | 3 + apps/user_ldap/l10n/de.php | 3 + apps/user_ldap/l10n/de_DE.php | 3 + apps/user_ldap/l10n/en_GB.php | 3 + apps/user_ldap/l10n/es.php | 3 + apps/user_ldap/l10n/et_EE.php | 3 + apps/user_ldap/l10n/fr.php | 3 + apps/user_ldap/l10n/gl.php | 3 + apps/user_ldap/l10n/it.php | 3 + apps/user_ldap/l10n/nl.php | 3 + apps/user_ldap/l10n/pt_BR.php | 3 + apps/user_ldap/l10n/ru.php | 3 + apps/user_ldap/l10n/sl.php | 70 +++++++--- apps/user_ldap/l10n/tr.php | 3 + core/l10n/ca.php | 2 - core/l10n/cs_CZ.php | 2 - core/l10n/da.php | 2 - core/l10n/de.php | 4 +- core/l10n/de_DE.php | 26 ++-- core/l10n/en_GB.php | 2 - core/l10n/es.php | 2 - core/l10n/et_EE.php | 2 - core/l10n/fi_FI.php | 2 - core/l10n/fr.php | 2 - core/l10n/gl.php | 2 - core/l10n/hu_HU.php | 2 - core/l10n/it.php | 2 - core/l10n/ja_JP.php | 2 - core/l10n/lt_LT.php | 2 - core/l10n/mk.php | 1 - core/l10n/nl.php | 2 - core/l10n/pl.php | 7 +- core/l10n/pt_BR.php | 2 - core/l10n/ru.php | 6 +- core/l10n/ru_RU.php | 1 + core/l10n/sk_SK.php | 2 - core/l10n/sl.php | 65 +++++++-- core/l10n/sv.php | 2 - core/l10n/tr.php | 2 - core/l10n/zh_TW.php | 2 - l10n/ach/core.po | 81 +++++------ l10n/ach/files.po | 70 +++++----- l10n/ach/lib.po | 64 ++++----- l10n/ady/core.po | 81 +++++------ l10n/ady/files.po | 70 +++++----- l10n/ady/lib.po | 64 ++++----- l10n/af/core.po | 81 +++++------ l10n/af/files.po | 70 +++++----- l10n/af/lib.po | 30 ++-- l10n/af_ZA/core.po | 79 +++++------ l10n/af_ZA/files.po | 70 +++++----- l10n/af_ZA/lib.po | 30 ++-- l10n/ar/core.po | 79 +++++------ l10n/ar/files.po | 28 ++-- l10n/ar/files_external.po | 14 +- l10n/ar/files_trashbin.po | 8 +- l10n/ar/lib.po | 30 ++-- l10n/ar/settings.po | 4 +- l10n/ar/user_ldap.po | 4 +- l10n/be/core.po | 81 +++++------ l10n/be/files.po | 70 +++++----- l10n/be/lib.po | 64 ++++----- l10n/bg_BG/core.po | 79 +++++------ l10n/bg_BG/files.po | 28 ++-- l10n/bg_BG/files_external.po | 12 +- l10n/bg_BG/files_trashbin.po | 8 +- l10n/bg_BG/lib.po | 30 ++-- l10n/bg_BG/settings.po | 4 +- l10n/bg_BG/user_ldap.po | 4 +- l10n/bn_BD/core.po | 79 +++++------ l10n/bn_BD/files.po | 28 ++-- l10n/bn_BD/files_external.po | 12 +- l10n/bn_BD/files_trashbin.po | 8 +- l10n/bn_BD/lib.po | 30 ++-- l10n/bn_BD/settings.po | 4 +- l10n/bn_BD/user_ldap.po | 4 +- l10n/bs/core.po | 81 +++++------ l10n/bs/files.po | 28 ++-- l10n/bs/lib.po | 64 ++++----- l10n/bs/user_ldap.po | 4 +- l10n/ca/core.po | 83 ++++++------ l10n/ca/files.po | 30 ++-- l10n/ca/files_external.po | 12 +- l10n/ca/files_trashbin.po | 8 +- l10n/ca/lib.po | 32 ++--- l10n/ca/settings.po | 4 +- l10n/ca/user_ldap.po | 14 +- l10n/cs_CZ/core.po | 81 +++++------ l10n/cs_CZ/files.po | 20 +-- l10n/cs_CZ/files_external.po | 12 +- l10n/cs_CZ/files_trashbin.po | 8 +- l10n/cs_CZ/lib.po | 32 ++--- l10n/cs_CZ/settings.po | 4 +- l10n/cs_CZ/user_ldap.po | 4 +- l10n/cy_GB/core.po | 79 +++++------ l10n/cy_GB/files.po | 28 ++-- l10n/cy_GB/files_external.po | 12 +- l10n/cy_GB/files_trashbin.po | 8 +- l10n/cy_GB/lib.po | 30 ++-- l10n/cy_GB/settings.po | 4 +- l10n/cy_GB/user_ldap.po | 4 +- l10n/da/core.po | 83 ++++++------ l10n/da/files.po | 28 ++-- l10n/da/files_external.po | 12 +- l10n/da/files_trashbin.po | 8 +- l10n/da/lib.po | 32 ++--- l10n/da/settings.po | 4 +- l10n/da/user_ldap.po | 4 +- l10n/de/core.po | 83 ++++++------ l10n/de/files.po | 30 ++-- l10n/de/files_external.po | 12 +- l10n/de/files_trashbin.po | 8 +- l10n/de/lib.po | 32 ++--- l10n/de/settings.po | 4 +- l10n/de/user_ldap.po | 12 +- l10n/de_AT/core.po | 81 +++++------ l10n/de_AT/files.po | 70 +++++----- l10n/de_AT/lib.po | 64 ++++----- l10n/de_CH/core.po | 81 +++++------ l10n/de_CH/files.po | 28 ++-- l10n/de_CH/files_external.po | 12 +- l10n/de_CH/files_trashbin.po | 8 +- l10n/de_CH/lib.po | 32 ++--- l10n/de_CH/settings.po | 4 +- l10n/de_CH/user_ldap.po | 4 +- l10n/de_DE/core.po | 105 +++++++------- l10n/de_DE/files.po | 42 +++--- l10n/de_DE/files_external.po | 12 +- l10n/de_DE/files_trashbin.po | 8 +- l10n/de_DE/lib.po | 32 ++--- l10n/de_DE/settings.po | 4 +- l10n/de_DE/user_ldap.po | 12 +- l10n/el/core.po | 79 +++++------ l10n/el/files.po | 28 ++-- l10n/el/files_encryption.po | 31 +++-- l10n/el/files_external.po | 12 +- l10n/el/files_trashbin.po | 8 +- l10n/el/lib.po | 32 ++--- l10n/el/settings.po | 4 +- l10n/el/user_ldap.po | 4 +- l10n/en@pirate/core.po | 79 +++++------ l10n/en@pirate/files.po | 70 +++++----- l10n/en@pirate/lib.po | 64 ++++----- l10n/en_GB/core.po | 83 ++++++------ l10n/en_GB/files.po | 30 ++-- l10n/en_GB/files_external.po | 12 +- l10n/en_GB/files_trashbin.po | 8 +- l10n/en_GB/lib.po | 32 ++--- l10n/en_GB/settings.po | 4 +- l10n/en_GB/user_ldap.po | 12 +- l10n/eo/core.po | 79 +++++------ l10n/eo/files.po | 30 ++-- l10n/eo/files_external.po | 12 +- l10n/eo/files_trashbin.po | 6 +- l10n/eo/lib.po | 30 ++-- l10n/eo/settings.po | 4 +- l10n/eo/user_ldap.po | 4 +- l10n/es/core.po | 81 +++++------ l10n/es/files.po | 30 ++-- l10n/es/files_external.po | 16 +-- l10n/es/files_trashbin.po | 10 +- l10n/es/lib.po | 32 ++--- l10n/es/settings.po | 4 +- l10n/es/user_ldap.po | 12 +- l10n/es_AR/core.po | 79 +++++------ l10n/es_AR/files.po | 28 ++-- l10n/es_AR/files_external.po | 12 +- l10n/es_AR/files_trashbin.po | 8 +- l10n/es_AR/lib.po | 34 ++--- l10n/es_AR/settings.po | 4 +- l10n/es_AR/user_ldap.po | 4 +- l10n/es_MX/core.po | 81 +++++------ l10n/es_MX/files.po | 70 +++++----- l10n/es_MX/lib.po | 64 ++++----- l10n/et_EE/core.po | 83 ++++++------ l10n/et_EE/files.po | 30 ++-- l10n/et_EE/files_external.po | 12 +- l10n/et_EE/files_trashbin.po | 8 +- l10n/et_EE/lib.po | 32 ++--- l10n/et_EE/settings.po | 4 +- l10n/et_EE/user_ldap.po | 12 +- l10n/eu/core.po | 79 +++++------ l10n/eu/files.po | 28 ++-- l10n/eu/files_external.po | 12 +- l10n/eu/files_trashbin.po | 8 +- l10n/eu/lib.po | 32 ++--- l10n/eu/settings.po | 4 +- l10n/eu/user_ldap.po | 4 +- l10n/fa/core.po | 79 +++++------ l10n/fa/files.po | 28 ++-- l10n/fa/files_external.po | 12 +- l10n/fa/files_trashbin.po | 8 +- l10n/fa/lib.po | 30 ++-- l10n/fa/settings.po | 4 +- l10n/fa/user_ldap.po | 4 +- l10n/fi_FI/core.po | 81 +++++------ l10n/fi_FI/files.po | 30 ++-- l10n/fi_FI/files_external.po | 12 +- l10n/fi_FI/files_trashbin.po | 8 +- l10n/fi_FI/lib.po | 30 ++-- l10n/fi_FI/settings.po | 4 +- l10n/fi_FI/user_ldap.po | 4 +- l10n/fr/core.po | 81 +++++------ l10n/fr/files.po | 30 ++-- l10n/fr/files_external.po | 12 +- l10n/fr/files_trashbin.po | 8 +- l10n/fr/lib.po | 32 ++--- l10n/fr/settings.po | 4 +- l10n/fr/user_ldap.po | 12 +- l10n/gl/core.po | 81 +++++------ l10n/gl/files.po | 30 ++-- l10n/gl/files_external.po | 12 +- l10n/gl/files_trashbin.po | 8 +- l10n/gl/lib.po | 32 ++--- l10n/gl/settings.po | 4 +- l10n/gl/user_ldap.po | 12 +- l10n/he/core.po | 79 +++++------ l10n/he/files.po | 28 ++-- l10n/he/files_external.po | 12 +- l10n/he/files_trashbin.po | 8 +- l10n/he/lib.po | 30 ++-- l10n/he/settings.po | 4 +- l10n/he/user_ldap.po | 4 +- l10n/hi/core.po | 79 +++++------ l10n/hi/files.po | 28 ++-- l10n/hi/lib.po | 30 ++-- l10n/hi/user_ldap.po | 4 +- l10n/hr/core.po | 79 +++++------ l10n/hr/files.po | 28 ++-- l10n/hr/files_external.po | 12 +- l10n/hr/files_trashbin.po | 8 +- l10n/hr/lib.po | 30 ++-- l10n/hr/settings.po | 4 +- l10n/hr/user_ldap.po | 4 +- l10n/hu_HU/core.po | 83 ++++++------ l10n/hu_HU/files.po | 20 +-- l10n/hu_HU/files_external.po | 12 +- l10n/hu_HU/files_trashbin.po | 8 +- l10n/hu_HU/lib.po | 34 ++--- l10n/hu_HU/settings.po | 4 +- l10n/hu_HU/user_ldap.po | 4 +- l10n/hy/core.po | 81 +++++------ l10n/hy/files.po | 28 ++-- l10n/hy/files_external.po | 10 +- l10n/hy/files_trashbin.po | 8 +- l10n/hy/lib.po | 64 ++++----- l10n/hy/settings.po | 4 +- l10n/hy/user_ldap.po | 4 +- l10n/ia/core.po | 79 +++++------ l10n/ia/files.po | 28 ++-- l10n/ia/files_external.po | 12 +- l10n/ia/files_trashbin.po | 8 +- l10n/ia/lib.po | 30 ++-- l10n/ia/settings.po | 4 +- l10n/ia/user_ldap.po | 4 +- l10n/id/core.po | 79 +++++------ l10n/id/files.po | 28 ++-- l10n/id/files_external.po | 12 +- l10n/id/files_trashbin.po | 8 +- l10n/id/lib.po | 30 ++-- l10n/id/settings.po | 4 +- l10n/id/user_ldap.po | 4 +- l10n/is/core.po | 79 +++++------ l10n/is/files.po | 28 ++-- l10n/is/files_external.po | 12 +- l10n/is/files_trashbin.po | 8 +- l10n/is/lib.po | 30 ++-- l10n/is/settings.po | 4 +- l10n/is/user_ldap.po | 4 +- l10n/it/core.po | 83 ++++++------ l10n/it/files.po | 30 ++-- l10n/it/files_external.po | 12 +- l10n/it/files_trashbin.po | 8 +- l10n/it/lib.po | 32 ++--- l10n/it/settings.po | 4 +- l10n/it/user_ldap.po | 12 +- l10n/ja_JP/core.po | 81 +++++------ l10n/ja_JP/files.po | 20 +-- l10n/ja_JP/files_external.po | 12 +- l10n/ja_JP/files_trashbin.po | 8 +- l10n/ja_JP/lib.po | 34 ++--- l10n/ja_JP/settings.po | 4 +- l10n/ja_JP/user_ldap.po | 4 +- l10n/ka/core.po | 79 +++++------ l10n/ka/files.po | 70 +++++----- l10n/ka/lib.po | 30 ++-- l10n/ka_GE/core.po | 79 +++++------ l10n/ka_GE/files.po | 28 ++-- l10n/ka_GE/files_external.po | 12 +- l10n/ka_GE/files_trashbin.po | 8 +- l10n/ka_GE/lib.po | 30 ++-- l10n/ka_GE/settings.po | 4 +- l10n/ka_GE/user_ldap.po | 4 +- l10n/km/core.po | 81 +++++------ l10n/km/files.po | 70 +++++----- l10n/km/files_external.po | 12 +- l10n/km/files_trashbin.po | 8 +- l10n/km/lib.po | 64 ++++----- l10n/km/settings.po | 4 +- l10n/kn/core.po | 81 +++++------ l10n/kn/files.po | 70 +++++----- l10n/kn/lib.po | 64 ++++----- l10n/ko/core.po | 79 +++++------ l10n/ko/files.po | 28 ++-- l10n/ko/files_external.po | 12 +- l10n/ko/files_trashbin.po | 10 +- l10n/ko/lib.po | 34 ++--- l10n/ko/settings.po | 4 +- l10n/ko/user_ldap.po | 4 +- l10n/ku_IQ/core.po | 79 +++++------ l10n/ku_IQ/files.po | 28 ++-- l10n/ku_IQ/lib.po | 30 ++-- l10n/ku_IQ/user_ldap.po | 4 +- l10n/lb/core.po | 81 +++++------ l10n/lb/files.po | 28 ++-- l10n/lb/files_external.po | 12 +- l10n/lb/files_trashbin.po | 8 +- l10n/lb/lib.po | 26 ++-- l10n/lb/settings.po | 4 +- l10n/lb/user_ldap.po | 4 +- l10n/lt_LT/core.po | 81 +++++------ l10n/lt_LT/files.po | 28 ++-- l10n/lt_LT/files_external.po | 12 +- l10n/lt_LT/files_trashbin.po | 8 +- l10n/lt_LT/lib.po | 32 ++--- l10n/lt_LT/settings.po | 4 +- l10n/lt_LT/user_ldap.po | 4 +- l10n/lv/core.po | 79 +++++------ l10n/lv/files.po | 28 ++-- l10n/lv/files_external.po | 12 +- l10n/lv/files_trashbin.po | 8 +- l10n/lv/lib.po | 32 ++--- l10n/lv/settings.po | 4 +- l10n/lv/user_ldap.po | 4 +- l10n/mk/core.po | 81 +++++------ l10n/mk/files.po | 28 ++-- l10n/mk/files_external.po | 12 +- l10n/mk/files_trashbin.po | 8 +- l10n/mk/lib.po | 30 ++-- l10n/mk/settings.po | 4 +- l10n/mk/user_ldap.po | 4 +- l10n/ml_IN/core.po | 81 +++++------ l10n/ml_IN/files.po | 70 +++++----- l10n/ml_IN/lib.po | 64 ++++----- l10n/ms_MY/core.po | 79 +++++------ l10n/ms_MY/files.po | 28 ++-- l10n/ms_MY/files_external.po | 12 +- l10n/ms_MY/files_trashbin.po | 6 +- l10n/ms_MY/lib.po | 30 ++-- l10n/ms_MY/settings.po | 4 +- l10n/ms_MY/user_ldap.po | 4 +- l10n/my_MM/core.po | 79 +++++------ l10n/my_MM/files.po | 70 +++++----- l10n/my_MM/lib.po | 30 ++-- l10n/nb_NO/core.po | 79 +++++------ l10n/nb_NO/files.po | 28 ++-- l10n/nb_NO/files_external.po | 12 +- l10n/nb_NO/files_trashbin.po | 8 +- l10n/nb_NO/lib.po | 30 ++-- l10n/nb_NO/settings.po | 4 +- l10n/nb_NO/user_ldap.po | 4 +- l10n/nds/core.po | 81 +++++------ l10n/nds/files.po | 70 +++++----- l10n/nds/lib.po | 30 ++-- l10n/ne/core.po | 81 +++++------ l10n/ne/files.po | 70 +++++----- l10n/ne/lib.po | 64 ++++----- l10n/nl/core.po | 83 ++++++------ l10n/nl/files.po | 30 ++-- l10n/nl/files_external.po | 12 +- l10n/nl/files_trashbin.po | 8 +- l10n/nl/lib.po | 32 ++--- l10n/nl/settings.po | 4 +- l10n/nl/user_ldap.po | 12 +- l10n/nn_NO/core.po | 79 +++++------ l10n/nn_NO/files.po | 28 ++-- l10n/nn_NO/files_external.po | 12 +- l10n/nn_NO/files_trashbin.po | 8 +- l10n/nn_NO/lib.po | 30 ++-- l10n/nn_NO/settings.po | 4 +- l10n/nn_NO/user_ldap.po | 4 +- l10n/nqo/core.po | 81 +++++------ l10n/nqo/files.po | 70 +++++----- l10n/nqo/lib.po | 64 ++++----- l10n/oc/core.po | 79 +++++------ l10n/oc/files.po | 28 ++-- l10n/oc/files_external.po | 12 +- l10n/oc/files_trashbin.po | 8 +- l10n/oc/lib.po | 30 ++-- l10n/oc/settings.po | 4 +- l10n/oc/user_ldap.po | 4 +- l10n/pa/core.po | 79 +++++------ l10n/pa/files.po | 70 +++++----- l10n/pa/files_external.po | 12 +- l10n/pa/files_trashbin.po | 8 +- l10n/pa/lib.po | 30 ++-- l10n/pa/settings.po | 4 +- l10n/pl/core.po | 87 ++++++------ l10n/pl/files.po | 56 ++++---- l10n/pl/files_encryption.po | 8 +- l10n/pl/files_external.po | 12 +- l10n/pl/files_trashbin.po | 8 +- l10n/pl/lib.po | 32 ++--- l10n/pl/settings.po | 38 +++--- l10n/pl/user_ldap.po | 4 +- l10n/pt_BR/core.po | 81 +++++------ l10n/pt_BR/files.po | 30 ++-- l10n/pt_BR/files_external.po | 12 +- l10n/pt_BR/files_trashbin.po | 8 +- l10n/pt_BR/lib.po | 32 ++--- l10n/pt_BR/settings.po | 4 +- l10n/pt_BR/user_ldap.po | 12 +- l10n/pt_PT/core.po | 79 +++++------ l10n/pt_PT/files.po | 28 ++-- l10n/pt_PT/files_external.po | 12 +- l10n/pt_PT/files_trashbin.po | 8 +- l10n/pt_PT/lib.po | 26 ++-- l10n/pt_PT/settings.po | 4 +- l10n/pt_PT/user_ldap.po | 4 +- l10n/ro/core.po | 79 +++++------ l10n/ro/files.po | 28 ++-- l10n/ro/files_external.po | 12 +- l10n/ro/files_trashbin.po | 8 +- l10n/ro/lib.po | 30 ++-- l10n/ro/settings.po | 4 +- l10n/ro/user_ldap.po | 4 +- l10n/ru/core.po | 87 ++++++------ l10n/ru/files.po | 30 ++-- l10n/ru/files_external.po | 12 +- l10n/ru/files_trashbin.po | 8 +- l10n/ru/lib.po | 32 ++--- l10n/ru/settings.po | 4 +- l10n/ru/user_ldap.po | 12 +- l10n/ru_RU/core.po | 81 +++++------ l10n/ru_RU/files.po | 32 +++-- l10n/ru_RU/files_external.po | 16 +-- l10n/ru_RU/files_trashbin.po | 10 +- l10n/ru_RU/lib.po | 34 ++--- l10n/ru_RU/settings.po | 8 +- l10n/ru_RU/user_ldap.po | 4 +- l10n/si_LK/core.po | 79 +++++------ l10n/si_LK/files.po | 28 ++-- l10n/si_LK/files_external.po | 12 +- l10n/si_LK/files_trashbin.po | 8 +- l10n/si_LK/lib.po | 30 ++-- l10n/si_LK/settings.po | 4 +- l10n/si_LK/user_ldap.po | 4 +- l10n/sk/core.po | 81 +++++------ l10n/sk/files.po | 70 +++++----- l10n/sk/lib.po | 64 ++++----- l10n/sk_SK/core.po | 83 ++++++------ l10n/sk_SK/files.po | 20 +-- l10n/sk_SK/files_external.po | 4 +- l10n/sk_SK/files_trashbin.po | 8 +- l10n/sk_SK/lib.po | 26 ++-- l10n/sk_SK/settings.po | 4 +- l10n/sk_SK/user_ldap.po | 4 +- l10n/sl/core.po | 203 ++++++++++++++-------------- l10n/sl/files.po | 42 +++--- l10n/sl/files_encryption.po | 57 ++++---- l10n/sl/files_external.po | 12 +- l10n/sl/files_trashbin.po | 4 +- l10n/sl/lib.po | 24 ++-- l10n/sl/settings.po | 48 +++---- l10n/sl/user_ldap.po | 118 ++++++++-------- l10n/sq/core.po | 79 +++++------ l10n/sq/files.po | 28 ++-- l10n/sq/files_external.po | 12 +- l10n/sq/files_trashbin.po | 8 +- l10n/sq/lib.po | 30 ++-- l10n/sq/settings.po | 4 +- l10n/sq/user_ldap.po | 4 +- l10n/sr/core.po | 79 +++++------ l10n/sr/files.po | 28 ++-- l10n/sr/files_external.po | 12 +- l10n/sr/files_trashbin.po | 8 +- l10n/sr/lib.po | 30 ++-- l10n/sr/settings.po | 4 +- l10n/sr/user_ldap.po | 4 +- l10n/sr@latin/core.po | 79 +++++------ l10n/sr@latin/files.po | 28 ++-- l10n/sr@latin/files_external.po | 12 +- l10n/sr@latin/files_trashbin.po | 8 +- l10n/sr@latin/lib.po | 30 ++-- l10n/sr@latin/settings.po | 4 +- l10n/sr@latin/user_ldap.po | 4 +- l10n/sv/core.po | 81 +++++------ l10n/sv/files.po | 28 ++-- l10n/sv/files_external.po | 12 +- l10n/sv/files_trashbin.po | 8 +- l10n/sv/lib.po | 32 ++--- l10n/sv/settings.po | 4 +- l10n/sv/user_ldap.po | 4 +- l10n/sw_KE/core.po | 81 +++++------ l10n/sw_KE/files.po | 70 +++++----- l10n/sw_KE/lib.po | 64 ++++----- l10n/ta_LK/core.po | 79 +++++------ l10n/ta_LK/files.po | 28 ++-- l10n/ta_LK/files_external.po | 12 +- l10n/ta_LK/files_trashbin.po | 8 +- l10n/ta_LK/lib.po | 30 ++-- l10n/ta_LK/settings.po | 4 +- l10n/ta_LK/user_ldap.po | 4 +- l10n/te/core.po | 79 +++++------ l10n/te/files.po | 28 ++-- l10n/te/files_external.po | 12 +- l10n/te/files_trashbin.po | 8 +- l10n/te/lib.po | 30 ++-- l10n/te/settings.po | 4 +- l10n/te/user_ldap.po | 4 +- l10n/templates/core.pot | 77 +++++------ l10n/templates/files.pot | 16 ++- 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 | 20 +-- l10n/templates/private.pot | 20 +-- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 79 +++++------ l10n/th_TH/files.po | 28 ++-- l10n/th_TH/files_external.po | 12 +- l10n/th_TH/files_trashbin.po | 8 +- l10n/th_TH/lib.po | 30 ++-- l10n/th_TH/settings.po | 4 +- l10n/th_TH/user_ldap.po | 4 +- l10n/tr/core.po | 83 ++++++------ l10n/tr/files.po | 30 ++-- l10n/tr/files_external.po | 12 +- l10n/tr/files_trashbin.po | 8 +- l10n/tr/lib.po | 32 ++--- l10n/tr/settings.po | 4 +- l10n/tr/user_ldap.po | 12 +- l10n/tzm/core.po | 79 +++++------ l10n/tzm/files.po | 70 +++++----- l10n/tzm/lib.po | 26 ++-- l10n/ug/core.po | 79 +++++------ l10n/ug/files.po | 28 ++-- l10n/ug/files_external.po | 12 +- l10n/ug/files_trashbin.po | 8 +- l10n/ug/lib.po | 30 ++-- l10n/ug/settings.po | 4 +- l10n/ug/user_ldap.po | 4 +- l10n/uk/core.po | 79 +++++------ l10n/uk/files.po | 30 ++-- l10n/uk/files_external.po | 12 +- l10n/uk/files_trashbin.po | 8 +- l10n/uk/lib.po | 30 ++-- l10n/uk/settings.po | 4 +- l10n/uk/user_ldap.po | 4 +- l10n/ur_PK/core.po | 79 +++++------ l10n/ur_PK/files.po | 70 +++++----- l10n/ur_PK/lib.po | 30 ++-- l10n/uz/core.po | 79 +++++------ l10n/uz/files.po | 28 ++-- l10n/uz/lib.po | 26 ++-- l10n/vi/core.po | 79 +++++------ l10n/vi/files.po | 28 ++-- l10n/vi/files_external.po | 12 +- l10n/vi/files_trashbin.po | 8 +- l10n/vi/lib.po | 30 ++-- l10n/vi/settings.po | 4 +- l10n/vi/user_ldap.po | 4 +- l10n/zh_CN/core.po | 79 +++++------ l10n/zh_CN/files.po | 28 ++-- l10n/zh_CN/files_external.po | 12 +- l10n/zh_CN/files_trashbin.po | 8 +- l10n/zh_CN/lib.po | 30 ++-- l10n/zh_CN/settings.po | 4 +- l10n/zh_CN/user_ldap.po | 4 +- l10n/zh_HK/core.po | 79 +++++------ l10n/zh_HK/files.po | 28 ++-- l10n/zh_HK/files_external.po | 12 +- l10n/zh_HK/files_trashbin.po | 8 +- l10n/zh_HK/lib.po | 30 ++-- l10n/zh_HK/settings.po | 4 +- l10n/zh_HK/user_ldap.po | 4 +- l10n/zh_TW/core.po | 83 ++++++------ l10n/zh_TW/files.po | 28 ++-- l10n/zh_TW/files_external.po | 12 +- l10n/zh_TW/files_trashbin.po | 8 +- l10n/zh_TW/lib.po | 32 ++--- l10n/zh_TW/settings.po | 4 +- l10n/zh_TW/user_ldap.po | 4 +- lib/l10n/ca.php | 1 - lib/l10n/cs_CZ.php | 1 - lib/l10n/da.php | 1 - lib/l10n/de.php | 1 - lib/l10n/de_CH.php | 1 - lib/l10n/de_DE.php | 1 - lib/l10n/el.php | 1 - lib/l10n/en_GB.php | 1 - lib/l10n/es.php | 1 - lib/l10n/es_AR.php | 1 - lib/l10n/et_EE.php | 1 - lib/l10n/eu.php | 1 - lib/l10n/fr.php | 1 - lib/l10n/gl.php | 1 - lib/l10n/hu_HU.php | 1 - lib/l10n/it.php | 1 - lib/l10n/ja_JP.php | 1 - lib/l10n/ko.php | 1 - lib/l10n/lt_LT.php | 1 - lib/l10n/lv.php | 1 - lib/l10n/nl.php | 1 - lib/l10n/pl.php | 1 - lib/l10n/pt_BR.php | 1 - lib/l10n/pt_PT.php | 1 - lib/l10n/ru.php | 1 - lib/l10n/ru_RU.php | 1 + lib/l10n/sk_SK.php | 1 - lib/l10n/sv.php | 1 - lib/l10n/tr.php | 1 - lib/l10n/zh_TW.php | 1 - settings/l10n/pl.php | 16 +++ settings/l10n/ru_RU.php | 2 + settings/l10n/sl.php | 24 +++- 630 files changed, 8323 insertions(+), 8468 deletions(-) create mode 100644 apps/files_external/l10n/ru_RU.php diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index ebfe008457..c539c7ba71 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -22,11 +22,11 @@ $TRANSLATIONS = array( "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.", -"Upload failed. Could not get file info." => "Hochladen fehlgeschlagen. Dateiinformationen konnten nicht abgerufen werden.", -"Upload failed. Could not find uploaded file" => "Hochladen fehlgeschlagen. Hochgeladene Datei konnte nicht gefunden werden.", +"Upload failed. Could not get file info." => "Hochladen fehlgeschlagen. Die Dateiinformationen konnten nicht abgerufen werden.", +"Upload failed. Could not find uploaded file" => "Hochladen fehlgeschlagen. Die hochgeladene Datei konnte nicht gefunden werden.", "Invalid directory." => "Ungültiges Verzeichnis.", "Files" => "Dateien", -"Unable to upload {filename} as it is a directory or has 0 bytes" => "Datei {filename} kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Die Datei {filename} kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist", "Not enough space available" => "Nicht genügend Speicherplatz verfügbar", "Upload cancelled." => "Upload abgebrochen.", "Could not get result from server." => "Ergebnis konnte nicht vom Server abgerufen werden.", @@ -34,7 +34,7 @@ $TRANSLATIONS = array( "URL cannot be empty" => "Die URL darf nicht leer sein", "In the home folder 'Shared' is a reserved filename" => "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname", "{new_name} already exists" => "{new_name} existiert bereits", -"Could not create file" => "Datei konnte nicht erstellt werden", +"Could not create file" => "Die Datei konnte nicht erstellt werden", "Could not create folder" => "Der Ordner konnte nicht erstellt werden", "Share" => "Teilen", "Delete permanently" => "Endgültig löschen", @@ -51,8 +51,8 @@ $TRANSLATIONS = array( "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}%)", -"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Verschlüsselung-App ist aktiviert aber Ihre Schlüssel sind nicht initialisiert. Bitte melden sich nochmals ab und wieder an.", -"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ungültiger privater Schlüssel für die Verschlüsselung-App. Bitte aktualisieren Sie Ihr privates Schlüssel-Passwort um den Zugriff auf Ihre verschlüsselten Dateien wiederherzustellen.", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Verschlüsselung-App ist aktiviert, aber Ihre Schlüssel sind nicht initialisiert. Bitte melden sich nochmals ab und wieder an.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ungültiger privater Schlüssel für die Verschlüsselung-App. Bitte aktualisieren Sie Ihr privates Schlüssel-Passwort, um den Zugriff auf Ihre verschlüsselten Dateien wiederherzustellen.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln.", "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.", "Error moving file" => "Fehler beim Verschieben der Datei", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 8140bac46b..dbb49b4649 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -3,7 +3,14 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Nie można było przenieść %s - Plik o takiej nazwie już istnieje", "Could not move %s" => "Nie można było przenieść %s", "File name cannot be empty." => "Nazwa pliku nie może być pusta.", +"File name must not contain \"/\". Please choose a different name." => "Nazwa pliku nie może zawierać \"/\". Proszę wybrać inną nazwę.", +"The name %s is already used in the folder %s. Please choose a different name." => "Nazwa %s jest już używana w folderze %s. Proszę wybrać inną nazwę.", +"Not a valid source" => "Niepoprawne źródło", +"Error while downloading %s to %s" => "Błąd podczas pobierania %s do %S", +"Error when creating the file" => "Błąd przy tworzeniu pliku", "Folder name cannot be empty." => "Nazwa folderu nie może być pusta.", +"Folder name must not contain \"/\". Please choose a different name." => "Nazwa folderu nie może zawierać \"/\". Proszę wybrać inną nazwę.", +"Error when creating the folder" => "Błąd przy tworzeniu folderu", "Unable to set upload directory." => "Nie można ustawić katalog wczytywania.", "Invalid Token" => "Nieprawidłowy Token", "No file was uploaded. Unknown error" => "Żaden plik nie został załadowany. Nieznany błąd", @@ -24,11 +31,16 @@ $TRANSLATIONS = array( "Upload cancelled." => "Wczytywanie anulowane.", "Could not get result from server." => "Nie można uzyskać wyniku z serwera.", "File upload is in progress. Leaving the page now will cancel the upload." => "Wysyłanie pliku jest w toku. Jeśli opuścisz tę stronę, wysyłanie zostanie przerwane.", +"URL cannot be empty" => "URL nie może być pusty", +"In the home folder 'Shared' is a reserved filename" => "W katalogu domowym \"Shared\" jest zarezerwowana nazwa pliku", "{new_name} already exists" => "{new_name} już istnieje", +"Could not create file" => "Nie można utworzyć pliku", +"Could not create folder" => "Nie można utworzyć folderu", "Share" => "Udostępnij", "Delete permanently" => "Trwale usuń", "Rename" => "Zmień nazwę", "Pending" => "Oczekujące", +"Could not rename file" => "Nie można zmienić nazwy pliku", "replaced {new_name} with {old_name}" => "zastąpiono {new_name} przez {old_name}", "undo" => "cofnij", "_%n folder_::_%n folders_" => array("%n katalog","%n katalogi","%n katalogów"), @@ -48,6 +60,7 @@ $TRANSLATIONS = array( "Name" => "Nazwa", "Size" => "Rozmiar", "Modified" => "Modyfikacja", +"Invalid folder name. Usage of 'Shared' is reserved." => "Niepoprawna nazwa folderu. Wykorzystanie \"Shared\" jest zarezerwowane.", "%s could not be renamed" => "%s nie można zmienić nazwy", "Upload" => "Wyślij", "File handling" => "Zarządzanie plikami", @@ -64,6 +77,7 @@ $TRANSLATIONS = array( "From link" => "Z odnośnika", "Deleted files" => "Pliki usunięte", "Cancel upload" => "Anuluj wysyłanie", +"You don’t have permission to upload or create files here" => "Nie masz uprawnień do wczytywania lub tworzenia plików w tym miejscu", "Nothing in here. Upload something!" => "Pusto. Wyślij coś!", "Download" => "Pobierz", "Unshare" => "Zatrzymaj współdzielenie", diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php index 3660b300c2..649ec594cd 100644 --- a/apps/files/l10n/ru_RU.php +++ b/apps/files/l10n/ru_RU.php @@ -7,9 +7,11 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("","",""), "_Uploading %n file_::_Uploading %n files_" => array("","",""), "Error" => "Ошибка", +"Size" => "Размер", "Upload" => "Загрузка", "Save" => "Сохранить", "Cancel upload" => "Отмена загрузки", -"Download" => "Загрузка" +"Download" => "Загрузка", +"Delete" => "Удалить" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 3f5e3e625b..d61442738e 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -1,14 +1,14 @@ "%s ni mogoče premakniti - datoteka s tem imenom že obstaja", -"Could not move %s" => "Ni mogoče premakniti %s", +"Could not move %s - File with this name already exists" => "Datoteke %s ni mogoče premakniti - datoteka s tem imenom že obstaja.", +"Could not move %s" => "Datoteke %s ni mogoče premakniti", "File name cannot be empty." => "Ime datoteke ne sme biti prazno polje.", "File name must not contain \"/\". Please choose a different name." => "Ime datoteke ne sme vsebovati znaka \"/\". Določiti je treba drugo ime.", "The name %s is already used in the folder %s. Please choose a different name." => "Ime %s je že v mapi %s že v uporabi. Izbrati je treba drugo ime.", "Not a valid source" => "Vir ni veljaven", "Error while downloading %s to %s" => "Napaka med prejemanjem %s v mapo %s", "Error when creating the file" => "Napaka med ustvarjanjem datoteke", -"Folder name cannot be empty." => "Ime mape ne more biti prazna vrednost", +"Folder name cannot be empty." => "Ime mape ne more biti prazna vrednost.", "Folder name must not contain \"/\". Please choose a different name." => "Ime mape ne sme vsebovati znaka \"/\". Določiti je treba drugo ime.", "Error when creating the folder" => "Napaka med ustvarjanjem mape", "Unable to set upload directory." => "Mapo, v katero boste prenašali dokumente, ni mogoče določiti", @@ -26,6 +26,7 @@ $TRANSLATIONS = array( "Upload failed. Could not find uploaded file" => "Pošiljanje je spodletelo. Ni mogoče najti poslane datoteke.", "Invalid directory." => "Neveljavna mapa.", "Files" => "Datoteke", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Ni mogoče poslati datoteke {filename}, saj je to ali mapa ali pa je velikost datoteke 0 bajtov.", "Not enough space available" => "Na voljo ni dovolj prostora.", "Upload cancelled." => "Pošiljanje je preklicano.", "Could not get result from server." => "Ni mogoče pridobiti podatkov s strežnika.", @@ -47,17 +48,20 @@ $TRANSLATIONS = array( "{dirs} and {files}" => "{dirs} in {files}", "_Uploading %n file_::_Uploading %n files_" => array("Posodabljanje %n datoteke","Posodabljanje %n datotek","Posodabljanje %n datotek","Posodabljanje %n datotek"), "'.' is an invalid file name." => "'.' je neveljavno ime datoteke.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neveljavno ime, znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neveljavno ime; znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni.", "Your storage is full, files can not be updated or synced anymore!" => "Shramba je povsem napolnjena. Datotek ni več mogoče posodabljati in usklajevati!", -"Your storage is almost full ({usedSpacePercent}%)" => "Mesto za shranjevanje je skoraj polno ({usedSpacePercent}%)", -"Your download is being prepared. This might take some time if the files are big." => "Postopek priprave datoteke za prejem je lahko dolgotrajen, če je datoteka zelo velika.", +"Your storage is almost full ({usedSpacePercent}%)" => "Prostor za shranjevanje je skoraj do konca zaseden ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Program za šifriranje je omogočen, vendar ni začet. Odjavite se in nato ponovno prijavite.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ni ustreznega osebnega ključa za program za šifriranje. Posodobite osebni ključ za dostop do šifriranih datotek med nastavitvami.", +"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Šifriranje je onemogočeno, datoteke pa so še vedno šifrirane. Odšifrirajte jih med nastavitvami.", +"Your download is being prepared. This might take some time if the files are big." => "Postopek priprave datoteke za prejem je lahko dolgotrajen, kadar je datoteka zelo velika.", "Error moving file" => "Napaka premikanja datoteke", "Error" => "Napaka", "Name" => "Ime", "Size" => "Velikost", "Modified" => "Spremenjeno", "Invalid folder name. Usage of 'Shared' is reserved." => "Neveljavno ime mape. Ime 'Souporaba' je zadržana za javno mapo.", -"%s could not be renamed" => "%s ni bilo mogoče preimenovati", +"%s could not be renamed" => "%s ni mogoče preimenovati", "Upload" => "Pošlji", "File handling" => "Upravljanje z datotekami", "Maximum upload size" => "Največja velikost za pošiljanja", diff --git a/apps/files_encryption/l10n/el.php b/apps/files_encryption/l10n/el.php index 70f778f0a5..203a848b74 100644 --- a/apps/files_encryption/l10n/el.php +++ b/apps/files_encryption/l10n/el.php @@ -2,12 +2,24 @@ $TRANSLATIONS = array( "Password successfully changed." => "Ο κωδικός αλλάχτηκε επιτυχώς.", "Could not change the password. Maybe the old password was not correct." => "Αποτυχία αλλαγής κωδικού ίσως ο παλιός κωδικός να μην ήταν σωστός.", +"Private key password successfully updated." => "Το Προσωπικό κλειδί πρόσβασης ενημερώθηκε επιτυχώς", +"Unknown error please check your system settings or contact your administrator" => "Άγνωστο σφάλμα, παρακαλώ ελέγξτε τις ρυθμίσεις συστήματος ή επικοινωνήστε με τον διαχειριστή σας ", +"Missing requirements." => "Προαπαιτούμενα που απουσιάζουν.", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Παρακαλώ επιβεβαιώστε ότι η PHP 5.3.3 ή νεότερη είναι εγκατεστημένη και ότι το OpenSSL μαζί με το PHP extension είναι ενεργοποιήμένο και έχει ρυθμιστεί σωστά. Προς το παρόν, η εφαρμογή κρυπτογράφησης είναι απενεργοποιημένη.", +"Following users are not set up for encryption:" => "Οι κάτωθι χρήστες δεν έχουν ρυθμιστεί για κρυπογράφηση:", "Saving..." => "Γίνεται αποθήκευση...", +"Go directly to your " => "Πηγαίνε απευθείας στο ", "personal settings" => "προσωπικές ρυθμίσεις", "Encryption" => "Κρυπτογράφηση", +"Recovery key password" => "Επαναφορά κωδικού κλειδιού", "Enabled" => "Ενεργοποιημένο", "Disabled" => "Απενεργοποιημένο", +"New Recovery key password" => "Νέο κλειδί επαναφοράς κωδικού", "Change Password" => "Αλλαγή Κωδικού Πρόσβασης", +"Old log-in password" => "Παλαιό συνθηματικό εισόδου", +"Current log-in password" => "Τρέχον συνθηματικό πρόσβασης", +"Update Private Key Password" => "Ενημέρωση Προσωπικού Κλειδού Πρόσβασης", +"Enable password recovery:" => "Ενεργοποιήστε την ανάκτηση κωδικού πρόσβασης", "File recovery settings updated" => "Οι ρυθμίσεις επαναφοράς αρχείων ανανεώθηκαν" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/pl.php b/apps/files_encryption/l10n/pl.php index 615951eecc..5d1a48d124 100644 --- a/apps/files_encryption/l10n/pl.php +++ b/apps/files_encryption/l10n/pl.php @@ -9,6 +9,7 @@ $TRANSLATIONS = array( "Private key password successfully updated." => "Pomyślnie zaktualizowano hasło klucza prywatnego.", "Could not update the private key password. Maybe the old password was not correct." => "Nie można zmienić prywatnego hasła. Może stare hasło nie było poprawne.", "Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Szyfrowanie aplikacja nie została zainicjowane! Może szyfrowanie aplikacji zostało ponownie włączone podczas tej sesji. Spróbuj się wylogować i zalogować ponownie aby zainicjować szyfrowanie aplikacji.", +"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Klucz prywatny nie jest poprawny! Prawdopodobnie Twoje hasło zostało zmienione poza %s (np. w katalogu firmy). Aby odzyskać dostęp do zaszyfrowanych plików można zaktualizować hasło klucza prywatnego w ustawieniach osobistych.", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Nie można odszyfrować tego pliku, prawdopodobnie jest to plik udostępniony. Poproś właściciela pliku o ponowne udostępnianie pliku Tobie.", "Unknown error please check your system settings or contact your administrator" => "Nieznany błąd proszę sprawdzić ustawienia systemu lub skontaktuj się z administratorem", "Missing requirements." => "Brak wymagań.", diff --git a/apps/files_encryption/l10n/sl.php b/apps/files_encryption/l10n/sl.php index d4d881d3d0..be814558f5 100644 --- a/apps/files_encryption/l10n/sl.php +++ b/apps/files_encryption/l10n/sl.php @@ -1,36 +1,43 @@ "Ključ za obnovitev gesla je bil uspešno nastavljen", -"Could not enable recovery key. Please check your recovery key password!" => "Ključa za obnovitev gesla ni bilo mogoče nastaviti. Preverite ključ!", -"Recovery key successfully disabled" => "Ključ za obnovitev gesla je bil uspešno onemogočen", -"Could not disable recovery key. Please check your recovery key password!" => "Ključa za obnovitev gesla ni bilo mogoče onemogočiti. Preverite ključ!", -"Password successfully changed." => "Geslo je bilo uspešno spremenjeno.", -"Could not change the password. Maybe the old password was not correct." => "Gesla ni bilo mogoče spremeniti. Morda vnos starega gesla ni bil pravilen.", -"Private key password successfully updated." => "Zasebni ključ za geslo je bil uspešno posodobljen.", -"Could not update the private key password. Maybe the old password was not correct." => "Zasebnega ključa za geslo ni bilo mogoče posodobiti. Morda vnos starega gesla ni bil pravilen.", +"Recovery key successfully enabled" => "Ključ za obnovitev gesla je uspešno nastavljen", +"Could not enable recovery key. Please check your recovery key password!" => "Ključa za obnovitev gesla ni mogoče nastaviti. Preverite ključ!", +"Recovery key successfully disabled" => "Ključ za obnovitev gesla je uspešno onemogočen", +"Could not disable recovery key. Please check your recovery key password!" => "Ključa za obnovitev gesla ni mogoče onemogočiti. Preverite ključ!", +"Password successfully changed." => "Geslo je uspešno spremenjeno.", +"Could not change the password. Maybe the old password was not correct." => "Gesla ni mogoče spremeniti. Morda vnos starega gesla ni pravilen.", +"Private key password successfully updated." => "Zasebni ključ za geslo je uspešno posodobljen.", +"Could not update the private key password. Maybe the old password was not correct." => "Zasebnega ključa za geslo ni mogoče posodobiti. Morda vnos starega gesla ni bil pravilen.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Program za šifriranje ni začet. Morda je bil program ponovno omogočen šele med zagonom trenutne seje. Odjavite se in se nato prijavite nazaj. S tem morda razrešite napako.", +"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Zasebni ključ ni veljaven. Najverjetneje je bilo geslo spremenjeno izven %s (najverjetneje je to poslovna mapa). Geslo lahko posodobite med osebnimi nastavitvami in s tem obnovite dostop do šifriranih datotek.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Te datoteke ni mogoče šifrirati, ker je to najverjetneje datoteka v souporabi. Prosite lastnika datoteke, da jo da ponovno v souporabo.", +"Unknown error please check your system settings or contact your administrator" => "Prišlo je do neznane napake. Preverite nastavitve sistema ali pa stopite v stik s skrbnikom sistema.", "Missing requirements." => "Manjkajoče zahteve", -"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Preverite, da imate na strežniku nameščen paket PHP 5.3.3 ali novejši in da je omogočen in pravilno nastavljen PHP OpenSSL . Zaenkrat je šifriranje onemogočeno.", -"Following users are not set up for encryption:" => "Naslednji uporabniki še nimajo nastavljenega šifriranja:", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Preverite, ali je na strežniku nameščen paket PHP 5.3.3 ali novejši, da je omogočen in pravilno nastavljen PHP OpenSSL. Z obstoječimi možnostmi šifriranje ni mogoče.", +"Following users are not set up for encryption:" => "Navedeni uporabniki še nimajo nastavljenega šifriranja:", "Saving..." => "Poteka shranjevanje ...", +"Go directly to your " => "Skočite neposredno na", "personal settings" => "osebne nastavitve", "Encryption" => "Šifriranje", -"Enable recovery key (allow to recover users files in case of password loss):" => "Omogoči ključ za obnovitev datotek (v primeru izgube gesla)", +"Enable recovery key (allow to recover users files in case of password loss):" => "Omogoči ključ za obnovitev datotek (v primeru izgube gesla):", "Recovery key password" => "Ključ za obnovitev gesla", +"Repeat Recovery key password" => "Ponovi ključ za obnovitev gesla", "Enabled" => "Omogočeno", "Disabled" => "Onemogočeno", "Change recovery key password:" => "Spremeni ključ za obnovitev gesla:", "Old Recovery key password" => "Stari ključ za obnovitev gesla", -"New Recovery key password" => "Nov ključ za obnovitev gesla", +"New Recovery key password" => "Novi ključ za obnovitev gesla", +"Repeat New Recovery key password" => "Ponovi novi ključ za obnovitev gesla", "Change Password" => "Spremeni geslo", -"Your private key password no longer match your log-in password:" => "Vaš zasebni ključ za geslo se ne ujema z vnešenim geslom ob prijavi:", -"Set your old private key password to your current log-in password." => "Nastavite svoj star zasebni ključ v geslo, vnešeno ob prijavi.", -" If you don't remember your old password you can ask your administrator to recover your files." => "Če ste svoje geslo pozabili, lahko vaše datoteke obnovi skrbnik sistema.", +"Your private key password no longer match your log-in password:" => "Vaš zasebni ključ za geslo se ne ujema z geslom, vnesenim ob prijavi:", +"Set your old private key password to your current log-in password." => "Nastavite svoj star zasebni ključ v geslo, vneseno ob prijavi.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Če ste pozabili svoje geslo, lahko vaše datoteke obnovi le skrbnik sistema.", "Old log-in password" => "Staro geslo", "Current log-in password" => "Trenutno geslo", "Update Private Key Password" => "Posodobi zasebni ključ", "Enable password recovery:" => "Omogoči obnovitev gesla:", -"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Nastavitev te možnosti omogoča ponovno pridobitev dostopa do šifriranih datotek, v primeru da boste geslo pozabili.", -"File recovery settings updated" => "Nastavitve obnavljanja dokumentov so bile posodobljene", -"Could not update file recovery" => "Nastavitev za obnavljanje dokumentov ni bilo mogoče posodobiti" +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Nastavitev te možnosti omogoča ponovno pridobitev dostopa do šifriranih datotek, v primeru, da boste geslo pozabili.", +"File recovery settings updated" => "Nastavitve obnavljanja dokumentov so posodobljene", +"Could not update file recovery" => "Nastavitev za obnavljanje dokumentov ni mogoče posodobiti" ); $PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/apps/files_external/l10n/ar.php b/apps/files_external/l10n/ar.php index 055c689582..338526d2af 100644 --- a/apps/files_external/l10n/ar.php +++ b/apps/files_external/l10n/ar.php @@ -1,6 +1,7 @@ "اسم المجلد", +"Options" => "خيارات", "All Users" => "كل المستخدمين", "Groups" => "مجموعات", "Users" => "المستخدمين", diff --git a/apps/files_external/l10n/ru_RU.php b/apps/files_external/l10n/ru_RU.php new file mode 100644 index 0000000000..d517597f59 --- /dev/null +++ b/apps/files_external/l10n/ru_RU.php @@ -0,0 +1,6 @@ + "Опции", +"Delete" => "Удалить" +); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_trashbin/l10n/ru_RU.php b/apps/files_trashbin/l10n/ru_RU.php index 3129ff95eb..dfc99f594f 100644 --- a/apps/files_trashbin/l10n/ru_RU.php +++ b/apps/files_trashbin/l10n/ru_RU.php @@ -1,5 +1,6 @@ "Ошибка" +"Error" => "Ошибка", +"Delete" => "Удалить" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/user_ldap/l10n/ca.php b/apps/user_ldap/l10n/ca.php index 2c5358d6c7..bcc0a6ed87 100644 --- a/apps/user_ldap/l10n/ca.php +++ b/apps/user_ldap/l10n/ca.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "mappings cleared" => "s'han eliminat els mapatges", "Success" => "Èxit", "Error" => "Error", +"Configuration OK" => "Configuració correcte", +"Configuration incorrect" => "Configuració incorrecte", +"Configuration incomplete" => "Configuració incompleta", "Select groups" => "Selecciona els grups", "Select object classes" => "Seleccioneu les classes dels objectes", "Select attributes" => "Seleccioneu els atributs", diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php index 15eefd842c..2aeb5e595b 100644 --- a/apps/user_ldap/l10n/de.php +++ b/apps/user_ldap/l10n/de.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "mappings cleared" => "Zuordnungen gelöscht", "Success" => "Erfolgreich", "Error" => "Fehler", +"Configuration OK" => "Konfiguration OK", +"Configuration incorrect" => "Konfiguration nicht korrekt", +"Configuration incomplete" => "Konfiguration nicht vollständig", "Select groups" => "Wähle Gruppen aus", "Select object classes" => "Objekt-Klassen auswählen", "Select attributes" => "Attribute auswählen", diff --git a/apps/user_ldap/l10n/de_DE.php b/apps/user_ldap/l10n/de_DE.php index 0da5307d93..b43ac9048c 100644 --- a/apps/user_ldap/l10n/de_DE.php +++ b/apps/user_ldap/l10n/de_DE.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "mappings cleared" => "Zuordnungen gelöscht", "Success" => "Erfolg", "Error" => "Fehler", +"Configuration OK" => "Konfiguration OK", +"Configuration incorrect" => "Konfiguration nicht korrekt", +"Configuration incomplete" => "Konfiguration nicht vollständig", "Select groups" => "Wähle Gruppen", "Select object classes" => "Objekt-Klassen auswählen", "Select attributes" => "Attribute auswählen", diff --git a/apps/user_ldap/l10n/en_GB.php b/apps/user_ldap/l10n/en_GB.php index 325256bc8c..fb54dcb1b1 100644 --- a/apps/user_ldap/l10n/en_GB.php +++ b/apps/user_ldap/l10n/en_GB.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "mappings cleared" => "mappings cleared", "Success" => "Success", "Error" => "Error", +"Configuration OK" => "Configuration OK", +"Configuration incorrect" => "Configuration incorrect", +"Configuration incomplete" => "Configuration incomplete", "Select groups" => "Select groups", "Select object classes" => "Select object classes", "Select attributes" => "Select attributes", diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php index 804cc9e4f1..ab219e73d8 100644 --- a/apps/user_ldap/l10n/es.php +++ b/apps/user_ldap/l10n/es.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "mappings cleared" => "Asignaciones borradas", "Success" => "Éxito", "Error" => "Error", +"Configuration OK" => "Configuración OK", +"Configuration incorrect" => "Configuración Incorrecta", +"Configuration incomplete" => "Configuración incompleta", "Select groups" => "Seleccionar grupos", "Select object classes" => "Seleccionar la clase de objeto", "Select attributes" => "Seleccionar atributos", diff --git a/apps/user_ldap/l10n/et_EE.php b/apps/user_ldap/l10n/et_EE.php index cf19b062df..9dda17c3b7 100644 --- a/apps/user_ldap/l10n/et_EE.php +++ b/apps/user_ldap/l10n/et_EE.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "mappings cleared" => "vastendused puhastatud", "Success" => "Korras", "Error" => "Viga", +"Configuration OK" => "Seadistus on korras", +"Configuration incorrect" => "Seadistus on vigane", +"Configuration incomplete" => "Seadistus on puudulik", "Select groups" => "Vali grupid", "Select object classes" => "Vali objekti klassid", "Select attributes" => "Vali atribuudid", diff --git a/apps/user_ldap/l10n/fr.php b/apps/user_ldap/l10n/fr.php index d53f78eb36..64d9dcc47c 100644 --- a/apps/user_ldap/l10n/fr.php +++ b/apps/user_ldap/l10n/fr.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "mappings cleared" => "associations supprimées", "Success" => "Succès", "Error" => "Erreur", +"Configuration OK" => "Configuration OK", +"Configuration incorrect" => "Configuration incorrecte", +"Configuration incomplete" => "Configuration incomplète", "Select groups" => "Sélectionnez les groupes", "Select object classes" => "Sélectionner les classes d'objet", "Select attributes" => "Sélectionner les attributs", diff --git a/apps/user_ldap/l10n/gl.php b/apps/user_ldap/l10n/gl.php index 6d7f8e334b..3f19b0cf22 100644 --- a/apps/user_ldap/l10n/gl.php +++ b/apps/user_ldap/l10n/gl.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "mappings cleared" => "limpadas as asignacións", "Success" => "Correcto", "Error" => "Erro", +"Configuration OK" => "Configuración correcta", +"Configuration incorrect" => "Configuración incorrecta", +"Configuration incomplete" => "Configuración incompleta", "Select groups" => "Seleccionar grupos", "Select object classes" => "Seleccione as clases de obxectos", "Select attributes" => "Seleccione os atributos", diff --git a/apps/user_ldap/l10n/it.php b/apps/user_ldap/l10n/it.php index 97ca14e0a8..599a6da48a 100644 --- a/apps/user_ldap/l10n/it.php +++ b/apps/user_ldap/l10n/it.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "mappings cleared" => "associazioni cancellate", "Success" => "Riuscito", "Error" => "Errore", +"Configuration OK" => "Configurazione corretta", +"Configuration incorrect" => "Configurazione non corretta", +"Configuration incomplete" => "Configurazione incompleta", "Select groups" => "Seleziona i gruppi", "Select object classes" => "Seleziona le classi di oggetti", "Select attributes" => "Seleziona gli attributi", diff --git a/apps/user_ldap/l10n/nl.php b/apps/user_ldap/l10n/nl.php index 9acd9c088c..b2e8f17367 100644 --- a/apps/user_ldap/l10n/nl.php +++ b/apps/user_ldap/l10n/nl.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "mappings cleared" => "vertaaltabel leeggemaakt", "Success" => "Succes", "Error" => "Fout", +"Configuration OK" => "Configuratie OK", +"Configuration incorrect" => "Configuratie onjuist", +"Configuration incomplete" => "Configuratie incompleet", "Select groups" => "Selecteer groepen", "Select object classes" => "Selecteer objectklasse", "Select attributes" => "Selecteer attributen", diff --git a/apps/user_ldap/l10n/pt_BR.php b/apps/user_ldap/l10n/pt_BR.php index cf047b2c88..940a55489a 100644 --- a/apps/user_ldap/l10n/pt_BR.php +++ b/apps/user_ldap/l10n/pt_BR.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "mappings cleared" => "mapeamentos limpos", "Success" => "Sucesso", "Error" => "Erro", +"Configuration OK" => "Configuração OK", +"Configuration incorrect" => "Configuração incorreta", +"Configuration incomplete" => "Configuração incompleta", "Select groups" => "Selecionar grupos", "Select object classes" => "Selecione classes de objetos", "Select attributes" => "Selecione os atributos", diff --git a/apps/user_ldap/l10n/ru.php b/apps/user_ldap/l10n/ru.php index f908fa3cc7..f70ecdcf1f 100644 --- a/apps/user_ldap/l10n/ru.php +++ b/apps/user_ldap/l10n/ru.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "mappings cleared" => "Соответствия очищены", "Success" => "Успешно", "Error" => "Ошибка", +"Configuration OK" => "Конфигурация в порядке", +"Configuration incorrect" => "Конфигурация неправильна", +"Configuration incomplete" => "Конфигурация не завершена", "Select groups" => "Выберите группы", "Select object classes" => "Выберите объектные классы", "Select attributes" => "Выберите атрибуты", diff --git a/apps/user_ldap/l10n/sl.php b/apps/user_ldap/l10n/sl.php index 81bc8c9b70..616be979d0 100644 --- a/apps/user_ldap/l10n/sl.php +++ b/apps/user_ldap/l10n/sl.php @@ -1,48 +1,74 @@ "Preslikav ni bilo mogoče izbrisati", +"Failed to clear the mappings." => "Čiščenje preslikav je spodletelo.", "Failed to delete the server configuration" => "Brisanje nastavitev strežnika je spodletelo.", "The configuration is valid and the connection could be established!" => "Nastavitev je veljavna, zato je povezavo mogoče vzpostaviti!", -"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Nastavitev je veljavna, vendar pa je vez Bind spodletela. Preveriti je treba nastavitve strežnika in ustreznost poveril.", +"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Nastavitev je veljavna, vendar pa je vez spodletela. Preveriti je treba nastavitve strežnika in ustreznost poveril.", +"The configuration is invalid. Please have a look at the logs for further details." => "Nastavitev ni veljavna. Več podrobnosti o napaki je zabeleženih v dnevniku.", +"No action specified" => "Ni določenega dejanja", +"No configuration specified" => "Ni določenih nastavitev", +"No data specified" => "Ni navedenih podatkov", +" Could not set configuration %s" => "Ni mogoče uveljaviti nastavitev %s", "Deletion failed" => "Brisanje je spodletelo.", -"Take over settings from recent server configuration?" => "Ali naj se prevzame nastavitve nedavne nastavitve strežnika?", -"Keep settings?" => "Ali nas se nastavitve ohranijo?", +"Take over settings from recent server configuration?" => "Ali naj bodo prevzete nedavne nastavitve strežnika?", +"Keep settings?" => "Ali naj se nastavitve ohranijo?", "Cannot add server configuration" => "Ni mogoče dodati nastavitev strežnika", -"mappings cleared" => "Preslikave so izbrisane", +"mappings cleared" => "preslikave so izbrisane", "Success" => "Uspešno končano.", "Error" => "Napaka", +"Configuration OK" => "Nastavitev je ustrezna", +"Configuration incorrect" => "Nastavitev ni ustrezna", +"Configuration incomplete" => "Nastavitev je nepopolna", "Select groups" => "Izberi skupine", +"Select object classes" => "Izbor razredov predmeta", "Select attributes" => "Izbor atributov", "Connection test succeeded" => "Preizkus povezave je uspešno končan.", "Connection test failed" => "Preizkus povezave je spodletel.", "Do you really want to delete the current Server Configuration?" => "Ali res želite izbrisati trenutne nastavitve strežnika?", "Confirm Deletion" => "Potrdi brisanje", -"_%s group found_::_%s groups found_" => array("","","",""), -"_%s user found_::_%s users found_" => array("","","",""), +"_%s group found_::_%s groups found_" => array("%s najdena skupina","%s najdeni skupini","%s najdene skupine","%s najdenih skupin"), +"_%s user found_::_%s users found_" => array("%s najden uporabnik","%s najdena uporabnika","%s najdeni uporabniki","%s najdenih uporabnikov"), "Invalid Host" => "Neveljaven gostitelj", +"Could not find the desired feature" => "Želene zmožnosti ni mogoče najti", "Save" => "Shrani", "Test Configuration" => "Preizkusne nastavitve", "Help" => "Pomoč", +"Limit the access to %s to groups meeting this criteria:" => "Omeji dostop %s do skupin glede na kriterij:", +"only those object classes:" => "le razredi predmeta:", +"only from those groups:" => "le iz skupin:", +"Edit raw filter instead" => "Uredi surov filter", +"Raw LDAP filter" => "Surovi filter LDAP", +"The filter specifies which LDAP groups shall have access to the %s instance." => "Filter določa, katere skupine LDAP bodo imele dostop do %s.", +"groups found" => "najdenih skupin", +"What attribute shall be used as login name:" => "Kateri atribut naj bo uporabljen kot prijavno ime:", +"LDAP Username:" => "Uporabniško ime LDAP:", +"LDAP Email Address:" => "Elektronski naslov LDAP:", +"Other Attributes:" => "Drugi atributi:", "Add Server Configuration" => "Dodaj nastavitve strežnika", "Host" => "Gostitelj", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Protokol je lahko izpuščen, če ni posebej zahtevan SSL. V tem primeru se mora naslov začeti z ldaps://", "Port" => "Vrata", -"User DN" => "Uporabnik 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." => "DN uporabnikovega odjemalca, s katerim naj se opravi vezava, npr. uid=agent,dc=example,dc=com. Za brezimni dostop sta polji DN in geslo prazni.", +"User DN" => "Uporabnikovo enolično ime", +"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." => "Enolično ime uporabnikovega odjemalca, s katerim naj se opravi vezava, npr. uid=agent,dc=example,dc=com. Za brezimni dostop sta polji prikaznega imena in gesla prazni.", "Password" => "Geslo", -"For anonymous access, leave DN and Password empty." => "Za brezimni dostop sta polji DN in geslo prazni.", -"One Base DN per line" => "En osnovni DN na vrstico", -"You can specify Base DN for users and groups in the Advanced tab" => "Osnovni DN za uporabnike in skupine lahko določite v zavihku naprednih možnosti.", +"For anonymous access, leave DN and Password empty." => "Za brezimni dostop naj bosta polji imena in gesla prazni.", +"One Base DN per line" => "Eno osnovno enolično ime na vrstico", +"You can specify Base DN for users and groups in the Advanced tab" => "Osnovno enolično ime za uporabnike in skupine lahko določite v zavihku naprednih možnosti.", +"Limit the access to %s to users meeting this criteria:" => "Omeji dostop do %s uporabnikom, za katere velja kriterij:", +"The filter specifies which LDAP users shall have access to the %s instance." => "Filter določa, kateri uporabniki LDAP bodo imeli dostop do %s.", +"users found" => "najdenih uporabnikov", "Back" => "Nazaj", "Continue" => "Nadaljuj", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "Opozorilo: določili user_ldap in user_webdavauth sta neskladni, kar lahko vpliva na delovanje sistema. O napaki pošljite poročilo skrbniku sistema in opozorite, da je treba eno izmed možnosti onemogočiti.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Opozorilo: modul PHP LDAP mora biti nameščen, sicer vmesnik ne bo deloval. Paket je treba namestiti.", "Connection Settings" => "Nastavitve povezave", "Configuration Active" => "Dejavna nastavitev", "When unchecked, this configuration will be skipped." => "Neizbrana možnost preskoči nastavitev.", "User Login Filter" => "Filter prijav uporabnikov", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" => "Določi filter, ki bo uveljavljen ob poskusu prijave. %%uid zamenja uporabniško ime pri prijavi, na primer: \"uid=%%uid\"", "Backup (Replica) Host" => "Varnostna kopija (replika) podatkov gostitelja", "Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Podati je treba izbirno varnostno kopijo gostitelja. Ta mora biti natančna replika strežnika LDAP/AD.", -"Backup (Replica) Port" => "Varnostna kopija (replika) podatka vrat", +"Backup (Replica) Port" => "Vrata varnostne kopije (replike)", "Disable Main Server" => "Onemogoči glavni strežnik", "Case insensitve LDAP server (Windows)" => "Strežnik LDAP ne upošteva velikosti črk (Windows)", "Turn off SSL certificate validation." => "Onemogoči določanje veljavnosti potrdila SSL.", @@ -50,14 +76,16 @@ $TRANSLATIONS = array( "in seconds. A change empties the cache." => "v sekundah. Sprememba izprazni predpomnilnik.", "Directory Settings" => "Nastavitve mape", "User Display Name Field" => "Polje za uporabnikovo prikazano ime", +"The LDAP attribute to use to generate the user's display name." => "Atribut LDAP za uporabo pri ustvarjanju prikaznega imena uporabnika.", "Base User Tree" => "Osnovno uporabniško drevo", -"One User Base DN per line" => "Eno osnovno uporabniško ime DN na vrstico", -"User Search Attributes" => "Uporabi atribute iskanja", +"One User Base DN per line" => "Eno osnovno uporabniško ime na vrstico", +"User Search Attributes" => "Uporabnikovi atributi iskanja", "Optional; one attribute per line" => "Izbirno; en atribut na vrstico", "Group Display Name Field" => "Polje za prikazano ime skupine", +"The LDAP attribute to use to generate the groups's display name." => "Atribut LDAP za uporabo pri ustvarjanju prikaznega imena skupine.", "Base Group Tree" => "Osnovno drevo skupine", -"One Group Base DN per line" => "Eno osnovno ime skupine DN na vrstico", -"Group Search Attributes" => "Atributi iskanja skupine", +"One Group Base DN per line" => "Eno osnovno ime skupine na vrstico", +"Group Search Attributes" => "Skupinski atributi iskanja", "Group-Member association" => "Povezava član-skupina", "Special Attributes" => "Posebni atributi", "Quota Field" => "Polje količinske omejitve", @@ -66,10 +94,12 @@ $TRANSLATIONS = array( "Email Field" => "Polje elektronske pošte", "User Home Folder Naming Rule" => "Pravila poimenovanja uporabniške osebne mape", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Pustite prazno za uporabniško ime (privzeto), sicer navedite atribut LDAP/AD.", -"Internal Username" => "Interno uporabniško ime", -"Internal Username Attribute:" => "Atribut Interno uporabniško ime", +"Internal Username" => "Programsko uporabniško ime", +"Internal Username Attribute:" => "Programski atribut uporabniškega imena:", "Override UUID detection" => "Prezri zaznavo UUID", -"Username-LDAP User Mapping" => "Preslikava uporabniško ime - LDAP-uporabnik", +"UUID Attribute for Users:" => "Atribut UUID za uporabnike:", +"UUID Attribute for Groups:" => "Atribut UUID za skupine:", +"Username-LDAP User Mapping" => "Uporabniška preslikava Uporabniško_ime-LDAP", "Clear Username-LDAP User Mapping" => "Izbriši preslikavo Uporabniškega imena in LDAP-uporabnika", "Clear Groupname-LDAP Group Mapping" => "Izbriši preslikavo Skupine in LDAP-skupine" ); diff --git a/apps/user_ldap/l10n/tr.php b/apps/user_ldap/l10n/tr.php index 80fd570577..040c707cc4 100644 --- a/apps/user_ldap/l10n/tr.php +++ b/apps/user_ldap/l10n/tr.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "mappings cleared" => "Dönüşümler temizlendi", "Success" => "Başarılı", "Error" => "Hata", +"Configuration OK" => "Yapılandırma tamam", +"Configuration incorrect" => "Yapılandırma geçersiz", +"Configuration incomplete" => "Yapılandırma tamamlanmamış", "Select groups" => "Grupları seç", "Select object classes" => "Nesne sınıflarını seç", "Select attributes" => "Nitelikleri seç", diff --git a/core/l10n/ca.php b/core/l10n/ca.php index f7734b0d0e..b00a43c5ce 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -132,7 +132,6 @@ $TRANSLATIONS = array( "Access forbidden" => "Accés prohibit", "Cloud not found" => "No s'ha trobat el núvol", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Ei,\n\nnomés fer-te saber que %s ha compartit %s amb tu.\nMira-ho a: %s\n\n", -"The share will expire on %s.\n\n" => "El compartit té venciment a %s.\n\n", "Cheers!" => "Salut!", "Security Warning" => "Avís de seguretat", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "La versió de PHP que useu és vulnerable a l'atac per NULL Byte (CVE-2006-7243)", @@ -165,7 +164,6 @@ $TRANSLATIONS = array( "Log in" => "Inici de sessió", "Alternative Logins" => "Acreditacions alternatives", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Ei,

només fer-te saber que %s ha compartit »%s« amb tu.
Mira-ho!

", -"The share will expire on %s.

" => "El compartit té venciment a %s.

", "Updating ownCloud to version %s, this may take a while." => "S'està actualitzant ownCloud a la versió %s, pot trigar una estona.", "This ownCloud instance is currently being updated, which may take a while." => "Aquesta instància d'ownCloud s'està actualitzant i podria trigar una estona.", "Please reload this page after a short time to continue using ownCloud." => "Carregueu de nou aquesta pàgina d'aquí a poc temps per continuar usant ownCloud.", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index f2bbec30d6..0e3c6bf27f 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -129,7 +129,6 @@ $TRANSLATIONS = array( "Access forbidden" => "Přístup zakázán", "Cloud not found" => "Cloud nebyl nalezen", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hej ty tam,\n\njen ti chci dát vědět, že %s sdílel %s s tebou.\nZobraz si to: %s\n\n", -"The share will expire on %s.\n\n" => "Sdílení expiruje %s.\n\n", "Cheers!" => "Ať slouží!", "Security Warning" => "Bezpečnostní upozornění", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Verze vašeho PHP je napadnutelná pomocí techniky \"NULL Byte\" (CVE-2006-7243)", @@ -162,7 +161,6 @@ $TRANSLATIONS = array( "Log in" => "Přihlásit", "Alternative Logins" => "Alternativní přihlášení", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Hej ty tam,

jen ti chci dát vědět, že %s sdílel »%s« s tebou.
Zobrazit!

", -"The share will expire on %s.

" => "Sdílení expiruje %s.

", "Updating ownCloud to version %s, this may take a while." => "Aktualizuji ownCloud na verzi %s, bude to chvíli trvat." ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/core/l10n/da.php b/core/l10n/da.php index ff41ecb13f..88348fe39e 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -132,7 +132,6 @@ $TRANSLATIONS = array( "Access forbidden" => "Adgang forbudt", "Cloud not found" => "Sky ikke fundet", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hej med dig\n\nDette blot for at lade dig vide, at %s har delt %s med dig.\nSe det her: %s\n\n", -"The share will expire on %s.\n\n" => "Det delte link vil udløbe d. %s.⏎\n⏎\n", "Cheers!" => "Hej!", "Security Warning" => "Sikkerhedsadvarsel", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Din PHP-version er sårbar overfor et NULL Byte angreb (CVE-2006-7243)", @@ -165,7 +164,6 @@ $TRANSLATIONS = array( "Log in" => "Log ind", "Alternative Logins" => "Alternative logins", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Hej med dig,

Dette blot for at lade dig vide, at %s har delt \"%s\" med dig.
Se det her!

Hej", -"The share will expire on %s.

" => "Det delte link vil udløbe d. %s.", "Updating ownCloud to version %s, this may take a while." => "Opdatere Owncloud til version %s, dette kan tage et stykke tid.", "This ownCloud instance is currently being updated, which may take a while." => "Opdatere Owncloud, dette kan tage et stykke tid.", "Please reload this page after a short time to continue using ownCloud." => "Genindlæs denne side efter kort tid til at fortsætte med at bruge ownCloud.", diff --git a/core/l10n/de.php b/core/l10n/de.php index 494764f97c..20d59fc1de 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -100,7 +100,7 @@ $TRANSLATIONS = array( "Delete" => "Löschen", "Add" => "Hinzufügen", "Edit tags" => "Schlagwörter bearbeiten", -"Error loading dialog template: {error}" => "Fehler beim Laden der Gesprächsvorlage: {error}", +"Error loading dialog template: {error}" => "Fehler beim Laden der Dialogvorlage: {error}", "No tags selected for deletion." => "Es wurden keine Schlagwörter zum Löschen ausgewählt.", "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.", @@ -132,7 +132,6 @@ $TRANSLATIONS = array( "Access forbidden" => "Zugriff verboten", "Cloud not found" => "Cloud nicht gefunden", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hallo,\n\nich wollte Dich nur wissen lassen, dass %s %s mit Dir teilt.\nSchaue es Dir an: %s\n\n", -"The share will expire on %s.\n\n" => "Die Freigabe wird ablaufen am %s.\n\n", "Cheers!" => "Hallo!", "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", @@ -165,7 +164,6 @@ $TRANSLATIONS = array( "Log in" => "Einloggen", "Alternative Logins" => "Alternative Logins", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Hallo,

wollte dich nur kurz informieren, dass %s gerade %s mit dir geteilt hat.
Schau es dir an.

", -"The share will expire on %s.

" => "Die Freigabe wird ablaufen am %s.

", "Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern.", "This ownCloud instance is currently being updated, which may take a while." => "Diese OwnCloud-Instanz wird gerade aktualisiert, was eine Weile dauert.", "Please reload this page after a short time to continue using ownCloud." => "Bitte lade diese Seite nach kurzer Zeit neu, um mit der Nutzung von OwnCloud fortzufahren.", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index 8832aad32b..7e7eaea065 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -1,12 +1,12 @@ "%s geteilt »%s« mit Ihnen", -"Couldn't send mail to following users: %s " => "Die E-Mail konnte nicht an folgende Benutzer gesendet werden: %s", +"Couldn't send mail to following users: %s " => "An folgende Benutzer konnte keine E-Mail gesendet werden: %s", "Turned on maintenance mode" => "Wartungsmodus eingeschaltet ", "Turned off maintenance mode" => "Wartungsmodus ausgeschaltet", "Updated database" => "Datenbank aktualisiert", -"Updating filecache, this may take really long..." => "Aktualisiere Dateicache, dies könnte eine Weile dauern...", -"Updated filecache" => "Dateicache aktualisiert", +"Updating filecache, this may take really long..." => "Aktualisiere Datei-Cache, dies könnte eine Weile dauern...", +"Updated filecache" => "Datei-Cache aktualisiert", "... %d%% done ..." => "... %d%% erledigt ...", "No image or file provided" => "Kein Bild oder Datei zur Verfügung gestellt", "Unknown filetype" => "Unbekannter Dateityp", @@ -53,7 +53,7 @@ $TRANSLATIONS = array( "_{count} file conflict_::_{count} file conflicts_" => array("{count} Dateikonflikt","{count} Dateikonflikte"), "One file conflict" => "Ein Dateikonflikt", "Which files do you want to keep?" => "Welche Dateien möchten Sie behalten?", -"If you select both versions, the copied file will have a number added to its name." => "Wenn Siebeide Versionen auswählen, erhält die kopierte Datei eine Zahl am Ende des Dateinamens.", +"If you select both versions, the copied file will have a number added to its name." => "Wenn Sie beide Versionen auswählen, erhält die kopierte Datei eine Zahl am Ende des Dateinamens.", "Cancel" => "Abbrechen", "Continue" => "Fortsetzen", "(all selected)" => "(Alle ausgewählt)", @@ -100,7 +100,7 @@ $TRANSLATIONS = array( "Delete" => "Löschen", "Add" => "Hinzufügen", "Edit tags" => "Schlagwörter bearbeiten", -"Error loading dialog template: {error}" => "Fehler beim Laden der Gesprächsvorlage: {error}", +"Error loading dialog template: {error}" => "Fehler beim Laden der Dialogvorlage: {error}", "No tags selected for deletion." => "Es wurden keine Schlagwörter zum Löschen ausgewählt.", "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.", @@ -131,16 +131,15 @@ $TRANSLATIONS = array( "Error unfavoriting" => "Fehler beim Entfernen aus den Favoriten", "Access forbidden" => "Zugriff verboten", "Cloud not found" => "Cloud wurde nicht gefunden", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hallo,\n\nich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.\nSchauen Sie es sich an: %s\n\n", -"The share will expire on %s.\n\n" => "Die Freigabe wird ablaufen am %s.\n\n", -"Cheers!" => "Hallo!", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hallo,\n\n%s hat %s mit Ihnen geteilt.\nSchauen Sie es sich an: %s\n\n", +"Cheers!" => "Noch einen schönen Tag!", "Security Warning" => "Sicherheitshinweis", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Ihre PHP Version ist durch die NULL Byte Attacke (CVE-2006-7243) angreifbar", "Please update your PHP installation to use %s securely." => "Bitte aktualisieren Sie Ihre PHP-Installation um %s 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 aktivieren Sie 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 Ihr Konto zu übernehmen.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Ihr Datenverzeichnis und Ihre 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." => "Für Informationen, wie Sie Ihren Server richtig konfigurieren lesen Sie bitte die Dokumentation.", +"For information how to properly configure your server, please see the documentation." => "Bitte lesen Sie die Dokumentation, um zu erfahren, wie Sie Ihr Server richtig konfigurieren können.", "Create an admin account" => "Administrator-Konto anlegen", "Advanced" => "Fortgeschritten", "Data folder" => "Datenverzeichnis", @@ -158,17 +157,16 @@ $TRANSLATIONS = array( "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.", -"Server side authentication failed!" => "Serverseitige Authentifizierung fehlgeschlagen!", +"Server side authentication failed!" => "Die Authentifizierung auf dem Server ist fehlgeschlagen!", "Please contact your administrator." => "Bitte kontaktieren Sie Ihren Administrator.", "Lost your password?" => "Passwort vergessen?", "remember" => "merken", "Log in" => "Einloggen", "Alternative Logins" => "Alternative Logins", -"Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Hallo,

ich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.
Schauen Sie es sich an!

", -"The share will expire on %s.

" => "Die Freigabe wird ablaufen am %s.

", +"Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Hallo,

%s hat %s mit Ihnen geteilt.
Schauen Sie es sich an!

", "Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern.", -"This ownCloud instance is currently being updated, which may take a while." => "Diese OwnCloud-Instanz wird gerade aktualisiert, was eine Weile dauert.", -"Please reload this page after a short time to continue using ownCloud." => "Bitte laden Sie diese Seite nach kurzer Zeit neu, um mit der Nutzung von OwnCloud fortzufahren.", +"This ownCloud instance is currently being updated, which may take a while." => "Diese ownCloud-Instanz wird gerade aktualisiert, was eine Weile dauert.", +"Please reload this page after a short time to continue using ownCloud." => "Bitte laden Sie diese Seite nach kurzer Zeit neu, um mit der Nutzung von ownCloud fortzufahren.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Kontaktieren Sie Ihren Systemadministrator, wenn diese Meldung dauerhaft oder unerwartet erscheint.", "Thank you for your patience." => "Vielen Dank für Ihre Geduld." ); diff --git a/core/l10n/en_GB.php b/core/l10n/en_GB.php index 7ead84a874..b13e44b64c 100644 --- a/core/l10n/en_GB.php +++ b/core/l10n/en_GB.php @@ -132,7 +132,6 @@ $TRANSLATIONS = array( "Access forbidden" => "Access denied", "Cloud not found" => "Cloud not found", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n", -"The share will expire on %s.\n\n" => "The share will expire on %s.\n\n", "Cheers!" => "Cheers!", "Security Warning" => "Security Warning", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)", @@ -165,7 +164,6 @@ $TRANSLATIONS = array( "Log in" => "Log in", "Alternative Logins" => "Alternative Logins", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Hey there,

just letting you know that %s shared »%s« with you.
View it!

", -"The share will expire on %s.

" => "The share will expire on %s.

", "Updating ownCloud to version %s, this may take a while." => "Updating ownCloud to version %s, this may take a while.", "This ownCloud instance is currently being updated, which may take a while." => "This ownCloud instance is currently being updated, which may take a while.", "Please reload this page after a short time to continue using ownCloud." => "Please reload this page after a short time to continue using ownCloud.", diff --git a/core/l10n/es.php b/core/l10n/es.php index f938218d43..df765ab212 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -132,7 +132,6 @@ $TRANSLATIONS = array( "Access forbidden" => "Acceso denegado", "Cloud not found" => "No se encuentra la nube", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hola:\n\nTan solo queremos informarte que %s compartió %s contigo.\nMíralo aquí: %s\n\n", -"The share will expire on %s.\n\n" => "El objeto dejará de ser compartido el %s.\n\n", "Cheers!" => "¡Saludos!", "Security Warning" => "Advertencia de seguridad", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Su versión de PHP es vulnerable al ataque de Byte NULL (CVE-2006-7243)", @@ -165,7 +164,6 @@ $TRANSLATIONS = array( "Log in" => "Entrar", "Alternative Logins" => "Inicios de sesión alternativos", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Hola:

tan solo queremos informarte que %s compartió «%s» contigo.
¡Míralo acá!

", -"The share will expire on %s.

" => "El objeto dejará de ser compartido el %s.

", "Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo.", "This ownCloud instance is currently being updated, which may take a while." => "Esta versión de owncloud se está actualizando, esto puede demorar un tiempo.", "Please reload this page after a short time to continue using ownCloud." => "Por favor , recargue esta instancia de onwcloud tras un corto periodo de tiempo y continue usándolo.", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index b56038a212..e0a0ca964b 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -132,7 +132,6 @@ $TRANSLATIONS = array( "Access forbidden" => "Ligipääs on keelatud", "Cloud not found" => "Pilve ei leitud", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hei,\n\nlihtsalt annan sulle teada, et %s jagas sulle välja %s.\nVaata seda: %s\n\n", -"The share will expire on %s.\n\n" => "Jagamine aegub %s.\n\n", "Cheers!" => "Terekest!", "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.", @@ -165,7 +164,6 @@ $TRANSLATIONS = array( "Log in" => "Logi sisse", "Alternative Logins" => "Alternatiivsed sisselogimisviisid", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Hei,

lihtsalt annan sulle teada, et %s jagas sulle välja »%s«.
Vaata seda!

", -"The share will expire on %s.

" => "Jagamine aegub %s.

", "Updating ownCloud to version %s, this may take a while." => "ownCloudi uuendamine versioonile %s. See võib veidi aega võtta.", "This ownCloud instance is currently being updated, which may take a while." => "Seda ownCloud instantsi hetkel uuendatakse, võib võtta veidi aega.", "Please reload this page after a short time to continue using ownCloud." => "Palun laadi see leht uuesti veidi aja pärast jätkamaks ownCloud kasutamist.", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 3462ab5c98..e6f5512808 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -121,7 +121,6 @@ $TRANSLATIONS = array( "Access forbidden" => "Pääsy estetty", "Cloud not found" => "Pilveä ei löydy", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hei sinä!\n\n%s jakoi kohteen %s kanssasi.\nTutustu siihen: %s\n\n", -"The share will expire on %s.\n\n" => "Jakaminen päättyy %s.\n\n", "Security Warning" => "Turvallisuusvaroitus", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "PHP-asennuksesi on haavoittuvainen NULL Byte -hyökkäykselle (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Päivitä PHP-asennus varmistaaksesi, että %s on turvallinen käyttää.", @@ -152,7 +151,6 @@ $TRANSLATIONS = array( "Log in" => "Kirjaudu sisään", "Alternative Logins" => "Vaihtoehtoiset kirjautumiset", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Hei sinä!

%s jakoi kohteen »%s« kanssasi.
Tutustu siihen!

", -"The share will expire on %s.

" => "Jakaminen päättyy %s.

", "Updating ownCloud to version %s, this may take a while." => "Päivitetään ownCloud versioon %s, tämä saattaa kestää hetken.", "Thank you for your patience." => "Kiitos kärsivällisyydestäsi." ); diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 624dd54575..7668f589a8 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -132,7 +132,6 @@ $TRANSLATIONS = array( "Access forbidden" => "Accès interdit", "Cloud not found" => "Introuvable", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Bonjour,\n\nJuste pour vous signaler que %s a partagé %s avec vous.\nConsultez-le : %s\n", -"The share will expire on %s.\n\n" => "Le partage expire le %s.\n\n", "Cheers!" => "Salutations!", "Security Warning" => "Avertissement de sécurité", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Votre version de PHP est vulnérable à l'attaque par caractère NULL (CVE-2006-7243)", @@ -165,7 +164,6 @@ $TRANSLATIONS = array( "Log in" => "Connexion", "Alternative Logins" => "Logins alternatifs", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Bonjour,

Juste pour vous informer que %s a partagé »%s« avec vous.
Consultez-le !

", -"The share will expire on %s.

" => "Le partage expirera le %s.

", "Updating ownCloud to version %s, this may take a while." => "Mise à jour en cours d'ownCloud vers la version %s, cela peut prendre du temps.", "This ownCloud instance is currently being updated, which may take a while." => "Cette instance d'ownCloud est en cours de mise à jour, cela peut prendre du temps.", "Please reload this page after a short time to continue using ownCloud." => "Merci de recharger cette page après un moment pour continuer à utiliser ownCloud.", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 6a5c5ed56e..28240af837 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -132,7 +132,6 @@ $TRANSLATIONS = array( "Access forbidden" => "Acceso denegado", "Cloud not found" => "Nube non atopada", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Ola,\n\nsó facerlle saber que %s compartiu %s con vostede.\nVéxao en: %s\n\n", -"The share will expire on %s.\n\n" => "Esta compartición caduca o %s.\n\n", "Cheers!" => "Saúdos!", "Security Warning" => "Aviso de seguranza", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "A súa versión de PHP é vulnerábel a un ataque de byte nulo (CVE-2006-7243)", @@ -165,7 +164,6 @@ $TRANSLATIONS = array( "Log in" => "Conectar", "Alternative Logins" => "Accesos alternativos", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Ola,

Só facerlle saber que %s compartiu «%s» con vostede.
Véxao!

", -"The share will expire on %s.

" => "Esta compartición caduca o %s.

", "Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a versión %s, esto pode levar un anaco.", "This ownCloud instance is currently being updated, which may take a while." => "Esta instancia do ownCloud está actualizandose neste momento, pode levarlle un chisco.", "Please reload this page after a short time to continue using ownCloud." => "Volva cargar a páxina de aquí a pouco para para continuar co ownCloud.", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 7a8cdee925..7c67bb9d22 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -132,7 +132,6 @@ $TRANSLATIONS = array( "Access forbidden" => "A hozzáférés nem engedélyezett", "Cloud not found" => "A felhő nem található", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Szia!\\n\n\\n\nÉrtesítünk, hogy %s megosztotta veled a következőt: %s.\\n\nItt tudod megnézni: %s\\n\n\\n", -"The share will expire on %s.\n\n" => "A megosztás ekkor jár le: %s\\n\n\\n", "Cheers!" => "Üdv.", "Security Warning" => "Biztonsági figyelmeztetés", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Az Ön PHP verziója sebezhető a NULL bájtos támadással szemben (CVE-2006-7243)", @@ -165,7 +164,6 @@ $TRANSLATIONS = array( "Log in" => "Bejelentkezés", "Alternative Logins" => "Alternatív bejelentkezés", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Szia!

Értesítünk, hogy %s megosztotta veled a következőt: »%s«.
Ide kattintva tudod megnézni

", -"The share will expire on %s.

" => "A megosztás ekkor jár le: %s

", "Updating ownCloud to version %s, this may take a while." => "Owncloud frissítés a %s verzióra folyamatban. Kis türelmet.", "This ownCloud instance is currently being updated, which may take a while." => "Az Owncloud frissítés elezdődött, eltarthat egy ideig.", "Please reload this page after a short time to continue using ownCloud." => "Frissitsd az oldalt ha \"Please reload this page after a short time to continue using ownCloud. \"", diff --git a/core/l10n/it.php b/core/l10n/it.php index 353bbe0705..80536e2dbe 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -132,7 +132,6 @@ $TRANSLATIONS = array( "Access forbidden" => "Accesso negato", "Cloud not found" => "Nuvola non trovata", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Ciao,\n\nvolevo informarti che %s ha condiviso %s con te.\nVedi: %s\n\n", -"The share will expire on %s.\n\n" => "La condivisione scadrà il %s.\n\n", "Cheers!" => "Saluti!", "Security Warning" => "Avviso di sicurezza", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "La tua versione di PHP è vulnerabile all'attacco NULL Byte (CVE-2006-7243)", @@ -165,7 +164,6 @@ $TRANSLATIONS = array( "Log in" => "Accedi", "Alternative Logins" => "Accessi alternativi", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Ciao,

volevo informarti che %s ha condiviso %s con te.
Vedi!

", -"The share will expire on %s.

" => "La condivisione scadrà il %s.

", "Updating ownCloud to version %s, this may take a while." => "Aggiornamento di ownCloud alla versione %s in corso, ciò potrebbe richiedere del tempo.", "This ownCloud instance is currently being updated, which may take a while." => "Questa istanza di ownCloud è in fase di aggiornamento, potrebbe richiedere del tempo.", "Please reload this page after a short time to continue using ownCloud." => "Ricarica questa pagina per poter continuare ad usare ownCloud.", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 6b525223e9..e2019960ae 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -132,7 +132,6 @@ $TRANSLATIONS = array( "Access forbidden" => "アクセスが禁止されています", "Cloud not found" => "見つかりません", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "こんにちは、\n\n%s があなたと %s を共有したことをお知らせします。\nそれを表示: %s\n", -"The share will expire on %s.\n\n" => "共有は %s で有効期限が切れます。\n\n", "Cheers!" => "それでは!", "Security Warning" => "セキュリティ警告", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "あなたのPHPのバージョンには、Null Byte攻撃(CVE-2006-7243)という脆弱性が含まれています。", @@ -165,7 +164,6 @@ $TRANSLATIONS = array( "Log in" => "ログイン", "Alternative Logins" => "代替ログイン", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "こんにちは、

%sがあなたと »%s« を共有したことをお知らせします。
それを表示

", -"The share will expire on %s.

" => "共有は %s で有効期限が切れます。

", "Updating ownCloud to version %s, this may take a while." => "ownCloud をバージョン %s に更新しています、しばらくお待ち下さい。", "This ownCloud instance is currently being updated, which may take a while." => "この ownCloud インスタンスは現在更新中であり、しばらく時間がかかります。", "Please reload this page after a short time to continue using ownCloud." => "ownCloud を続けて利用するには、しばらくした後でページをリロードしてください。", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index f7fc7203bb..bed1756cb4 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -129,7 +129,6 @@ $TRANSLATIONS = array( "Access forbidden" => "Priėjimas draudžiamas", "Cloud not found" => "Negalima rasti", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Labas,\n\nInformuojame, kad %s pasidalino su Jumis %s.\nPažiūrėti tai: %s\n", -"The share will expire on %s.\n\n" => "Bendrinimo laikas baigsis %s.\n", "Cheers!" => "Sveikinimai!", "Security Warning" => "Saugumo pranešimas", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Jūsų PHP versija yra pažeidžiama prieš NULL Byte ataką (CVE-2006-7243)", @@ -162,7 +161,6 @@ $TRANSLATIONS = array( "Log in" => "Prisijungti", "Alternative Logins" => "Alternatyvūs prisijungimai", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Labas,

tik informuojame, kad %s pasidalino su Jumis »%s«.
Peržiūrėk!

", -"The share will expire on %s.

" => "Bendrinimo laikas baigsis %s.

", "Updating ownCloud to version %s, this may take a while." => "Atnaujinama ownCloud į %s versiją. tai gali šiek tiek užtrukti.", "This ownCloud instance is currently being updated, which may take a while." => "Šiuo metu vyksta ownCloud atnaujinamas, tai gali šiek tiek užtrukti.", "Please reload this page after a short time to continue using ownCloud." => "Po trupučio laiko atnaujinkite šį puslapį kad galėtumėte toliau naudoti ownCloud.", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index 62d319a65e..bc40a6c2ff 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -115,7 +115,6 @@ $TRANSLATIONS = array( "Access forbidden" => "Забранет пристап", "Cloud not found" => "Облакот не е најден", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Здраво,\n\nСамо да ве известам дека %s shared %s with you.\nView it: %s\n\n", -"The share will expire on %s.\n\n" => "Споделувањето ќе заврши на %s.\n\n", "Cheers!" => "Поздрав!", "Security Warning" => "Безбедносно предупредување", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Вашата верзија на PHP е ранлива на NULL Byte attack (CVE-2006-7243)", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 8b7ad7d32d..12ea9e0233 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -132,7 +132,6 @@ $TRANSLATIONS = array( "Access forbidden" => "Toegang verboden", "Cloud not found" => "Cloud niet gevonden", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hallo daar,\n\neven een berichtje dat %s %s met u deelde.\nBekijk het: %s\n\n", -"The share will expire on %s.\n\n" => "De Share vervalt op %s.\n\n\n\n", "Cheers!" => "Proficiat!", "Security Warning" => "Beveiligingswaarschuwing", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Je PHP-versie is kwetsbaar voor de NULL byte aanval (CVE-2006-7243)", @@ -165,7 +164,6 @@ $TRANSLATIONS = array( "Log in" => "Meld je aan", "Alternative Logins" => "Alternatieve inlogs", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Hallo daar,

even een berichtje dat %s »%s« met u deelde.
Bekijk hier!

", -"The share will expire on %s.

" => "Het delen stopt op %s.

", "Updating ownCloud to version %s, this may take a while." => "Updaten ownCloud naar versie %s, dit kan even duren...", "This ownCloud instance is currently being updated, which may take a while." => "Deze ownCloud dienst wordt nu bijgewerkt, dat kan even duren.", "Please reload this page after a short time to continue using ownCloud." => "Laad deze pagina straks opnieuw om verder te gaan met ownCloud.", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index d9d1730cd4..7cf5be575f 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -61,6 +61,7 @@ $TRANSLATIONS = array( "Error while changing permissions" => "Błąd przy zmianie uprawnień", "Shared with you and the group {group} by {owner}" => "Udostępnione tobie i grupie {group} przez {owner}", "Shared with you by {owner}" => "Udostępnione tobie przez {owner}", +"Share link" => "Udostępnij link", "Password protect" => "Zabezpiecz hasłem", "Password" => "Hasło", "Allow Public Upload" => "Pozwól na publiczne wczytywanie", @@ -74,6 +75,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Współdzielenie nie jest możliwe", "Shared in {item} with {user}" => "Współdzielone w {item} z {user}", "Unshare" => "Zatrzymaj współdzielenie", +"notify by email" => "powiadom przez emaila", "can edit" => "może edytować", "access control" => "kontrola dostępu", "create" => "utwórz", @@ -119,7 +121,6 @@ $TRANSLATIONS = array( "Error untagging" => "Błąd odtagowania", "Access forbidden" => "Dostęp zabroniony", "Cloud not found" => "Nie odnaleziono chmury", -"The share will expire on %s.\n\n" => "Udostępnienie wygaśnie w dniu %s.\n\n", "Cheers!" => "Pozdrawiam!", "Security Warning" => "Ostrzeżenie o zabezpieczeniach", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Twója wersja PHP jest narażona na NULL Byte attack (CVE-2006-7243)", @@ -152,7 +153,7 @@ $TRANSLATIONS = array( "Log in" => "Zaloguj", "Alternative Logins" => "Alternatywne loginy", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Cześć,

Informuję cię że %s udostępnia ci »%s«.\n
Zobacz!

", -"The share will expire on %s.

" => "Udostępnienie wygaśnie w dniu %s.

", -"Updating ownCloud to version %s, this may take a while." => "Aktualizowanie ownCloud do wersji %s. Może to trochę potrwać." +"Updating ownCloud to version %s, this may take a while." => "Aktualizowanie ownCloud do wersji %s. Może to trochę potrwać.", +"Thank you for your patience." => "Dziękuję za cierpliwość." ); $PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index ed98ff09e5..6978e9e17a 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -132,7 +132,6 @@ $TRANSLATIONS = array( "Access forbidden" => "Acesso proibido", "Cloud not found" => "Cloud não encontrado", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Olá,\n\ngostaria que você soubesse que %s compartilhou %s com vecê.\nVeja isto: %s\n\n", -"The share will expire on %s.\n\n" => "O compartilhamento irá expirer em %s.\n\n", "Cheers!" => "Saúde!", "Security Warning" => "Aviso de Segurança", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Sua versão do PHP está vulnerável ao ataque NULL Byte (CVE-2006-7243)", @@ -165,7 +164,6 @@ $TRANSLATIONS = array( "Log in" => "Fazer login", "Alternative Logins" => "Logins alternativos", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Olá,

só gostaria que você soubesse que %s compartilhou »%s« com você.
Veja isto!

" => "O compartilhamento irá expirar em %s.

", "Updating ownCloud to version %s, this may take a while." => "Atualizando ownCloud para a versão %s, isto pode levar algum tempo.", "This ownCloud instance is currently being updated, which may take a while." => "Esta instância do ownCloud está sendo atualizada, o que pode demorar um pouco.", "Please reload this page after a short time to continue using ownCloud." => "Por favor, atualize esta página depois de um curto período de tempo para continuar usando ownCloud.", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 68cbad60d3..27ae806fd5 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -132,7 +132,6 @@ $TRANSLATIONS = array( "Access forbidden" => "Доступ запрещён", "Cloud not found" => "Облако не найдено", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Здравствуйте,\n\nпросто даём вам знать, что %s расшарил %s для вас.\nПосмотреть: %s\n\n", -"The share will expire on %s.\n\n" => "Шара закончится %s\n\n", "Cheers!" => "Приветствуем!", "Security Warning" => "Предупреждение безопасности", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Ваша версия PHP уязвима к атаке NULL Byte (CVE-2006-7243)", @@ -165,11 +164,10 @@ $TRANSLATIONS = array( "Log in" => "Войти", "Alternative Logins" => "Альтернативные имена пользователя", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Здравствуйте,

просто даём вам знать, что %s расшарил %s для вас.
Посмотреть!

", -"The share will expire on %s.

" => "Шара закончится %s.

", "Updating ownCloud to version %s, this may take a while." => "Идёт обновление ownCloud до версии %s. Это может занять некоторое время.", "This ownCloud instance is currently being updated, which may take a while." => "Производится обновление ownCloud, это может занять некоторое время.", -"Please reload this page after a short time to continue using ownCloud." => "Перезагрузите эту страницу через короткое время чтобы продолжить использовать ownCloud.", +"Please reload this page after a short time to continue using ownCloud." => "Перезагрузите эту страницу через некоторое время чтобы продолжить использовать ownCloud.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Обратитесь к вашему системному администратору если это сообщение не исчезает или появляется неожиданно.", -"Thank you for your patience." => "Спасибо за ваше терпение." +"Thank you for your patience." => "Спасибо за терпение." ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/core/l10n/ru_RU.php b/core/l10n/ru_RU.php index 06e9392092..82c5d0d77f 100644 --- a/core/l10n/ru_RU.php +++ b/core/l10n/ru_RU.php @@ -13,6 +13,7 @@ $TRANSLATIONS = array( "Error" => "Ошибка", "Password" => "Пароль", "Warning" => "Предупреждение", +"Delete" => "Удалить", "Username" => "Имя пользователя", "Help" => "Помощь" ); diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index 1957a5d65b..7e6a404db7 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -131,7 +131,6 @@ $TRANSLATIONS = array( "Access forbidden" => "Prístup odmietnutý", "Cloud not found" => "Nenájdené", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Ahoj,\n\nchcem ti dať navedomie, že %s zdieľa %s s tebou.\nZobrazenie tu: %s\n\n", -"The share will expire on %s.\n\n" => "Zdieľanie vyexpiruje %s.\n\n", "Cheers!" => "Za zdravie!", "Security Warning" => "Bezpečnostné varovanie", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Verzia Vášho PHP je napadnuteľná pomocou techniky \"NULL Byte\" (CVE-2006-7243)", @@ -164,7 +163,6 @@ $TRANSLATIONS = array( "Log in" => "Prihlásiť sa", "Alternative Logins" => "Alternatívne prihlásenie", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Ahoj,

chcem ti dať navedomie, že %s zdieľa »%s« s tebou.
Zobrazenie tu!

", -"The share will expire on %s.

" => "Zdieľanie vyexpiruje %s.

", "Updating ownCloud to version %s, this may take a while." => "Aktualizujem ownCloud na verziu %s, môže to chvíľu trvať.", "This ownCloud instance is currently being updated, which may take a while." => "Táto inštancia ownCloud sa práve aktualizuje, čo môže nejaký čas trvať.", "Please reload this page after a short time to continue using ownCloud." => "Prosím obnovte túto stránku a po krátkej dobe môžete pokračovať v používaní.", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 0279fb4146..85958b0e81 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -1,9 +1,18 @@ "%s je delil »%s« z vami", +"%s shared »%s« with you" => "%s je omogočil souporabo »%s«", +"Couldn't send mail to following users: %s " => "Ni mogoče poslati sporočila za: %s", +"Turned on maintenance mode" => "Vzdrževalni način je omogočen", +"Turned off maintenance mode" => "Vzdrževalni način je onemogočen", "Updated database" => "Posodobljena podatkovna zbirka", +"Updating filecache, this may take really long..." => "Poteka posodabljanje predpomnilnika datotek. Opravilo je lahko dolgotrajno ...", +"Updated filecache" => "Predpomnilnik datotek je posodobljen", +"... %d%% done ..." => "... %d%% končano ...", +"No image or file provided" => "Ni podane datoteke ali slike", "Unknown filetype" => "Neznana vrsta datoteke", "Invalid image" => "Neveljavna slika", +"No temporary profile picture available, try again" => "Na voljo ni nobene začasne slike za profil. Poskusite znova.", +"No crop data provided" => "Ni podanih podatkov obreza", "Sunday" => "nedelja", "Monday" => "ponedeljek", "Tuesday" => "torek", @@ -25,25 +34,31 @@ $TRANSLATIONS = array( "December" => "december", "Settings" => "Nastavitve", "seconds ago" => "pred nekaj sekundami", -"_%n minute ago_::_%n minutes ago_" => array("","","","pred %n minutami"), -"_%n hour ago_::_%n hours ago_" => array("","","","pred %n urami"), +"_%n minute ago_::_%n minutes ago_" => array("pred %n minuto","pred %n minutama","pred %n minutami","pred %n minutami"), +"_%n hour ago_::_%n hours ago_" => array("pred %n uro","pred %n urama","pred %n urami","pred %n urami"), "today" => "danes", "yesterday" => "včeraj", -"_%n day ago_::_%n days ago_" => array("","","","pred %n dnevi"), +"_%n day ago_::_%n days ago_" => array("pred %n dnevom","pred %n dnevoma","pred %n dnevi","pred %n dnevi"), "last month" => "zadnji mesec", -"_%n month ago_::_%n months ago_" => array("","","","pred %n meseci"), +"_%n month ago_::_%n months ago_" => array("pred %n mesecem","pred %n mesecema","pred %n meseci","pred %n meseci"), "months ago" => "mesecev nazaj", "last year" => "lansko leto", "years ago" => "let nazaj", "Choose" => "Izbor", +"Error loading file picker template: {error}" => "Napaka nalaganja predloge izbirnika datotek: {error}", "Yes" => "Da", "No" => "Ne", "Ok" => "V redu", -"_{count} file conflict_::_{count} file conflicts_" => array("","","",""), +"Error loading message template: {error}" => "Napaka nalaganja predloge sporočil: {error}", +"_{count} file conflict_::_{count} file conflicts_" => array("{count} spor datotek","{count} spora datotek","{count} spori datotek","{count} sporov datotek"), +"One file conflict" => "En spor datotek", +"Which files do you want to keep?" => "Katare datoteke želite ohraniti?", +"If you select both versions, the copied file will have a number added to its name." => "Če izberete obe različici, bo kopirani datoteki k imenu dodana številka.", "Cancel" => "Prekliči", "Continue" => "Nadaljuj", "(all selected)" => "(vse izbrano)", "({count} selected)" => "({count} izbranih)", +"Error loading file exists template" => "Napaka nalaganja predloge obstoječih datotek", "Shared" => "V souporabi", "Share" => "Souporaba", "Error" => "Napaka", @@ -52,19 +67,22 @@ $TRANSLATIONS = array( "Error while changing permissions" => "Napaka med spreminjanjem dovoljenj", "Shared with you and the group {group} by {owner}" => "V souporabi z vami in skupino {group}. Lastnik je {owner}.", "Shared with you by {owner}" => "V souporabi z vami. Lastnik je {owner}.", +"Share with user or group …" => "Souporaba z uporabnikom ali skupino ...", +"Share link" => "Povezava za prejem", "Password protect" => "Zaščiti z geslom", "Password" => "Geslo", -"Allow Public Upload" => "Dovoli javne prenose na strežnik", +"Allow Public Upload" => "Dovoli javno pošiljanje na strežnik", "Email link to person" => "Posreduj povezavo po elektronski pošti", "Send" => "Pošlji", "Set expiration date" => "Nastavi datum preteka", "Expiration date" => "Datum preteka", -"Share via email:" => "Souporaba preko elektronske pošte:", +"Share via email:" => "Pošlji povezavo do dokumenta preko elektronske pošte:", "No people found" => "Ni najdenih uporabnikov", "group" => "skupina", "Resharing is not allowed" => "Nadaljnja souporaba ni dovoljena", -"Shared in {item} with {user}" => "V souporabi v {item} z {user}", +"Shared in {item} with {user}" => "V souporabi v {item} z uporabnikom {user}", "Unshare" => "Prekliči souporabo", +"notify by email" => "obvesti po elektronski pošti", "can edit" => "lahko ureja", "access control" => "nadzor dostopa", "create" => "ustvari", @@ -78,17 +96,21 @@ $TRANSLATIONS = array( "Email sent" => "Elektronska pošta je poslana", "Warning" => "Opozorilo", "The object type is not specified." => "Vrsta predmeta ni podana.", +"Enter new" => "Vnesite novo", "Delete" => "Izbriši", "Add" => "Dodaj", "Edit tags" => "Uredi oznake", +"Error loading dialog template: {error}" => "Napaka nalaganja predloge pogovornega okna: {error}", +"No tags selected for deletion." => "Ni izbranih oznak za izbris.", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Posodobitev ni uspela. Pošljite poročilo o napaki na sistemu ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Posodobitev je uspešno končana. Stran bo preusmerjena na oblak ownCloud.", +"%s password reset" => "Ponastavitev gesla %s", "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", -"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Datoteke so šifrirane. Če niste omogočili ključa za obnovitev, žal podatkov ne bo mogoče pridobiti nazaj, ko boste geslo enkrat spremenili. Če niste prepričani, kaj storiti, se obrnite na skrbnika storitve. Ste prepričani, da želite nadaljevati?", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Datoteke so šifrirane. Če niste omogočili ključa za obnovitev, žal podatkov ne bo mogoče pridobiti nazaj, ko boste geslo enkrat spremenili. Če niste prepričani, kaj storiti, se obrnite na skrbnika storitve. Ali ste prepričani, da želite nadaljevati?", "Yes, I really want to reset my password now" => "Da, potrjujem ponastavitev gesla", "Reset" => "Ponastavi", "Your password was reset" => "Geslo je ponovno nastavljeno", @@ -101,15 +123,23 @@ $TRANSLATIONS = array( "Admin" => "Skrbništvo", "Help" => "Pomoč", "Error loading tags" => "Napaka nalaganja oznak", +"Tag already exists" => "Oznaka že obstaja", +"Error deleting tag(s)" => "Napaka brisanja oznak", +"Error tagging" => "Napaka označevanja", +"Error untagging" => "Napaka odstranjevanja oznak", +"Error favoriting" => "Napaka označevanja priljubljenosti", +"Error unfavoriting" => "Napaka odstranjevanja oznake priljubljenosti", "Access forbidden" => "Dostop je prepovedan", "Cloud not found" => "Oblaka ni mogoče najti", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Pozdravljeni,\n\noseba %s vam je omogočila souporabo %s.\nVir si lahko ogledate: %s\n\n", +"Cheers!" => "Na zdravje!", "Security Warning" => "Varnostno opozorilo", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Uporabljena različica PHP je ranljiva za napad NULL Byte (CVE-2006-7243)", -"Please update your PHP installation to use %s securely." => "Za varno uporabo storitve %s posodobite PHP", +"Please update your PHP installation to use %s securely." => "Za varno uporabo storitve %s, je treba posodobiti namestitev PHP", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Na voljo ni nobenega varnega ustvarjalnika naključnih števil. Omogočiti je treba razširitev PHP OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Brez varnega ustvarjalnika naključnih števil je mogoče napovedati žetone za ponastavitev gesla, s čimer je mogoče prevzeti nadzor nad računom.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Podatkovna mapa in datoteke so najverjetneje javno dostopni preko interneta, saj datoteka .htaccess ni ustrezno nastavljena.", -"For information how to properly configure your server, please see the documentation." => "Za navodila, kako pravilno nastaviti vaš strežnik, kliknite na povezavo do dokumentacije.", +"For information how to properly configure your server, please see the documentation." => "Za več informacij o pravilnem nastavljanju strežnika, kliknite na povezavo do dokumentacije.", "Create an admin account" => "Ustvari skrbniški račun", "Advanced" => "Napredne možnosti", "Data folder" => "Podatkovna mapa", @@ -120,17 +150,24 @@ $TRANSLATIONS = array( "Database name" => "Ime podatkovne zbirke", "Database tablespace" => "Razpredelnica podatkovne zbirke", "Database host" => "Gostitelj podatkovne zbirke", -"Finish setup" => "Končaj namestitev", +"Finish setup" => "Končaj nastavitev", "Finishing …" => "Poteka zaključevanje opravila ...", "%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!", "Please change your password to secure your account again." => "Spremenite geslo za izboljšanje zaščite računa.", +"Server side authentication failed!" => "Overitev s strežnika je spodletela!", +"Please contact your administrator." => "Stopite v stik s skrbnikom sistema.", "Lost your password?" => "Ali ste pozabili geslo?", "remember" => "zapomni si", "Log in" => "Prijava", "Alternative Logins" => "Druge prijavne možnosti", -"Updating ownCloud to version %s, this may take a while." => "Posodabljanje sistema ownCloud na različico %s je lahko dolgotrajno." +"Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Pozdravljeni,

oseba %s vam je omogočila souporabo %s.
Vir si lahko ogledate na tem naslovu.

", +"Updating ownCloud to version %s, this may take a while." => "Posodabljanje sistema ownCloud na različico %s je lahko dolgotrajno.", +"This ownCloud instance is currently being updated, which may take a while." => "Nastavitev oblaka ownCloud se trenutno posodablja. Opravilo je lahko dolgotrajno ...", +"Please reload this page after a short time to continue using ownCloud." => "Ponovno naložite to stran po krajšem preteku časa in nadaljujte z uporabo oblaka ownCloud.", +"Contact your system administrator if this message persists or appeared unexpectedly." => "Stopite v stik s skrbnikom sistema, če se bo sporočilo še naprej nepričakovano prikazovalo.", +"Thank you for your patience." => "Hvala za potrpežljivost!" ); $PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/core/l10n/sv.php b/core/l10n/sv.php index b668bc108d..e40aafe202 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -132,7 +132,6 @@ $TRANSLATIONS = array( "Access forbidden" => "Åtkomst förbjuden", "Cloud not found" => "Hittade inget moln", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hej där,⏎\n⏎\nville bara meddela dig att %s delade %s med dig.⏎\nTitta på den: %s⏎\n⏎\n", -"The share will expire on %s.\n\n" => "Utdelningen kommer att upphöra %s.⏎\n⏎\n", "Cheers!" => "Vi höres!", "Security Warning" => "Säkerhetsvarning", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Din version av PHP är sårbar för NULL byte attack (CVE-2006-7243)", @@ -165,7 +164,6 @@ $TRANSLATIONS = array( "Log in" => "Logga in", "Alternative Logins" => "Alternativa inloggningar", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Hej där,

ville bara informera dig om att %s delade »%s« med dig.
Titta på den!

", -"The share will expire on %s.

" => "Utdelningen kommer att upphöra %s.

", "Updating ownCloud to version %s, this may take a while." => "Uppdaterar ownCloud till version %s, detta kan ta en stund.", "This ownCloud instance is currently being updated, which may take a while." => "Denna ownCloud instans håller på att uppdatera, vilket kan ta ett tag.", "Please reload this page after a short time to continue using ownCloud." => "Var god och ladda om denna sida efter en kort stund för att fortsätta använda ownCloud.", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 46cbaf8b14..c97f2842f1 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -132,7 +132,6 @@ $TRANSLATIONS = array( "Access forbidden" => "Erişim yasaklı", "Cloud not found" => "Bulut bulunamadı", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Merhaba,\n\nSadece %s sizinle %s paylaşımını yaptığını bildiriyoruz.\nBuradan bakabilirsiniz: %s\n\n", -"The share will expire on %s.\n\n" => "Paylaşım %s tarihinde bitecektir.\n\n", "Cheers!" => "Şerefe!", "Security Warning" => "Güvenlik Uyarisi", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "PHP sürümünüz NULL Byte saldırısına açık (CVE-2006-7243)", @@ -165,7 +164,6 @@ $TRANSLATIONS = array( "Log in" => "Giriş yap", "Alternative Logins" => "Alternatif Girişler", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Merhaba,

%s sizinle »%s« paylaşımında bulundu.
Paylaşımı gör!

İyi günler!", -"The share will expire on %s.

" => "Bu paylaşım %s tarihinde dolacaktır.

", "Updating ownCloud to version %s, this may take a while." => "Owncloud %s versiyonuna güncelleniyor. Biraz zaman alabilir.", "This ownCloud instance is currently being updated, which may take a while." => "Bu ownCloud örneği şu anda güncelleniyor, bu biraz zaman alabilir.", "Please reload this page after a short time to continue using ownCloud." => "ownCloud kullanmaya devam etmek için kısa bir süre sonra lütfen sayfayı yenileyin.", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 3fe65720ad..cfe4e69c12 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -131,7 +131,6 @@ $TRANSLATIONS = array( "Access forbidden" => "存取被拒", "Cloud not found" => "找不到網頁", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "嗨,\n\n%s 和你分享了 %s ,到這裡看它:%s\n", -"The share will expire on %s.\n\n" => "分享將於 %s 過期\n", "Cheers!" => "太棒了!", "Security Warning" => "安全性警告", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "您的 PHP 版本無法抵抗 NULL Byte 攻擊 (CVE-2006-7243)", @@ -164,7 +163,6 @@ $TRANSLATIONS = array( "Log in" => "登入", "Alternative Logins" => "其他登入方法", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "嗨,

%s 和你分享了 %s ,到這裡看它

", -"The share will expire on %s.

" => "分享將於 %s 過期

", "Updating ownCloud to version %s, this may take a while." => "正在將 ownCloud 升級至版本 %s ,這可能需要一點時間。", "This ownCloud instance is currently being updated, which may take a while." => "ownCloud 正在升級,請稍待一會。", "Please reload this page after a short time to continue using ownCloud." => "請稍後重新載入這個頁面就可以繼續使用 ownCloud", diff --git a/l10n/ach/core.po b/l10n/ach/core.po index e93c2d9909..cfe63445a8 100644 --- a/l10n/ach/core.po +++ b/l10n/ach/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-30 03:32-0400\n" -"PO-Revision-Date: 2013-10-30 07:32+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -276,12 +276,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690 -#: js/share.js:702 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:730 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -301,115 +301,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:272 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:275 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:305 js/share.js:342 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:316 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:358 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:380 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:388 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:391 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:393 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:396 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:399 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:402 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:405 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:447 js/share.js:677 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:690 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:702 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:717 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:728 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:752 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -579,14 +579,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -733,11 +731,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/ach/files.po b/l10n/ach/files.po index cfc445a7e2..ba6a0a5a61 100644 --- a/l10n/ach/files.po +++ b/l10n/ach/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-03 17:38+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:27 +#: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:127 +#: ajax/newfile.php:128 msgid "Error when creating the file" msgstr "" @@ -114,15 +114,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:153 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:143 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" @@ -142,24 +142,24 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:345 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:437 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:519 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:524 js/filelist.js:364 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:526 js/filelist.js:366 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,104 +183,108 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:392 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:582 js/filelist.js:649 js/files.js:587 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:583 js/filelist.js:650 js/files.js:593 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:590 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:793 js/filelist.js:831 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:34 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:46 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:50 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:63 +#: js/files.js:110 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:67 +#: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:71 +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:302 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error" msgstr "" -#: js/files.js:569 templates/index.php:56 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:570 templates/index.php:68 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:571 templates/index.php:70 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" diff --git a/l10n/ach/lib.po b/l10n/ach/lib.po index 7c60d49cd4..05450aabac 100644 --- a/l10n/ach/lib.po +++ b/l10n/ach/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-17 13:47-0400\n" -"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -24,31 +24,31 @@ msgid "" " of ownCloud." msgstr "" -#: private/app.php:254 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: private/app.php:359 +#: private/app.php:360 msgid "Help" msgstr "" -#: private/app.php:372 +#: private/app.php:373 msgid "Personal" msgstr "" -#: private/app.php:383 +#: private/app.php:384 msgid "Settings" msgstr "" -#: private/app.php:395 +#: private/app.php:396 msgid "Users" msgstr "" -#: private/app.php:408 +#: private/app.php:409 msgid "Admin" msgstr "" -#: private/app.php:872 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -284,54 +284,54 @@ msgstr "" msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:122 +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: private/template/functions.php:123 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:124 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:125 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: private/template/functions.php:126 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: private/template/functions.php:128 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:130 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:142 msgid "years ago" msgstr "" -#: private/template.php:297 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/ady/core.po b/l10n/ady/core.po index fd1468bc7d..7d819a31e9 100644 --- a/l10n/ady/core.po +++ b/l10n/ady/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-30 03:32-0400\n" -"PO-Revision-Date: 2013-10-30 07:32+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -276,12 +276,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690 -#: js/share.js:702 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:730 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -301,115 +301,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:272 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:275 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:305 js/share.js:342 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:316 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:358 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:380 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:388 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:391 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:393 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:396 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:399 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:402 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:405 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:447 js/share.js:677 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:690 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:702 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:717 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:728 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:752 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -579,14 +579,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -733,11 +731,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/ady/files.po b/l10n/ady/files.po index 6e92614ce5..850425a3c9 100644 --- a/l10n/ady/files.po +++ b/l10n/ady/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-03 17:38+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:27 +#: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:127 +#: ajax/newfile.php:128 msgid "Error when creating the file" msgstr "" @@ -114,15 +114,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:153 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:143 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" @@ -142,24 +142,24 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:345 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:437 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:519 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:524 js/filelist.js:364 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:526 js/filelist.js:366 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,104 +183,108 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:392 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:582 js/filelist.js:649 js/files.js:587 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:583 js/filelist.js:650 js/files.js:593 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:590 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:793 js/filelist.js:831 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:34 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:46 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:50 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:63 +#: js/files.js:110 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:67 +#: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:71 +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:302 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error" msgstr "" -#: js/files.js:569 templates/index.php:56 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:570 templates/index.php:68 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:571 templates/index.php:70 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" diff --git a/l10n/ady/lib.po b/l10n/ady/lib.po index 1160c589d3..a0cec5ac60 100644 --- a/l10n/ady/lib.po +++ b/l10n/ady/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-17 13:47-0400\n" -"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -24,31 +24,31 @@ msgid "" " of ownCloud." msgstr "" -#: private/app.php:254 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: private/app.php:359 +#: private/app.php:360 msgid "Help" msgstr "" -#: private/app.php:372 +#: private/app.php:373 msgid "Personal" msgstr "" -#: private/app.php:383 +#: private/app.php:384 msgid "Settings" msgstr "" -#: private/app.php:395 +#: private/app.php:396 msgid "Users" msgstr "" -#: private/app.php:408 +#: private/app.php:409 msgid "Admin" msgstr "" -#: private/app.php:872 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -284,54 +284,54 @@ msgstr "" msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:122 +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: private/template/functions.php:123 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:124 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:125 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: private/template/functions.php:126 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: private/template/functions.php:128 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:130 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:142 msgid "years ago" msgstr "" -#: private/template.php:297 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/af/core.po b/l10n/af/core.po index c9e47a9c5c..9e0ca8cd1a 100644 --- a/l10n/af/core.po +++ b/l10n/af/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-30 03:32-0400\n" -"PO-Revision-Date: 2013-10-30 07:32+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -276,12 +276,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690 -#: js/share.js:702 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:730 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -301,115 +301,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:272 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:275 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:305 js/share.js:342 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:316 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:358 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:380 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:388 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:391 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:393 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:396 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:399 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:402 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:405 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:447 js/share.js:677 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:690 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:702 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:717 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:728 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:752 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -579,14 +579,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -733,11 +731,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/af/files.po b/l10n/af/files.po index 2e8c98f2f1..8bf78f5f8c 100644 --- a/l10n/af/files.po +++ b/l10n/af/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-03 17:38+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:27 +#: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:127 +#: ajax/newfile.php:128 msgid "Error when creating the file" msgstr "" @@ -114,15 +114,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:153 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:143 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" @@ -142,24 +142,24 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:345 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:437 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:519 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:524 js/filelist.js:364 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:526 js/filelist.js:366 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,104 +183,108 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:392 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:582 js/filelist.js:649 js/files.js:587 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:583 js/filelist.js:650 js/files.js:593 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:590 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:793 js/filelist.js:831 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:34 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:46 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:50 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:63 +#: js/files.js:110 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:67 +#: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:71 +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:302 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error" msgstr "" -#: js/files.js:569 templates/index.php:56 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:570 templates/index.php:68 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:571 templates/index.php:70 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" diff --git a/l10n/af/lib.po b/l10n/af/lib.po index 3d61e1419d..9cba7b7d1f 100644 --- a/l10n/af/lib.po +++ b/l10n/af/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-27 02:28-0400\n" -"PO-Revision-Date: 2013-10-21 18:25+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -332,6 +332,6 @@ msgstr "" msgid "years ago" msgstr "" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 3cf0a32276..d1d29aefd0 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -276,12 +276,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -301,115 +301,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Wagwoord" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -579,14 +579,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -733,11 +731,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index d6404577f2..06ed95ca8d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-03 17:38+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:27 +#: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:127 +#: ajax/newfile.php:128 msgid "Error when creating the file" msgstr "" @@ -114,15 +114,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:153 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:143 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" @@ -142,24 +142,24 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:345 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:437 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:519 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:524 js/filelist.js:364 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:526 js/filelist.js:366 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,104 +183,108 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:392 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:582 js/filelist.js:649 js/files.js:587 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:583 js/filelist.js:650 js/files.js:593 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:590 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:793 js/filelist.js:831 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:34 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:46 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:50 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:63 +#: js/files.js:110 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:67 +#: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:71 +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:302 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error" msgstr "" -#: js/files.js:569 templates/index.php:56 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:570 templates/index.php:68 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:571 templates/index.php:70 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 294d58d0c4..1196cc344d 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "webdienste onder jou beheer" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -332,6 +332,6 @@ msgstr "" msgid "years ago" msgstr "" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index f05154da98..c96cf61031 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -297,12 +297,12 @@ msgstr "مشارك" msgid "Share" msgstr "شارك" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "خطأ" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "حصل خطأ عند عملية المشاركة" @@ -322,115 +322,115 @@ msgstr "شورك معك ومع المجموعة {group} من قبل {owner}" msgid "Shared with you by {owner}" msgstr "شورك معك من قبل {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "حماية كلمة السر" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "كلمة المرور" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "ارسل الرابط بالبريد الى صديق" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "أرسل" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "تاريخ إنتهاء الصلاحية" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "مشاركة عبر البريد الإلكتروني:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "لم يتم العثور على أي شخص" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "مجموعة" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "لا يسمح بعملية إعادة المشاركة" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "شورك في {item} مع {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "إلغاء مشاركة" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "التحرير مسموح" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "ضبط الوصول" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "إنشاء" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "تحديث" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "حذف" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "مشاركة" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "محمي بكلمة السر" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "جاري الارسال ..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "تم ارسال البريد الالكتروني" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "تحذير" @@ -600,14 +600,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -754,11 +752,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 614f7227e5..f276fe9881 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -157,11 +157,11 @@ msgstr "عملية رفع الملفات قيد التنفيذ. اغلاق ال msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} موجود مسبقا" @@ -185,23 +185,27 @@ msgstr "حذف بشكل دائم" msgid "Rename" msgstr "إعادة تسميه" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "قيد الانتظار" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "استبدل {new_name} بـ {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "تراجع" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "لا يوجد مجلدات %n" @@ -211,7 +215,7 @@ msgstr[3] "عدد قليل من مجلدات %n" msgstr[4] "عدد كبير من مجلدات %n" msgstr[5] "مجلدات %n" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "لا يوجد ملفات %n" @@ -221,11 +225,11 @@ msgstr[3] "قليل من ملفات %n" msgstr[4] "الكثير من ملفات %n" msgstr[5] " ملفات %n" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} و {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "لا يوجد ملفات %n لتحميلها" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index 2480f78e0d..e3eb7cc257 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 11:40+0000\n" "Last-Translator: Meesh \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -38,20 +38,20 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: lib/config.php:461 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:457 +#: lib/config.php:465 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:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -76,7 +76,7 @@ msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "" +msgstr "خيارات" #: templates/settings.php:13 msgid "Applicable" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index eb3bd65b79..bcd9ab3f53 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -31,7 +31,7 @@ msgstr "تعذّر استرجاع %s " msgid "Error" msgstr "خطأ" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 860f2aa6ab..71b1097504 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "خدمات الشبكة تحت سيطرتك" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "تحميل ملفات ZIP متوقف" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "الملفات بحاجة الى ان يتم تحميلها واحد تلو الاخر" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "العودة الى الملفات" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "الملفات المحددة كبيرة جدا ليتم ضغطها في ملف zip" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "اعداد اسم مستخدم للمدير" msgid "Set an admin password." msgstr "اعداد كلمة مرور للمدير" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "الرجاء التحقق من دليل التنصيب." @@ -348,6 +348,6 @@ msgstr "السنةالماضية" msgid "years ago" msgstr "سنة مضت" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index cb97cf6db9..5d3bdf55b7 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 68f2d39d31..93208f3631 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/be/core.po b/l10n/be/core.po index 7be33415f4..be33cfefba 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-30 03:32-0400\n" -"PO-Revision-Date: 2013-10-30 07:32+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -286,12 +286,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690 -#: js/share.js:702 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:730 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -311,115 +311,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:272 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:275 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:305 js/share.js:342 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:316 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:358 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:380 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:388 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:391 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:393 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:396 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:399 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:402 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:405 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:447 js/share.js:677 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:690 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:702 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:717 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:728 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:752 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -589,14 +589,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -743,11 +741,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/be/files.po b/l10n/be/files.po index bc4fe45355..8e6ece9234 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-03 17:38+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:27 +#: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:127 +#: ajax/newfile.php:128 msgid "Error when creating the file" msgstr "" @@ -114,15 +114,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:153 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:143 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" @@ -142,24 +142,24 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:345 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:437 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:519 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:524 js/filelist.js:364 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:526 js/filelist.js:366 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,23 +183,27 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:392 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:582 js/filelist.js:649 js/files.js:587 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -207,7 +211,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:583 js/filelist.js:650 js/files.js:593 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -215,11 +219,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:590 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:793 js/filelist.js:831 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -227,66 +231,66 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:34 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:46 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:50 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:63 +#: js/files.js:110 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:67 +#: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:71 +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:302 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error" msgstr "" -#: js/files.js:569 templates/index.php:56 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:570 templates/index.php:68 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:571 templates/index.php:70 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index f24674cd70..7dde7246ef 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-17 13:47-0400\n" -"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -24,31 +24,31 @@ msgid "" " of ownCloud." msgstr "" -#: private/app.php:254 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: private/app.php:359 +#: private/app.php:360 msgid "Help" msgstr "" -#: private/app.php:372 +#: private/app.php:373 msgid "Personal" msgstr "" -#: private/app.php:383 +#: private/app.php:384 msgid "Settings" msgstr "" -#: private/app.php:395 +#: private/app.php:396 msgid "Users" msgstr "" -#: private/app.php:408 +#: private/app.php:409 msgid "Admin" msgstr "" -#: private/app.php:872 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -284,11 +284,11 @@ msgstr "" msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:122 +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: private/template/functions.php:123 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -296,7 +296,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:124 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -304,15 +304,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:125 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: private/template/functions.php:126 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: private/template/functions.php:128 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" @@ -320,11 +320,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:130 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -332,14 +332,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:133 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:142 msgid "years ago" msgstr "" -#: private/template.php:297 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 1556069eeb..57daded09c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -276,12 +276,12 @@ msgstr "" msgid "Share" msgstr "Споделяне" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Грешка" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -301,115 +301,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Парола" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "създаване" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Внимание" @@ -579,14 +579,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -733,11 +731,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 9b37fc40bf..da1749fb85 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -155,11 +155,11 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,39 +183,43 @@ msgstr "Изтриване завинаги" msgid "Rename" msgstr "Преименуване" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Чакащо" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "възтановяване" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 327f471d51..8239f0abc7 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: lib/config.php:461 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:457 +#: lib/config.php:465 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:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 407955aa6c..a62aa28850 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "Невъзможно възтановяване на %s" msgid "Error" msgstr "Грешка" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index f7f1fcc178..68949be3cd 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -71,25 +71,25 @@ msgstr "уеб услуги под Ваш контрол" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "Изтеглянето като ZIP е изключено." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Файловете трябва да се изтеглят един по един." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Назад към файловете" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Избраните файлове са прекалено големи за генерирането на ZIP архив." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -134,17 +134,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -269,13 +269,13 @@ msgstr "Въведете потребителско име за админист msgid "Set an admin password." msgstr "Въведете парола за администратор." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Вашият web сървър все още не е удачно настроен да позволява синхронизация на файлове, защото WebDAV интерфейсът изглежда не работи." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Моля направете повторна справка с ръководството за инсталиране." @@ -333,6 +333,6 @@ msgstr "последната година" msgid "years ago" msgstr "последните години" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index fa07ecb06e..ae42b1ca12 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 48b07d5ab7..ef543816c5 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 5b207e85f1..345f351976 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -276,12 +276,12 @@ msgstr "ভাগাভাগিকৃত" msgid "Share" msgstr "ভাগাভাগি কর" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "সমস্যা" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে " @@ -301,115 +301,115 @@ msgstr "{owner} আপনার এবং {group} গোষ্ঠীর সা msgid "Shared with you by {owner}" msgstr "{owner} আপনার সাথে ভাগাভাগি করেছেন" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "কূটশব্দ সুরক্ষিত" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "কূটশব্দ" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "ব্যক্তির সাথে ই-মেইল যুক্ত কর" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "পাঠাও" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করুন" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "ই-মেইলের মাধ্যমে ভাগাভাগি করুনঃ" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "কোন ব্যক্তি খুঁজে পাওয়া গেল না" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "পূনঃরায় ভাগাভাগি অনুমোদিত নয়" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "{user} এর সাথে {item} ভাগাভাগি করা হয়েছে" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "ভাগাভাগি বাতিল " -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "সম্পাদনা করতে পারবেন" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "অধিগম্যতা নিয়ন্ত্রণ" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "তৈরী করুন" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "পরিবর্ধন কর" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "মুছে ফেল" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "ভাগাভাগি কর" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "কূটশব্দদ্বারা সুরক্ষিত" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "পাঠানো হচ্ছে......" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "ই-মেইল পাঠানো হয়েছে" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "সতর্কবাণী" @@ -579,14 +579,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -733,11 +731,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index b90aed7e64..edea470a22 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -155,11 +155,11 @@ msgstr "ফাইল আপলোড চলমান। এই পৃষ্ঠ msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} টি বিদ্যমান" @@ -183,39 +183,43 @@ msgstr "" msgid "Rename" msgstr "পূনঃনামকরণ" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "মুলতুবি" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "ক্রিয়া প্রত্যাহার" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 7417506a69..50383bb1fc 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "দয়া করে সঠিক এবং বৈধ Dropbox app key and msgid "Error configuring Google Drive storage" msgstr "Google Drive সংরক্ষণাগার নির্ধারণ করতে সমস্যা " -#: lib/config.php:453 +#: lib/config.php:461 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:457 +#: lib/config.php:465 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:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index a6bf6a3503..ee47e996cb 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -31,7 +31,7 @@ msgstr "" msgid "Error" msgstr "সমস্যা" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 8d08ad9749..934fde2d47 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "ওয়েব সার্ভিস আপনার হাতের ম msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "ZIP ডাউনলোড বন্ধ করা আছে।" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "ফাইলগুলো একে একে ডাউনলোড করা আবশ্যক।" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "ফাইলে ফিরে চল" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "নির্বাচিত ফাইলগুলো এতই বৃহৎ যে জিপ ফাইল তৈরী করা সম্ভব নয়।" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -332,6 +332,6 @@ msgstr "গত বছর" msgid "years ago" msgstr "বছর পূর্বে" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 23d79b356c..5e0e2d7242 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 5390d5ed48..2e26e50b2a 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index e22879aaa3..def9a6a543 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-30 03:32-0400\n" -"PO-Revision-Date: 2013-10-30 07:32+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -281,12 +281,12 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690 -#: js/share.js:702 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:730 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -306,115 +306,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:272 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:275 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:305 js/share.js:342 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:316 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:358 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:380 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:388 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:391 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:393 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:396 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:399 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:402 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:405 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:447 js/share.js:677 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:690 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:702 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:717 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:728 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:752 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -584,14 +584,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -738,11 +736,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 2a203e4a59..3172f0d204 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -155,11 +155,11 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,41 +183,45 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/bs/lib.po b/l10n/bs/lib.po index cae0b70cc3..52547ce4d3 100644 --- a/l10n/bs/lib.po +++ b/l10n/bs/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-17 13:47-0400\n" -"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -24,31 +24,31 @@ msgid "" " of ownCloud." msgstr "" -#: private/app.php:254 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: private/app.php:359 +#: private/app.php:360 msgid "Help" msgstr "" -#: private/app.php:372 +#: private/app.php:373 msgid "Personal" msgstr "" -#: private/app.php:383 +#: private/app.php:384 msgid "Settings" msgstr "" -#: private/app.php:395 +#: private/app.php:396 msgid "Users" msgstr "" -#: private/app.php:408 +#: private/app.php:409 msgid "Admin" msgstr "" -#: private/app.php:872 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -284,58 +284,58 @@ msgstr "" msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:122 +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: private/template/functions.php:123 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:124 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:125 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: private/template/functions.php:126 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: private/template/functions.php:128 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:130 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:133 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:142 msgid "years ago" msgstr "" -#: private/template.php:297 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/bs/user_ldap.po b/l10n/bs/user_ldap.po index cf227ba5d7..2d2efb2bf6 100644 --- a/l10n/bs/user_ldap.po +++ b/l10n/bs/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 534dab5819..2a3c60335b 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -278,12 +278,12 @@ msgstr "Compartit" msgid "Share" msgstr "Comparteix" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Error en compartir" @@ -303,115 +303,115 @@ msgstr "Compartit amb vos i amb el grup {group} per {owner}" msgid "Shared with you by {owner}" msgstr "Compartit amb vos per {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "Comparteix amb usuari o grup..." -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "Enllaç de compartició" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Protegir amb contrasenya" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Contrasenya" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Permet pujada pública" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Enllaç per correu electrónic amb la persona" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Envia" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Estableix la data de venciment" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Data de venciment" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Comparteix per correu electrònic" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "No s'ha trobat ningú" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "grup" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "No es permet compartir de nou" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Compartit en {item} amb {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Deixa de compartir" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "notifica per correu electrònic" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "pot editar" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "control d'accés" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "crea" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "actualitza" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "elimina" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "comparteix" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Protegeix amb contrasenya" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Error en eliminar la data de venciment" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Error en establir la data de venciment" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Enviant..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "El correu electrónic s'ha enviat" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Avís" @@ -581,14 +581,12 @@ msgid "" "\n" msgstr "Ei,\n\nnomés fer-te saber que %s ha compartit %s amb tu.\nMira-ho a: %s\n\n" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" -msgstr "El compartit té venciment a %s.\n\n" +msgid "The share will expire on %s." +msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "Salut!" @@ -735,11 +733,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "Ei,

només fer-te saber que %s ha compartit »%s« amb tu.
Mira-ho!

" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "El compartit té venciment a %s.

" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/ca/files.po b/l10n/ca/files.po index fd1d27d535..64eb3932cd 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -158,11 +158,11 @@ msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·l msgid "URL cannot be empty" msgstr "L'URL no pot ser buit" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "A la carpeta inici 'Compartit' és un nom de fitxer reservat" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} ja existeix" @@ -186,39 +186,43 @@ msgstr "Esborra permanentment" msgid "Rename" msgstr "Reanomena" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Pendent" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "No es pot canviar el nom de fitxer" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "s'ha substituït {old_name} per {new_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "desfés" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetes" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fitxer" msgstr[1] "%n fitxers" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} i {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Pujant %n fitxer" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index e4391cf531..e8defe258b 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -38,20 +38,20 @@ msgstr "Proporcioneu una clau d'aplicació i secret vàlids per a Dropbox" msgid "Error configuring Google Drive storage" msgstr "Error en configurar l'emmagatzemament Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "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." -#: lib/config.php:457 +#: lib/config.php:465 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 "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." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 53cf314a0f..dec2858e3b 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "No s'ha pogut restaurar %s" msgid "Error" msgstr "Error" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "restaurat" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 0f952f5be3..754d2b3200 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -71,27 +71,27 @@ msgstr "controleu els vostres serveis web" msgid "cannot open \"%s\"" msgstr "no es pot obrir \"%s\"" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "La baixada en ZIP està desactivada." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Els fitxers s'han de baixar d'un en un." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Torna a Fitxers" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Els fitxers seleccionats son massa grans per generar un fitxer zip." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Baixeu els fitxers en trossos petits, de forma separada, o pregunteu a l'administrador." +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -134,17 +134,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "L'aplicació no es pot instal·lar perquè conté l'etiqueta vertader que no es permet per aplicacions no enviades" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "L'aplicació no es pot instal·lar perquè la versió a info.xml/version no és la mateixa que la versió indicada des de la botiga d'aplicacions" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "La carpeta de l'aplicació ja existeix" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "No es pot crear la carpeta de l'aplicació. Arregleu els permisos. %s" @@ -269,13 +269,13 @@ msgstr "Establiu un nom d'usuari per l'administrador." msgid "Set an admin password." msgstr "Establiu una contrasenya per l'administrador." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Comproveu les guies d'instal·lació." @@ -333,6 +333,6 @@ msgstr "l'any passat" msgid "years ago" msgstr "anys enrere" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Provocat per:" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 20cb858450..4d77a86266 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index badfcd750b..9d65cb2642 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -4,13 +4,15 @@ # # Translators: # rogerc, 2013 +# rogerc, 2013 +# victek, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-20 22:00+0000\n" +"Last-Translator: Victek \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" @@ -89,15 +91,15 @@ msgstr "Error" #: js/settings.js:674 msgid "Configuration OK" -msgstr "" +msgstr "Configuració correcte" #: js/settings.js:683 msgid "Configuration incorrect" -msgstr "" +msgstr "Configuració incorrecte" #: js/settings.js:692 msgid "Configuration incomplete" -msgstr "" +msgstr "Configuració incompleta" #: js/settings.js:709 js/settings.js:718 msgid "Select groups" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 4fe8fba36b..93715abeee 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -287,12 +287,12 @@ msgstr "Sdílené" msgid "Share" msgstr "Sdílet" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Chyba" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Chyba při sdílení" @@ -312,115 +312,115 @@ msgstr "S Vámi a skupinou {group} sdílí {owner}" msgid "Shared with you by {owner}" msgstr "S Vámi sdílí {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Chránit heslem" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Heslo" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Povolit veřejné nahrávání" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Odeslat osobě odkaz e-mailem" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Odeslat" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Nastavit datum vypršení platnosti" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Datum vypršení platnosti" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Sdílet e-mailem:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Žádní lidé nenalezeni" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "skupina" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Sdílení již sdílené položky není povoleno" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Sdíleno v {item} s {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Zrušit sdílení" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "lze upravovat" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "řízení přístupu" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "vytvořit" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "aktualizovat" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "smazat" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "sdílet" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Chráněno heslem" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Chyba při odstraňování data vypršení platnosti" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Chyba při nastavení data vypršení platnosti" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Odesílám ..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "E-mail odeslán" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Varování" @@ -590,14 +590,12 @@ msgid "" "\n" msgstr "Hej ty tam,\n\njen ti chci dát vědět, že %s sdílel %s s tebou.\nZobraz si to: %s\n\n" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" -msgstr "Sdílení expiruje %s.\n\n" +msgid "The share will expire on %s." +msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "Ať slouží!" @@ -744,11 +742,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "Hej ty tam,

jen ti chci dát vědět, že %s sdílel »%s« s tebou.
Zobrazit!

" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "Sdílení expiruje %s.

" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 9a77407e82..7e61095758 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-15 13:50+0000\n" -"Last-Translator: Twiguard\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -189,7 +189,7 @@ msgstr "Trvale odstranit" msgid "Rename" msgstr "Přejmenovat" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:863 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Nevyřízené" @@ -205,25 +205,29 @@ msgstr "nahrazeno {new_name} s {old_name}" msgid "undo" msgstr "vrátit zpět" -#: js/filelist.js:584 js/filelist.js:658 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n složka" msgstr[1] "%n složky" msgstr[2] "%n složek" -#: js/filelist.js:585 js/filelist.js:659 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n soubor" msgstr[1] "%n soubory" msgstr[2] "%n souborů" -#: js/filelist.js:592 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} a {files}" -#: js/filelist.js:802 js/filelist.js:840 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Nahrávám %n soubor" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 2efdf764fc..9c03428285 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -38,20 +38,20 @@ msgstr "Zadejte, prosím, platný klíč a bezpečnostní frázi aplikace Dropbo msgid "Error configuring Google Drive storage" msgstr "Chyba při nastavení úložiště Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varování: není nainstalován program \"smbclient\". Není možné připojení oddílů CIFS/SMB. Prosím požádejte svého správce systému ať jej nainstaluje." -#: lib/config.php:457 +#: lib/config.php:465 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 "Varování: podpora FTP v PHP není povolena nebo není nainstalována. Není možné připojení oddílů FTP. Prosím požádejte svého správce systému ať ji nainstaluje." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 3d091b0979..a6242ccbee 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -33,7 +33,7 @@ msgstr "Nelze obnovit %s" msgid "Error" msgstr "Chyba" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "obnoveno" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 2bd7948ff5..73f20d08a0 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -73,27 +73,27 @@ msgstr "webové služby pod Vaší kontrolou" msgid "cannot open \"%s\"" msgstr "nelze otevřít \"%s\"" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "Stahování v ZIPu je vypnuto." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Soubory musí být stahovány jednotlivě." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Zpět k souborům" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Vybrané soubory jsou příliš velké pro vytvoření ZIP souboru." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Stáhněte soubory po menších částech, samostatně, nebo se obraťte na správce." +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -136,17 +136,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "Aplikace nemůže být nainstalována, protože obsahuje značku\n\n\ntrue\n\n\ncož není povoleno pro nedodávané aplikace" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Aplikace nemůže být nainstalována, protože verze uvedená v info.xml/version nesouhlasí s verzí oznámenou z úložiště aplikací." -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Adresář aplikace již existuje" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Nelze vytvořit složku aplikace. Opravte práva souborů. %s" @@ -271,13 +271,13 @@ msgstr "Zadejte uživatelské jméno správce." msgid "Set an admin password." msgstr "Zadejte heslo správce." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Váš webový server není správně nastaven pro umožnění synchronizace, rozhraní WebDAV se zdá být rozbité." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Zkonzultujte, prosím, průvodce instalací." @@ -339,6 +339,6 @@ msgstr "minulý rok" msgid "years ago" msgstr "před lety" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Příčina:" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 7bbf686a96..f11a5360cc 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-15 14:00+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Twiguard\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index eebe3c6e45..098ee12d3d 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 4551a826ae..4f235b1f84 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -287,12 +287,12 @@ msgstr "Rhannwyd" msgid "Share" msgstr "Rhannu" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Gwall" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Gwall wrth rannu" @@ -312,115 +312,115 @@ msgstr "Rhannwyd â chi a'r grŵp {group} gan {owner}" msgid "Shared with you by {owner}" msgstr "Rhannwyd â chi gan {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Diogelu cyfrinair" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Cyfrinair" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "E-bostio dolen at berson" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Anfon" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Gosod dyddiad dod i ben" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Dyddiad dod i ben" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Rhannu drwy e-bost:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Heb ganfod pobl" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "grŵp" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Does dim hawl ail-rannu" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Rhannwyd yn {item} â {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Dad-rannu" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "yn gallu golygu" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "rheolaeth mynediad" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "creu" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "diweddaru" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "dileu" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "rhannu" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Diogelwyd â chyfrinair" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Gwall wrth ddad-osod dyddiad dod i ben" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Gwall wrth osod dyddiad dod i ben" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Yn anfon ..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Anfonwyd yr e-bost" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Rhybudd" @@ -590,14 +590,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -744,11 +742,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 21be39540c..e976262951 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -155,11 +155,11 @@ msgstr "Mae ffeiliau'n cael eu llwytho i fyny. Bydd gadael y dudalen hon nawr yn msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} yn bodoli'n barod" @@ -183,23 +183,27 @@ msgstr "Dileu'n barhaol" msgid "Rename" msgstr "Ailenwi" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "I ddod" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "newidiwyd {new_name} yn lle {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "dadwneud" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -207,7 +211,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -215,11 +219,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index cae86934d2..2c221863a0 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: lib/config.php:461 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:457 +#: lib/config.php:465 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:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 93ee97f20a..26381b9c86 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -31,7 +31,7 @@ msgstr "Methwyd adfer %s" msgid "Error" msgstr "Gwall" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 6444116b1c..f75d0d19a5 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "gwasanaethau gwe a reolir gennych" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "Mae llwytho ZIP wedi ei ddiffodd." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Mae angen llwytho ffeiliau i lawr fesul un." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Nôl i Ffeiliau" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Mae'r ffeiliau ddewiswyd yn rhy fawr i gynhyrchu ffeil zip." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "Creu enw defnyddiwr i'r gweinyddwr." msgid "Set an admin password." msgstr "Gosod cyfrinair y gweinyddwr." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Gwiriwch y canllawiau gosod eto." @@ -340,6 +340,6 @@ msgstr "y llynedd" msgid "years ago" msgstr "blwyddyn yn ôl" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index d3b48dc1b4..9d5a192883 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 479edadbb2..92247c97aa 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/da/core.po b/l10n/da/core.po index 5a4da08edd..73cae5b773 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: kaffeldt \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -281,12 +281,12 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Fejl" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Fejl under deling" @@ -306,115 +306,115 @@ msgstr "Delt med dig og gruppen {group} af {owner}" msgid "Shared with you by {owner}" msgstr "Delt med dig af {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "Del med bruger eller gruppe ..." -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "Del link" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Beskyt med adgangskode" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Kodeord" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Tillad Offentlig Upload" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "E-mail link til person" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Send" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Vælg udløbsdato" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Udløbsdato" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Del via email:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Ingen personer fundet" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "gruppe" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Videredeling ikke tilladt" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Fjern deling" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "Giv besked med mail" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "kan redigere" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "Adgangskontrol" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "opret" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "opdater" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "slet" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "del" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Beskyttet med adgangskode" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Fejl ved fjernelse af udløbsdato" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Fejl under sætning af udløbsdato" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Sender ..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "E-mail afsendt" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Advarsel" @@ -584,14 +584,12 @@ msgid "" "\n" msgstr "Hej med dig\n\nDette blot for at lade dig vide, at %s har delt %s med dig.\nSe det her: %s\n\n" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" -msgstr "Det delte link vil udløbe d. %s.⏎\n⏎\n" +msgid "The share will expire on %s." +msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "Hej!" @@ -738,11 +736,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "Hej med dig,

Dette blot for at lade dig vide, at %s har delt \"%s\" med dig.
Se det her!

Hej" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "Det delte link vil udløbe d. %s." - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/da/files.po b/l10n/da/files.po index ecce0f3438..ec2b2a16a6 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -158,11 +158,11 @@ msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuler msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} eksisterer allerede" @@ -186,39 +186,43 @@ msgstr "Slet permanent" msgid "Rename" msgstr "Omdøb" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Afventer" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "erstattede {new_name} med {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "fortryd" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} og {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Uploader %n fil" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index 34a1ac95f4..c51e65b554 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "Angiv venligst en valid Dropbox app nøgle og hemmelighed" msgid "Error configuring Google Drive storage" msgstr "Fejl ved konfiguration af Google Drive plads" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr " Advarsel: \"smbclient\" ikke er installeret. Montering af CIFS / SMB delinger er ikke muligt. Spørg din systemadministrator om at installere det." -#: lib/config.php:457 +#: lib/config.php:465 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 " Advarsel: FTP-understøttelse i PHP ikke er aktiveret eller installeret. Montering af FTP delinger er ikke muligt. Spørg din systemadministrator om at installere det." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 86fb4c032b..4524e08cf2 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -33,7 +33,7 @@ msgstr "Kunne ikke gendanne %s" msgid "Error" msgstr "Fejl" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "Gendannet" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index d7dd8afd42..1ed73ea3ca 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -73,27 +73,27 @@ msgstr "Webtjenester under din kontrol" msgid "cannot open \"%s\"" msgstr "Kan ikke åbne \"%s\"" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "ZIP-download er slået fra." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Filer skal downloades en for en." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Tilbage til Filer" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "De markerede filer er for store til at generere en ZIP-fil." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Download filerne i små bider, seperat, eller kontakt venligst din administrator." +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -136,17 +136,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "Appen kan ikke installeres, da den indeholder taget\n\n\ntrue\n\n\nhvilket ikke er tilladt for ikke-medfølgende apps" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "App kan ikke installeres, da versionen i info.xml/version ikke er den samme som versionen rapporteret fra app-storen" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "App-mappe findes allerede" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Kan ikke oprette app-mappe. Ret tilladelser. %s" @@ -271,13 +271,13 @@ msgstr "Angiv et admin brugernavn." msgid "Set an admin password." msgstr "Angiv et admin kodeord." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Dobbelttjek venligst installations vejledningerne." @@ -335,6 +335,6 @@ msgstr "sidste år" msgid "years ago" msgstr "år siden" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Forårsaget af:" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 8352985282..807adbc516 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 65dca48b43..34b98e47de 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/de/core.po b/l10n/de/core.po index 9c0b79bdeb..b3c62c5b72 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:10+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -284,12 +284,12 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Fehler" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -309,115 +309,115 @@ msgstr "{owner} hat dies mit Dir und der Gruppe {group} geteilt" msgid "Shared with you by {owner}" msgstr "{owner} hat dies mit Dir geteilt" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "Mit Benutzer oder Gruppe teilen ...." -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "Link Teilen" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Passwortschutz" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Passwort" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Öffentliches Hochladen erlauben" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Link per E-Mail verschicken" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Senden" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Setze ein Ablaufdatum" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Ablaufdatum" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Über eine E-Mail teilen:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "Gruppe" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Weiterverteilen ist nicht erlaubt" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Für {user} in {item} freigegeben" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "Per E-Mail informieren" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "erstellen" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "aktualisieren" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "löschen" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "teilen" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Durch ein Passwort geschützt" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "E-Mail wurde verschickt" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Warnung" @@ -443,7 +443,7 @@ msgstr "Schlagwörter bearbeiten" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "Fehler beim Laden der Gesprächsvorlage: {error}" +msgstr "Fehler beim Laden der Dialogvorlage: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." @@ -587,14 +587,12 @@ msgid "" "\n" msgstr "Hallo,\n\nich wollte Dich nur wissen lassen, dass %s %s mit Dir teilt.\nSchaue es Dir an: %s\n\n" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" -msgstr "Die Freigabe wird ablaufen am %s.\n\n" +msgid "The share will expire on %s." +msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "Hallo!" @@ -741,11 +739,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "Hallo,

wollte dich nur kurz informieren, dass %s gerade %s mit dir geteilt hat.
Schau es dir an.

" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "Die Freigabe wird ablaufen am %s.

" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/de/files.po b/l10n/de/files.po index 00f8b5f40d..58fb5ec599 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -161,11 +161,11 @@ msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload a msgid "URL cannot be empty" msgstr "Die URL darf nicht leer sein" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" @@ -189,39 +189,43 @@ msgstr "Endgültig löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "Die Datei konnte nicht umbenannt werden" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} ersetzt durch {new_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" msgstr[1] "%n Dateien" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} und {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hochgeladen" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 1511e55e45..961094281a 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -38,20 +38,20 @@ msgstr "Bitte trage einen gültigen Dropbox-App-Key mit Secret ein." msgid "Error configuring Google Drive storage" msgstr "Fehler beim Einrichten von Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitte Deinen System-Administrator, dies zu installieren." -#: lib/config.php:457 +#: lib/config.php:465 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 "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wende Dich an Deinen Systemadministrator." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index ccb1112cd4..4d9622f834 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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ msgstr "Konnte %s nicht wiederherstellen" msgid "Error" msgstr "Fehler" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "Wiederhergestellt" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index e67c23addc..a9669d09fe 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -74,27 +74,27 @@ msgstr "Web-Services unter Deiner Kontrolle" msgid "cannot open \"%s\"" msgstr "Öffnen von \"%s\" fehlgeschlagen" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Lade die Dateien in kleineren, separaten, Stücken herunter oder bitte deinen Administrator." +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -137,17 +137,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "Die Applikation konnte nicht installiert werden, da diese das true Tag beinhaltet und dieses, bei nicht mitausgelieferten Applikationen, nicht erlaubt ist ist" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Die Applikation konnte nicht installiert werden, da die Version in der info.xml nicht die gleiche Version wie im App-Store ist" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Das Applikationsverzeichnis existiert bereits" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Es kann kein Applikationsordner erstellt werden. Bitte passen sie die Berechtigungen an. %s" @@ -272,13 +272,13 @@ msgstr "Setze Administrator Benutzername." msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Bitte prüfe die Installationsanleitungen." @@ -336,6 +336,6 @@ msgstr "Letztes Jahr" msgid "years ago" msgstr "Vor Jahren" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Verursacht durch:" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 0a58ea7d8d..7fc1c27af0 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 307f09c4af..ae1e5c18b7 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-18 14:27+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -92,15 +92,15 @@ msgstr "Fehler" #: js/settings.js:674 msgid "Configuration OK" -msgstr "" +msgstr "Konfiguration OK" #: js/settings.js:683 msgid "Configuration incorrect" -msgstr "" +msgstr "Konfiguration nicht korrekt" #: js/settings.js:692 msgid "Configuration incomplete" -msgstr "" +msgstr "Konfiguration nicht vollständig" #: js/settings.js:709 js/settings.js:718 msgid "Select groups" diff --git a/l10n/de_AT/core.po b/l10n/de_AT/core.po index eec0ad8fab..beb8a1c1fb 100644 --- a/l10n/de_AT/core.po +++ b/l10n/de_AT/core.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-10-30 03:32-0400\n" -"PO-Revision-Date: 2013-10-30 07:32+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -277,12 +277,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690 -#: js/share.js:702 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:730 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -302,115 +302,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:272 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:275 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:305 js/share.js:342 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:316 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:358 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:380 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:388 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:391 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:393 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:396 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:399 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:402 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:405 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:447 js/share.js:677 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:690 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:702 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:717 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:728 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:752 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -580,14 +580,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -734,11 +732,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/de_AT/files.po b/l10n/de_AT/files.po index c23b63b75c..a2b271b2cc 100644 --- a/l10n/de_AT/files.po +++ b/l10n/de_AT/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-03 17:38+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:27 +#: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:127 +#: ajax/newfile.php:128 msgid "Error when creating the file" msgstr "" @@ -114,15 +114,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:153 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:143 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" @@ -142,24 +142,24 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:345 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:437 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:519 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:524 js/filelist.js:364 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:526 js/filelist.js:366 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,104 +183,108 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:392 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:582 js/filelist.js:649 js/files.js:587 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:583 js/filelist.js:650 js/files.js:593 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:590 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:793 js/filelist.js:831 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:34 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:46 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:50 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:63 +#: js/files.js:110 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:67 +#: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:71 +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:302 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error" msgstr "" -#: js/files.js:569 templates/index.php:56 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:570 templates/index.php:68 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:571 templates/index.php:70 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" diff --git a/l10n/de_AT/lib.po b/l10n/de_AT/lib.po index c08f173a6c..1fcf0fb278 100644 --- a/l10n/de_AT/lib.po +++ b/l10n/de_AT/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-17 13:47-0400\n" -"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -24,31 +24,31 @@ msgid "" " of ownCloud." msgstr "" -#: private/app.php:254 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: private/app.php:359 +#: private/app.php:360 msgid "Help" msgstr "" -#: private/app.php:372 +#: private/app.php:373 msgid "Personal" msgstr "" -#: private/app.php:383 +#: private/app.php:384 msgid "Settings" msgstr "" -#: private/app.php:395 +#: private/app.php:396 msgid "Users" msgstr "" -#: private/app.php:408 +#: private/app.php:409 msgid "Admin" msgstr "" -#: private/app.php:872 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -284,54 +284,54 @@ msgstr "" msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:122 +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: private/template/functions.php:123 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:124 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:125 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: private/template/functions.php:126 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: private/template/functions.php:128 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:130 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:142 msgid "years ago" msgstr "" -#: private/template.php:297 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index 93b506b03c..e1cc83885e 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/core.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: kenwood \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -286,12 +286,12 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Fehler" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -311,115 +311,115 @@ msgstr "Von {owner} mit Ihnen und der Gruppe {group} geteilt." msgid "Shared with you by {owner}" msgstr "Von {owner} mit Ihnen geteilt." -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Passwortschutz" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Passwort" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Öffentliches Hochladen erlauben" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Link per E-Mail verschicken" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Senden" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Ein Ablaufdatum setzen" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Ablaufdatum" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Mittels einer E-Mail teilen:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "Gruppe" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Das Weiterverteilen ist nicht erlaubt" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Freigegeben in {item} von {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "erstellen" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "aktualisieren" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "löschen" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "teilen" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Passwortgeschützt" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Email gesendet" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Warnung" @@ -589,14 +589,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -743,11 +741,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index d969ec1381..a24a624a9f 100644 --- a/l10n/de_CH/files.po +++ b/l10n/de_CH/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -164,11 +164,11 @@ msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" @@ -192,39 +192,43 @@ msgstr "Endgültig löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} wurde ersetzt durch {new_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n Ordner" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "%n Dateien" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hochgeladen" diff --git a/l10n/de_CH/files_external.po b/l10n/de_CH/files_external.po index 23c929dc5b..bf326e50f9 100644 --- a/l10n/de_CH/files_external.po +++ b/l10n/de_CH/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: FlorianScholz \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -38,20 +38,20 @@ msgstr "Bitte tragen Sie einen gültigen Dropbox-App-Key mit Secret ein." msgid "Error configuring Google Drive storage" msgstr "Fehler beim Einrichten von Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Warnung: «smbclient» ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitten Sie Ihren Systemadministrator, dies zu installieren." -#: lib/config.php:457 +#: lib/config.php:465 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 "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/de_CH/files_trashbin.po b/l10n/de_CH/files_trashbin.po index c82e4771aa..0e522a2028 100644 --- a/l10n/de_CH/files_trashbin.po +++ b/l10n/de_CH/files_trashbin.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -34,7 +34,7 @@ msgstr "Konnte %s nicht wiederherstellen" msgid "Error" msgstr "Fehler" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "Wiederhergestellt" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po index 21f33b3c90..ef31022f85 100644 --- a/l10n/de_CH/lib.po +++ b/l10n/de_CH/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -74,27 +74,27 @@ msgstr "Web-Services unter Ihrer Kontrolle" msgid "cannot open \"%s\"" msgstr "Öffnen von \"%s\" fehlgeschlagen" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu gross, um eine ZIP-Datei zu erstellen." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Laden Sie die Dateien in kleineren, separaten, Stücken herunter oder bitten Sie Ihren Administrator." +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -137,17 +137,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Anwendungsverzeichnis existiert bereits" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -272,13 +272,13 @@ msgstr "Setze Administrator Benutzername." msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Bitte prüfen Sie die Installationsanleitungen." @@ -336,6 +336,6 @@ msgstr "Letztes Jahr" msgid "years ago" msgstr "Vor Jahren" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Verursacht durch:" diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po index 1e4ad367c9..a2c15fbf5e 100644 --- a/l10n/de_CH/settings.po +++ b/l10n/de_CH/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_CH/user_ldap.po b/l10n/de_CH/user_ldap.po index 9d3eb361ce..ac5a6058c0 100644 --- a/l10n/de_CH/user_ldap.po +++ b/l10n/de_CH/user_ldap.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 5dcaacb272..931f272e46 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "%s geteilt »%s« mit Ihnen" #: ajax/share.php:169 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "Die E-Mail konnte nicht an folgende Benutzer gesendet werden: %s" +msgstr "An folgende Benutzer konnte keine E-Mail gesendet werden: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -49,11 +49,11 @@ msgstr "Datenbank aktualisiert" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "Aktualisiere Dateicache, dies könnte eine Weile dauern..." +msgstr "Aktualisiere Datei-Cache, dies könnte eine Weile dauern..." #: ajax/update.php:23 msgid "Updated filecache" -msgstr "Dateicache aktualisiert" +msgstr "Datei-Cache aktualisiert" #: ajax/update.php:26 #, php-format @@ -254,7 +254,7 @@ msgstr "Welche Dateien möchten Sie behalten?" msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "Wenn Siebeide Versionen auswählen, erhält die kopierte Datei eine Zahl am Ende des Dateinamens." +msgstr "Wenn Sie beide Versionen auswählen, erhält die kopierte Datei eine Zahl am Ende des Dateinamens." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -284,12 +284,12 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Fehler" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -309,115 +309,115 @@ msgstr "Von {owner} mit Ihnen und der Gruppe {group} geteilt." msgid "Shared with you by {owner}" msgstr "Von {owner} mit Ihnen geteilt." -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "Mit Benutzer oder Gruppe teilen ...." -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "Link teilen" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Passwortschutz" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Passwort" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Öffentliches Hochladen erlauben" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Link per E-Mail verschicken" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Senden" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Ein Ablaufdatum setzen" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Ablaufdatum" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Mittels einer E-Mail teilen:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "Gruppe" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Das Weiterverteilen ist nicht erlaubt" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Freigegeben in {item} von {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "Per E-Mail informieren" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "erstellen" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "aktualisieren" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "löschen" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "teilen" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Passwortgeschützt" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Email gesendet" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Warnung" @@ -443,7 +443,7 @@ msgstr "Schlagwörter bearbeiten" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "Fehler beim Laden der Gesprächsvorlage: {error}" +msgstr "Fehler beim Laden der Dialogvorlage: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." @@ -585,18 +585,16 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "Hallo,\n\nich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.\nSchauen Sie es sich an: %s\n\n" +msgstr "Hallo,\n\n%s hat %s mit Ihnen geteilt.\nSchauen Sie es sich an: %s\n\n" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" -msgstr "Die Freigabe wird ablaufen am %s.\n\n" +msgid "The share will expire on %s." +msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "Hallo!" +msgstr "Noch einen schönen Tag!" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 @@ -635,7 +633,7 @@ msgstr "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich vom Internet a msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Für Informationen, wie Sie Ihren Server richtig konfigurieren lesen Sie bitte die Dokumentation." +msgstr "Bitte lesen Sie die Dokumentation, um zu erfahren, wie Sie Ihr Server richtig konfigurieren können." #: templates/installation.php:47 msgid "Create an admin account" @@ -712,7 +710,7 @@ msgstr "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "Serverseitige Authentifizierung fehlgeschlagen!" +msgstr "Die Authentifizierung auf dem Server ist fehlgeschlagen!" #: templates/login.php:18 msgid "Please contact your administrator." @@ -739,12 +737,7 @@ msgstr "Alternative Logins" msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" -msgstr "Hallo,

ich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.
Schauen Sie es sich an!

" - -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "Die Freigabe wird ablaufen am %s.

" +msgstr "Hallo,

%s hat %s mit Ihnen geteilt.
Schauen Sie es sich an!

" #: templates/update.admin.php:3 #, php-format @@ -754,11 +747,11 @@ msgstr "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." #: templates/update.user.php:3 msgid "" "This ownCloud instance is currently being updated, which may take a while." -msgstr "Diese OwnCloud-Instanz wird gerade aktualisiert, was eine Weile dauert." +msgstr "Diese ownCloud-Instanz wird gerade aktualisiert, was eine Weile dauert." #: templates/update.user.php:4 msgid "Please reload this page after a short time to continue using ownCloud." -msgstr "Bitte laden Sie diese Seite nach kurzer Zeit neu, um mit der Nutzung von OwnCloud fortzufahren." +msgstr "Bitte laden Sie diese Seite nach kurzer Zeit neu, um mit der Nutzung von ownCloud fortzufahren." #: templates/update.user.php:5 msgid "" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 7b8f701473..ee615cfc71 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -125,11 +125,11 @@ msgstr "Nicht genug Speicher vorhanden." #: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." -msgstr "Hochladen fehlgeschlagen. Dateiinformationen konnten nicht abgerufen werden." +msgstr "Hochladen fehlgeschlagen. Die Dateiinformationen konnten nicht abgerufen werden." #: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" -msgstr "Hochladen fehlgeschlagen. Hochgeladene Datei konnte nicht gefunden werden." +msgstr "Hochladen fehlgeschlagen. Die hochgeladene Datei konnte nicht gefunden werden." #: ajax/upload.php:172 msgid "Invalid directory." @@ -141,7 +141,7 @@ msgstr "Dateien" #: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "Datei {filename} kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist" +msgstr "Die Datei {filename} kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist" #: js/file-upload.js:239 msgid "Not enough space available" @@ -164,17 +164,17 @@ msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload msgid "URL cannot be empty" msgstr "Die URL darf nicht leer sein" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" #: js/file-upload.js:585 msgid "Could not create file" -msgstr "Datei konnte nicht erstellt werden" +msgstr "Die Datei konnte nicht erstellt werden" #: js/file-upload.js:601 msgid "Could not create folder" @@ -192,39 +192,43 @@ msgstr "Endgültig löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "Die Datei konnte nicht umbenannt werden" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} wurde ersetzt durch {new_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" msgstr[1] "%n Dateien" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} und {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hoch geladen" @@ -252,14 +256,14 @@ msgstr "Ihr Speicher ist fast voll ({usedSpacePercent}%)" msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "Verschlüsselung-App ist aktiviert aber Ihre Schlüssel sind nicht initialisiert. Bitte melden sich nochmals ab und wieder an." +msgstr "Verschlüsselung-App ist aktiviert, aber Ihre Schlüssel sind nicht initialisiert. Bitte melden sich nochmals ab und wieder an." #: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "Ungültiger privater Schlüssel für die Verschlüsselung-App. Bitte aktualisieren Sie Ihr privates Schlüssel-Passwort um den Zugriff auf Ihre verschlüsselten Dateien wiederherzustellen." +msgstr "Ungültiger privater Schlüssel für die Verschlüsselung-App. Bitte aktualisieren Sie Ihr privates Schlüssel-Passwort, um den Zugriff auf Ihre verschlüsselten Dateien wiederherzustellen." #: js/files.js:118 msgid "" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 41e7e29070..fab43fb0db 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -39,20 +39,20 @@ msgstr "Bitte tragen Sie einen gültigen Dropbox-App-Key mit Secret ein." msgid "Error configuring Google Drive storage" msgstr "Fehler beim Einrichten von Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitten Sie Ihren Systemadministrator, dies zu installieren." -#: lib/config.php:457 +#: lib/config.php:465 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 "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index edcb34d7ef..2348bee919 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "Konnte %s nicht wiederherstellen" msgid "Error" msgstr "Fehler" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "Wiederhergestellt" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index ebd586e9a4..e8db97e317 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -73,27 +73,27 @@ msgstr "Web-Services unter Ihrer Kontrolle" msgid "cannot open \"%s\"" msgstr "Öffnen von \"%s\" fehlgeschlagen" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Laden Sie die Dateien in kleineren, separaten, Stücken herunter oder bitten Sie Ihren Administrator." +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -136,17 +136,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "Die Applikation konnte nicht installiert werden, da diese das true Tag beinhaltet und dieses, bei nicht mitausgelieferten Applikationen, nicht erlaubt ist ist" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Die Applikation konnte nicht installiert werden, da die Version in der info.xml nicht die gleiche Version wie im App-Store ist" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Der Ordner für die Anwendung existiert bereits." -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Der Ordner für die Anwendung konnte nicht angelegt werden. Bitte überprüfen Sie die Ordner- und Dateirechte und passen Sie diese entsprechend an. %s" @@ -271,13 +271,13 @@ msgstr "Setze Administrator Benutzername." msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Bitte prüfen Sie die Installationsanleitungen." @@ -335,6 +335,6 @@ msgstr "Letztes Jahr" msgid "years ago" msgstr "Vor Jahren" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Verursacht durch:" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index c0f08954b9..91a7941bbe 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index f8df9b2e16..0806345d7b 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-18 14:27+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -94,15 +94,15 @@ msgstr "Fehler" #: js/settings.js:674 msgid "Configuration OK" -msgstr "" +msgstr "Konfiguration OK" #: js/settings.js:683 msgid "Configuration incorrect" -msgstr "" +msgstr "Konfiguration nicht korrekt" #: js/settings.js:692 msgid "Configuration incomplete" -msgstr "" +msgstr "Konfiguration nicht vollständig" #: js/settings.js:709 js/settings.js:718 msgid "Select groups" diff --git a/l10n/el/core.po b/l10n/el/core.po index 657f450282..db58012f48 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -284,12 +284,12 @@ msgstr "Κοινόχρηστα" msgid "Share" msgstr "Διαμοιρασμός" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Σφάλμα" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Σφάλμα κατά τον διαμοιρασμό" @@ -309,115 +309,115 @@ msgstr "Διαμοιράστηκε με σας και με την ομάδα {gr msgid "Shared with you by {owner}" msgstr "Διαμοιράστηκε με σας από τον {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "Διαμοιρασμός με χρήστη ή ομάδα ..." -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "Διαμοιρασμός συνδέσμου" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Προστασία συνθηματικού" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Συνθηματικό" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Να επιτρέπεται η Δημόσια Αποστολή" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Αποστολή συνδέσμου με email " -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Αποστολή" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Ορισμός ημ. λήξης" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Ημερομηνία λήξης" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Διαμοιρασμός μέσω email:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Δεν βρέθηκε άνθρωπος" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "ομάδα" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Ξαναμοιρασμός δεν επιτρέπεται" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Διαμοιρασμός του {item} με τον {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Σταμάτημα διαμοιρασμού" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "ειδοποίηση με email" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "δυνατότητα αλλαγής" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "έλεγχος πρόσβασης" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "δημιουργία" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "ενημέρωση" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "διαγραφή" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "διαμοιρασμός" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Προστασία με συνθηματικό" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Σφάλμα κατά την διαγραφή της ημ. λήξης" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Σφάλμα κατά τον ορισμό ημ. λήξης" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Αποστολή..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Το Email απεστάλη " -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Προειδοποίηση" @@ -587,14 +587,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -741,11 +739,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/el/files.po b/l10n/el/files.po index 828a0014bd..40325974d7 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -159,11 +159,11 @@ msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέ msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} υπάρχει ήδη" @@ -187,39 +187,43 @@ msgstr "Μόνιμη διαγραφή" msgid "Rename" msgstr "Μετονομασία" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Εκκρεμεί" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "αντικαταστάθηκε το {new_name} με {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "αναίρεση" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n φάκελος" msgstr[1] "%n φάκελοι" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n αρχείο" msgstr[1] "%n αρχεία" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Ανέβασμα %n αρχείου" diff --git a/l10n/el/files_encryption.po b/l10n/el/files_encryption.po index 6ed3ff8ad6..25b9a68962 100644 --- a/l10n/el/files_encryption.po +++ b/l10n/el/files_encryption.po @@ -4,15 +4,16 @@ # # Translators: # Efstathios Iosifidis , 2013 +# Marios Bekatoros <>, 2013 # Teogramm , 2013 # Teogramm , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-03 17:38+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-19 09:50+0000\n" +"Last-Translator: Marios Bekatoros <>\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" @@ -48,7 +49,7 @@ msgstr "Αποτυχία αλλαγής κωδικού ίσως ο παλιός #: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "" +msgstr "Το Προσωπικό κλειδί πρόσβασης ενημερώθηκε επιτυχώς" #: ajax/updatePrivateKeyPassword.php:54 msgid "" @@ -81,22 +82,22 @@ msgstr "" msgid "" "Unknown error please check your system settings or contact your " "administrator" -msgstr "" +msgstr "Άγνωστο σφάλμα, παρακαλώ ελέγξτε τις ρυθμίσεις συστήματος ή επικοινωνήστε με τον διαχειριστή σας " #: hooks/hooks.php:59 msgid "Missing requirements." -msgstr "" +msgstr "Προαπαιτούμενα που απουσιάζουν." #: hooks/hooks.php:60 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "Παρακαλώ επιβεβαιώστε ότι η PHP 5.3.3 ή νεότερη είναι εγκατεστημένη και ότι το OpenSSL μαζί με το PHP extension είναι ενεργοποιήμένο και έχει ρυθμιστεί σωστά. Προς το παρόν, η εφαρμογή κρυπτογράφησης είναι απενεργοποιημένη." #: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Οι κάτωθι χρήστες δεν έχουν ρυθμιστεί για κρυπογράφηση:" #: js/settings-admin.js:13 msgid "Saving..." @@ -104,7 +105,7 @@ msgstr "Γίνεται αποθήκευση..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Πηγαίνε απευθείας στο " #: templates/invalid_private_key.php:8 msgid "personal settings" @@ -121,7 +122,7 @@ msgstr "" #: templates/settings-admin.php:11 msgid "Recovery key password" -msgstr "" +msgstr "Επαναφορά κωδικού κλειδιού" #: templates/settings-admin.php:14 msgid "Repeat Recovery key password" @@ -145,7 +146,7 @@ msgstr "" #: templates/settings-admin.php:47 msgid "New Recovery key password" -msgstr "" +msgstr "Νέο κλειδί επαναφοράς κωδικού" #: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" @@ -171,19 +172,19 @@ msgstr "" #: templates/settings-personal.php:22 msgid "Old log-in password" -msgstr "" +msgstr "Παλαιό συνθηματικό εισόδου" #: templates/settings-personal.php:28 msgid "Current log-in password" -msgstr "" +msgstr "Τρέχον συνθηματικό πρόσβασης" #: templates/settings-personal.php:33 msgid "Update Private Key Password" -msgstr "" +msgstr "Ενημέρωση Προσωπικού Κλειδού Πρόσβασης" #: templates/settings-personal.php:42 msgid "Enable password recovery:" -msgstr "" +msgstr "Ενεργοποιήστε την ανάκτηση κωδικού πρόσβασης" #: templates/settings-personal.php:44 msgid "" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index be819a840e..d380c50daa 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -38,20 +38,20 @@ msgstr "Παρακαλούμε δώστε έγκυρο κλειδί Dropbox κα msgid "Error configuring Google Drive storage" msgstr "Σφάλμα ρυθμίζωντας αποθήκευση Google Drive " -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Προσοχή: Ο \"smbclient\" δεν εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση CIFS/SMB. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει." -#: lib/config.php:457 +#: lib/config.php:465 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 "Προσοχή: Η υποστήριξη FTP στην PHP δεν ενεργοποιήθηκε ή εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση FTP. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index 2e2a8c4b1d..57aa40f148 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "Αδυναμία επαναφοράς %s" msgid "Error" msgstr "Σφάλμα" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "έγινε επαναφορά" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index cc650a36f1..26ed72a043 100644 --- a/l10n/el/lib.po +++ b/l10n/el/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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -71,27 +71,27 @@ msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" msgid "cannot open \"%s\"" msgstr "αδυναμία ανοίγματος \"%s\"" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "Η λήψη ZIP απενεργοποιήθηκε." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Τα αρχεία πρέπει να ληφθούν ένα-ένα." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Πίσω στα Αρχεία" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Λήψη των αρχείων σε μικρότερα κομμάτια, χωριστά ή ρωτήστε τον διαχειριστή σας." +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -134,17 +134,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -269,13 +269,13 @@ msgstr "Εισάγετε όνομα χρήστη διαχειριστή." msgid "Set an admin password." msgstr "Εισάγετε συνθηματικό διαχειριστή." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Ελέγξτε ξανά τις οδηγίες εγκατάστασης." @@ -333,6 +333,6 @@ msgstr "τελευταίο χρόνο" msgid "years ago" msgstr "χρόνια πριν" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Προκλήθηκε από:" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 5c4305deea..eeff753a61 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 4c1b664076..39c19a343c 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index 09b9dbbeab..d04b1301f7 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -277,12 +277,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -302,115 +302,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Passcode" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -580,14 +580,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -734,11 +732,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index 7dfbcbfeda..94beead035 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-03 17:38+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:27 +#: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:127 +#: ajax/newfile.php:128 msgid "Error when creating the file" msgstr "" @@ -114,15 +114,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:153 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:143 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" @@ -142,24 +142,24 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:345 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:437 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:519 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:524 js/filelist.js:364 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:526 js/filelist.js:366 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,104 +183,108 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:392 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:582 js/filelist.js:649 js/files.js:587 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:583 js/filelist.js:650 js/files.js:593 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:590 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:793 js/filelist.js:831 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:34 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:46 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:50 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:63 +#: js/files.js:110 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:67 +#: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:71 +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:302 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error" msgstr "" -#: js/files.js:569 templates/index.php:56 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:570 templates/index.php:68 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:571 templates/index.php:70 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" diff --git a/l10n/en@pirate/lib.po b/l10n/en@pirate/lib.po index e681218488..d5acd01a2e 100644 --- a/l10n/en@pirate/lib.po +++ b/l10n/en@pirate/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-17 13:47-0400\n" -"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -24,31 +24,31 @@ msgid "" " of ownCloud." msgstr "" -#: private/app.php:254 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: private/app.php:359 +#: private/app.php:360 msgid "Help" msgstr "" -#: private/app.php:372 +#: private/app.php:373 msgid "Personal" msgstr "" -#: private/app.php:383 +#: private/app.php:384 msgid "Settings" msgstr "" -#: private/app.php:395 +#: private/app.php:396 msgid "Users" msgstr "" -#: private/app.php:408 +#: private/app.php:409 msgid "Admin" msgstr "" -#: private/app.php:872 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -70,25 +70,25 @@ msgstr "web services under your control" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -284,54 +284,54 @@ msgstr "" msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:122 +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: private/template/functions.php:123 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:124 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:125 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: private/template/functions.php:126 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: private/template/functions.php:128 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:130 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:142 msgid "years ago" msgstr "" -#: private/template.php:297 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index 8dee26715c..c5054e73d6 100644 --- a/l10n/en_GB/core.po +++ b/l10n/en_GB/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:00+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -277,12 +277,12 @@ msgstr "Shared" msgid "Share" msgstr "Share" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Error whilst sharing" @@ -302,115 +302,115 @@ msgstr "Shared with you and the group {group} by {owner}" msgid "Shared with you by {owner}" msgstr "Shared with you by {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "Share with user or group …" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "Share link" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Password protect" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Password" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Allow Public Upload" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Email link to person" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Send" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Set expiration date" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Expiration date" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Share via email:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "No people found" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "group" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Resharing is not allowed" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Shared in {item} with {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Unshare" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "notify by email" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "can edit" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "access control" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "create" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "update" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "delete" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "share" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Password protected" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Error unsetting expiration date" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Sending ..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Email sent" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Warning" @@ -580,14 +580,12 @@ msgid "" "\n" msgstr "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" -msgstr "The share will expire on %s.\n\n" +msgid "The share will expire on %s." +msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "Cheers!" @@ -734,11 +732,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "The share will expire on %s.

" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index e98b5de92f..9b22108cae 100644 --- a/l10n/en_GB/files.po +++ b/l10n/en_GB/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -156,11 +156,11 @@ msgstr "File upload is in progress. Leaving the page now will cancel the upload. msgid "URL cannot be empty" msgstr "URL cannot be empty" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "In the home folder 'Shared' is a reserved file name" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} already exists" @@ -184,39 +184,43 @@ msgstr "Delete permanently" msgid "Rename" msgstr "Rename" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Pending" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "Could not rename file" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "replaced {new_name} with {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "undo" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n folder" msgstr[1] "%n folders" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" msgstr[1] "%n files" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} and {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Uploading %n file" diff --git a/l10n/en_GB/files_external.po b/l10n/en_GB/files_external.po index 03c8c2458a..bbfe3b3d26 100644 --- a/l10n/en_GB/files_external.po +++ b/l10n/en_GB/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -38,20 +38,20 @@ msgstr "Please provide a valid Dropbox app key and secret." msgid "Error configuring Google Drive storage" msgstr "Error configuring Google Drive storage" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." -#: lib/config.php:457 +#: lib/config.php:465 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 "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." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/en_GB/files_trashbin.po b/l10n/en_GB/files_trashbin.po index 47a46a78b0..6da8b00bfe 100644 --- a/l10n/en_GB/files_trashbin.po +++ b/l10n/en_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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ msgstr "Couldn't restore %s" msgid "Error" msgstr "Error" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "restored" diff --git a/l10n/en_GB/lib.po b/l10n/en_GB/lib.po index 67a35a19e1..61cce784e0 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -71,27 +71,27 @@ msgstr "web services under your control" msgid "cannot open \"%s\"" msgstr "cannot open \"%s\"" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "ZIP download is turned off." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Files need to be downloaded one by one." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Back to Files" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Selected files too large to generate zip file." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Download the files in smaller chunks, seperately or kindly ask your administrator." +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -134,17 +134,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "App can't be installed because it contains the true tag which is not allowed for non shipped apps" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "App directory already exists" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Can't create app folder. Please fix permissions. %s" @@ -269,13 +269,13 @@ msgstr "Set an admin username." msgid "Set an admin password." msgstr "Set an admin password." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Your web server is not yet properly setup to allow files synchronisation because the WebDAV interface seems to be broken." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Please double check the installation guides." @@ -333,6 +333,6 @@ msgstr "last year" msgid "years ago" msgstr "years ago" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Caused by:" diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index 1f7f4c5e7f..689d713edc 100644 --- a/l10n/en_GB/settings.po +++ b/l10n/en_GB/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:00+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en_GB/user_ldap.po b/l10n/en_GB/user_ldap.po index 3f198d1452..5210d173c8 100644 --- a/l10n/en_GB/user_ldap.po +++ b/l10n/en_GB/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-17 17:20+0000\n" +"Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,15 +89,15 @@ msgstr "Error" #: js/settings.js:674 msgid "Configuration OK" -msgstr "" +msgstr "Configuration OK" #: js/settings.js:683 msgid "Configuration incorrect" -msgstr "" +msgstr "Configuration incorrect" #: js/settings.js:692 msgid "Configuration incomplete" -msgstr "" +msgstr "Configuration incomplete" #: js/settings.js:709 js/settings.js:718 msgid "Select groups" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index b9ac927435..3706add5af 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -278,12 +278,12 @@ msgstr "Dividita" msgid "Share" msgstr "Kunhavigi" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Eraro" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Eraro dum kunhavigo" @@ -303,115 +303,115 @@ msgstr "Kunhavigita kun vi kaj la grupo {group} de {owner}" msgid "Shared with you by {owner}" msgstr "Kunhavigita kun vi de {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Protekti per pasvorto" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Pasvorto" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Retpoŝti la ligilon al ulo" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Sendi" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Agordi limdaton" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Limdato" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Kunhavigi per retpoŝto:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Ne troviĝis gento" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "grupo" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Rekunhavigo ne permesatas" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Kunhavigita en {item} kun {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Malkunhavigi" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "povas redakti" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "alirkontrolo" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "krei" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "ĝisdatigi" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "forigi" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "kunhavigi" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Protektita per pasvorto" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Eraro dum malagordado de limdato" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Eraro dum agordado de limdato" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Sendante..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "La retpoŝtaĵo sendiĝis" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Averto" @@ -581,14 +581,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -735,11 +733,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 924a7f96d7..38a7de6de5 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -156,11 +156,11 @@ msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton." msgid "URL cannot be empty" msgstr "La URL ne povas malpleni" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} jam ekzistas" @@ -184,39 +184,43 @@ msgstr "Forigi por ĉiam" msgid "Rename" msgstr "Alinomigi" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Traktotaj" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "Ne povis alinomiĝi dosiero" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "anstataŭiĝis {new_name} per {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "malfari" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dosierujo" msgstr[1] "%n dosierujoj" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n dosiero" msgstr[1] "%n dosieroj" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} kaj {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Alŝutatas %n dosiero" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index b8a274b5b7..15d4809452 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "Bonvolu provizi ŝlosilon de la aplikaĵo Dropbox validan kaj sekretan." msgid "Error configuring Google Drive storage" msgstr "Eraro dum agordado de la memorservo Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 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:457 +#: lib/config.php:465 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:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index ce756feccc..2417a2e8c6 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 14:38-0500\n" -"PO-Revision-Date: 2013-11-03 19:30+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ msgstr "Ne povis restaŭriĝi %s" msgid "Error" msgstr "Eraro" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "restaŭrita" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 87571525e5..dc44de6f28 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -71,25 +71,25 @@ msgstr "TTT-servoj regataj de vi" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "ZIP-elŝuto estas malkapabligita." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Dosieroj devas elŝutiĝi unuope." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Reen al la dosieroj" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "La elektitaj dosieroj tro grandas por genero de ZIP-dosiero." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -134,17 +134,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -269,13 +269,13 @@ msgstr "Starigi administran uzantonomon." msgid "Set an admin password." msgstr "Starigi administran pasvorton." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dosierojn ĉar la WebDAV-interfaco ŝajnas rompita." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Bonvolu duoble kontroli la gvidilon por instalo." @@ -333,6 +333,6 @@ msgstr "lastajare" msgid "years ago" msgstr "jaroj antaŭe" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 8552688a28..1cdefddb40 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index c05b61d613..87eb7bb901 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/es/core.po b/l10n/es/core.po index 71bcebc3df..72e711b311 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -288,12 +288,12 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Error al compartir" @@ -313,115 +313,115 @@ msgstr "Compartido contigo y el grupo {group} por {owner}" msgid "Shared with you by {owner}" msgstr "Compartido contigo por {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "Compartido con el usuario o con el grupo ..." -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "Enlace compartido" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Protección con contraseña" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Contraseña" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Permitir Subida Pública" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Enviar enlace por correo electrónico a una persona" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Enviar" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Establecer fecha de caducidad" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Fecha de caducidad" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Compartir por correo electrónico:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "No se encontró gente" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "grupo" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "No se permite compartir de nuevo" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "notificar al usuario por correo electrónico" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "puede editar" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "control de acceso" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "crear" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "actualizar" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "eliminar" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "compartir" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Protegido con contraseña" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Error eliminando fecha de caducidad" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Correo electrónico enviado" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Precaución" @@ -591,14 +591,12 @@ msgid "" "\n" msgstr "Hola:\n\nTan solo queremos informarte que %s compartió %s contigo.\nMíralo aquí: %s\n\n" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" -msgstr "El objeto dejará de ser compartido el %s.\n\n" +msgid "The share will expire on %s." +msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "¡Saludos!" @@ -745,11 +743,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "Hola:

tan solo queremos informarte que %s compartió «%s» contigo.
¡Míralo acá!

" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "El objeto dejará de ser compartido el %s.

" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/es/files.po b/l10n/es/files.po index ace67ff778..3a54e47993 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" -"Last-Translator: Raul Fernandez Garcia \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -164,11 +164,11 @@ msgstr "La subida del archivo está en proceso. Si sale de la página ahora, la msgid "URL cannot be empty" msgstr "La dirección URL no puede estar vacía" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "En la carpeta de inicio, 'Shared' es un nombre reservado" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} ya existe" @@ -192,39 +192,43 @@ msgstr "Eliminar permanentemente" msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Pendiente" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "No se pudo renombrar el archivo" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "deshacer" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetas" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n archivo" msgstr[1] "%n archivos" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} y {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Subiendo %n archivo" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index 72118628d1..503d6f1758 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Korrosivo , 2013 +# Rubén del Campo , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" -"Last-Translator: Korrosivo \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: Rubén del Campo \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" @@ -38,20 +38,20 @@ msgstr "Por favor, proporcione un una clave válida de la app Dropbox y una clav msgid "Error configuring Google Drive storage" msgstr "Error configurando el almacenamiento de Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Advertencia: El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale." -#: lib/config.php:457 +#: lib/config.php:465 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 "Advertencia: El soporte de FTP en PHP no se encuentra instalado. El montado de archivos o ficheros FTP no es posible. Por favor pida al administrador de su sistema que lo instale." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 155a900d63..186909f350 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -4,13 +4,13 @@ # # Translators: # Art O. Pal , 2013 -# Korrosivo , 2013 +# Rubén del Campo , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -33,7 +33,7 @@ msgstr "No se puede restaurar %s" msgid "Error" msgstr "Error" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "recuperado" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 04e07c4534..d31c23cabf 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -74,27 +74,27 @@ msgstr "Servicios web bajo su control" msgid "cannot open \"%s\"" msgstr "No se puede abrir \"%s\"" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados uno por uno." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Volver a Archivos" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Descargue los archivos en trozos más pequeños, por separado o solicítelos amablemente su administrador." +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -137,17 +137,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "La aplicación no se puede instalar porque contiene la etiqueta\n\ntrue\n\nque no está permitida para aplicaciones no distribuidas" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "La aplicación no puede ser instalada por que la versión en info.xml/version no es la misma que la establecida en la app store" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "El directorio de la aplicación ya existe" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "No se puede crear la carpeta de la aplicación. Corrija los permisos. %s" @@ -272,13 +272,13 @@ msgstr "Configurar un nombre de usuario del administrador" msgid "Set an admin password." msgstr "Configurar la contraseña del administrador." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, vuelva a comprobar las guías de instalación." @@ -336,6 +336,6 @@ msgstr "año pasado" msgid "years ago" msgstr "hace años" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Causado por:" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 2df3faa3af..1cc6a23bb7 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 62834a2fd7..6704b11e78 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 08:20+0000\n" +"Last-Translator: Raul Fernandez Garcia \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" @@ -95,15 +95,15 @@ msgstr "Error" #: js/settings.js:674 msgid "Configuration OK" -msgstr "" +msgstr "Configuración OK" #: js/settings.js:683 msgid "Configuration incorrect" -msgstr "" +msgstr "Configuración Incorrecta" #: js/settings.js:692 msgid "Configuration incomplete" -msgstr "" +msgstr "Configuración incompleta" #: js/settings.js:709 js/settings.js:718 msgid "Select groups" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index f3040dd158..c443fe8521 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -277,12 +277,12 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Error al compartir" @@ -302,115 +302,115 @@ msgstr "Compartido con vos y el grupo {group} por {owner}" msgid "Shared with you by {owner}" msgstr "Compartido con vos por {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Proteger con contraseña " -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Contraseña" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Permitir Subida Pública" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Enviar el enlace por e-mail." -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Mandar" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Asignar fecha de vencimiento" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Fecha de vencimiento" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Compartir a través de e-mail:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "No se encontraron usuarios" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "grupo" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "No se permite volver a compartir" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "podés editar" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "control de acceso" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "crear" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "actualizar" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "borrar" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "compartir" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Protegido por contraseña" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Error al remover la fecha de vencimiento" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Error al asignar fecha de vencimiento" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Mandando..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "e-mail mandado" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Atención" @@ -580,14 +580,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -734,11 +732,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 1d0584cf16..cf320343ea 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -159,11 +159,11 @@ msgstr "La subida del archivo está en proceso. Si salís de la página ahora, l msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} ya existe" @@ -187,39 +187,43 @@ msgstr "Borrar permanentemente" msgid "Rename" msgstr "Cambiar nombre" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Pendientes" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "se reemplazó {new_name} con {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "deshacer" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetas" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n archivo" msgstr[1] "%n archivos" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{carpetas} y {archivos}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Subiendo %n archivo" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index f22a1caf0e..acf6aafe87 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -38,20 +38,20 @@ msgstr "Por favor, proporcioná un secreto y una contraseña válida para la apl msgid "Error configuring Google Drive storage" msgstr "Error al configurar el almacenamiento de Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Advertencia: El cliente smb \"smbclient\" no está instalado. Montar archivos CIFS/SMB no es posible. Por favor, pedile al administrador de tu sistema que lo instale." -#: lib/config.php:457 +#: lib/config.php:465 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 "Advertencia: El soporte de FTP en PHP no está instalado. Montar archivos FTP no es posible. Por favor, pedile al administrador de tu sistema que lo instale." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 962fd759ca..9ace7d23d4 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "No se pudo restaurar %s" msgid "Error" msgstr "Error" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "recuperado" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 02140c0623..9f5fcc9a19 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" -"Last-Translator: cjtess \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -71,27 +71,27 @@ msgstr "servicios web sobre los que tenés control" msgid "cannot open \"%s\"" msgstr "no se puede abrir \"%s\"" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados de a uno." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Volver a Archivos" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Descargá los archivos en partes más chicas, de forma separada, o pedíselos al administrador" +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -134,17 +134,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "La app no se puede instalar porque contiene la etiqueta true que no está permitida para apps no distribuidas" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "La app no puede ser instalada porque la versión en info.xml/version no es la misma que la establecida en el app store" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "El directorio de la app ya existe" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "No se puede crear el directorio para la app. Corregí los permisos. %s" @@ -269,13 +269,13 @@ msgstr "Configurar un nombre de administrador." msgid "Set an admin password." msgstr "Configurar una contraseña de administrador." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Tu servidor web no está configurado todavía para permitir sincronización de archivos porque la interfaz WebDAV parece no funcionar." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, comprobá nuevamente la guía de instalación." @@ -333,6 +333,6 @@ msgstr "el año pasado" msgid "years ago" msgstr "años atrás" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Provocado por:" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 7ccb2663a9..5f57c4eb9b 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index f0d270e0a4..259373bbad 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/es_MX/core.po b/l10n/es_MX/core.po index c1aa5e04d0..aaed71615d 100644 --- a/l10n/es_MX/core.po +++ b/l10n/es_MX/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-30 03:32-0400\n" -"PO-Revision-Date: 2013-10-30 07:32+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -276,12 +276,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690 -#: js/share.js:702 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:730 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -301,115 +301,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:272 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:275 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:305 js/share.js:342 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:316 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:358 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:380 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:388 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:391 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:393 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:396 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:399 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:402 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:405 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:447 js/share.js:677 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:690 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:702 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:717 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:728 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:752 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -579,14 +579,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -733,11 +731,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/es_MX/files.po b/l10n/es_MX/files.po index 4757a4c1c5..9083ac2060 100644 --- a/l10n/es_MX/files.po +++ b/l10n/es_MX/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-03 17:38+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:27 +#: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:127 +#: ajax/newfile.php:128 msgid "Error when creating the file" msgstr "" @@ -114,15 +114,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:153 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:143 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" @@ -142,24 +142,24 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:345 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:437 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:519 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:524 js/filelist.js:364 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:526 js/filelist.js:366 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,104 +183,108 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:392 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:582 js/filelist.js:649 js/files.js:587 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:583 js/filelist.js:650 js/files.js:593 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:590 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:793 js/filelist.js:831 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:34 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:46 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:50 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:63 +#: js/files.js:110 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:67 +#: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:71 +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:302 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error" msgstr "" -#: js/files.js:569 templates/index.php:56 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:570 templates/index.php:68 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:571 templates/index.php:70 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" diff --git a/l10n/es_MX/lib.po b/l10n/es_MX/lib.po index 1823a00e41..7285fa72ce 100644 --- a/l10n/es_MX/lib.po +++ b/l10n/es_MX/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-17 13:47-0400\n" -"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -24,31 +24,31 @@ msgid "" " of ownCloud." msgstr "" -#: private/app.php:254 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: private/app.php:359 +#: private/app.php:360 msgid "Help" msgstr "" -#: private/app.php:372 +#: private/app.php:373 msgid "Personal" msgstr "" -#: private/app.php:383 +#: private/app.php:384 msgid "Settings" msgstr "" -#: private/app.php:395 +#: private/app.php:396 msgid "Users" msgstr "" -#: private/app.php:408 +#: private/app.php:409 msgid "Admin" msgstr "" -#: private/app.php:872 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -284,54 +284,54 @@ msgstr "" msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:122 +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: private/template/functions.php:123 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:124 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:125 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: private/template/functions.php:126 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: private/template/functions.php:128 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:130 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:142 msgid "years ago" msgstr "" -#: private/template.php:297 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index c5d14a0ec3..a10f337e6c 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-14 20:10+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -278,12 +278,12 @@ msgstr "Jagatud" msgid "Share" msgstr "Jaga" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Viga" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Viga jagamisel" @@ -303,115 +303,115 @@ msgstr "Jagatud sinu ja {group} grupiga {owner} poolt" msgid "Shared with you by {owner}" msgstr "Sinuga jagas {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "Jaga kasutaja või grupiga ..." -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "Jaga linki" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Parooliga kaitstud" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Parool" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Luba avalik üleslaadimine" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Saada link isikule e-postiga" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Saada" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Määra aegumise kuupäev" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Aegumise kuupäev" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Jaga e-postiga:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Ühtegi inimest ei leitud" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "grupp" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Edasijagamine pole lubatud" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Jagatud {item} kasutajaga {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Lõpeta jagamine" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "teavita e-postiga" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "saab muuta" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "ligipääsukontroll" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "loo" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "uuenda" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "kustuta" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "jaga" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Parooliga kaitstud" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Viga aegumise kuupäeva eemaldamisel" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Viga aegumise kuupäeva määramisel" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Saatmine ..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "E-kiri on saadetud" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Hoiatus" @@ -581,14 +581,12 @@ msgid "" "\n" msgstr "Hei,\n\nlihtsalt annan sulle teada, et %s jagas sulle välja %s.\nVaata seda: %s\n\n" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" -msgstr "Jagamine aegub %s.\n\n" +msgid "The share will expire on %s." +msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "Terekest!" @@ -735,11 +733,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "Hei,

lihtsalt annan sulle teada, et %s jagas sulle välja »%s«.
Vaata seda!

" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "Jagamine aegub %s.

" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 56df8ac9b2..4e5167ba6f 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -157,11 +157,11 @@ msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle ülesla msgid "URL cannot be empty" msgstr "URL ei saa olla tühi" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Kodukataloogis 'Shared' on reserveeritud failinimi" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} on juba olemas" @@ -185,39 +185,43 @@ msgstr "Kustuta jäädavalt" msgid "Rename" msgstr "Nimeta ümber" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Ootel" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "Ei suuda faili ümber nimetada" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "asendas nime {old_name} nimega {new_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "tagasi" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kataloog" msgstr[1] "%n kataloogi" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fail" msgstr[1] "%n faili" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} ja {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laadin üles %n faili" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index dc65ccbfc1..8b5da6014e 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -38,20 +38,20 @@ msgstr "Palun sisesta korrektne Dropboxi rakenduse võti ja salasõna." msgid "Error configuring Google Drive storage" msgstr "Viga Google Drive'i salvestusruumi seadistamisel" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Hoiatus: \"smbclient\" pole paigaldatud. Jagatud CIFS/SMB hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata SAMBA tugi." -#: lib/config.php:457 +#: lib/config.php:465 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 "Hoiatus: PHP-s puudub FTP tugi. Jagatud FTP hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata FTP tugi." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 59ea427425..b14ecfceb1 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "%s ei saa taastada" msgid "Error" msgstr "Viga" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "taastatud" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 72507c119b..c985acfbb9 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -72,27 +72,27 @@ msgstr "veebitenused sinu kontrolli all" msgid "cannot open \"%s\"" msgstr "ei suuda avada \"%s\"" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "ZIP-ina allalaadimine on välja lülitatud." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Failid tuleb alla laadida ükshaaval." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Tagasi failide juurde" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Valitud failid on ZIP-faili loomiseks liiga suured." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Laadi failid alla eraldi väiksemate osadena või küsi nõu oma süsteemiadminstraatorilt." +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -135,17 +135,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "Rakendit ei saa paigaldada, kuna see sisaldab \n\n\ntrue\n\nmärgendit, mis pole lubatud mitte veetud (non shipped) rakendites" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Rakendit ei saa paigaldada, kuna selle versioon info.xml/version pole sama, mis on märgitud rakendite laos." -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Rakendi kataloog on juba olemas" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Ei saa luua rakendi kataloogi. Palun korrigeeri õigusi. %s" @@ -270,13 +270,13 @@ msgstr "Määra admin kasutajanimi." msgid "Set an admin password." msgstr "Määra admini parool." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Palun tutvu veelkord paigalduse juhenditega." @@ -334,6 +334,6 @@ msgstr "viimasel aastal" msgid "years ago" msgstr "aastat tagasi" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Põhjustaja:" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 8844e445df..cfd152a4b3 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index fc124b9581..2c1da8be61 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-18 09:20+0000\n" +"Last-Translator: pisike.sipelgas \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" @@ -90,15 +90,15 @@ msgstr "Viga" #: js/settings.js:674 msgid "Configuration OK" -msgstr "" +msgstr "Seadistus on korras" #: js/settings.js:683 msgid "Configuration incorrect" -msgstr "" +msgstr "Seadistus on vigane" #: js/settings.js:692 msgid "Configuration incomplete" -msgstr "" +msgstr "Seadistus on puudulik" #: js/settings.js:709 js/settings.js:718 msgid "Select groups" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 76050d7586..a86a3cc210 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -278,12 +278,12 @@ msgstr "Elkarbanatuta" msgid "Share" msgstr "Elkarbanatu" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Errorea" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Errore bat egon da elkarbanatzean" @@ -303,115 +303,115 @@ msgstr "{owner}-k zu eta {group} taldearekin elkarbanatuta" msgid "Shared with you by {owner}" msgstr "{owner}-k zurekin elkarbanatuta" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Babestu pasahitzarekin" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Pasahitza" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Gaitu igotze publikoa" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Postaz bidali lotura " -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Bidali" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Ezarri muga data" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Muga data" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Elkarbanatu eposta bidez:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Ez da inor aurkitu" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "taldea" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Berriz elkarbanatzea ez dago baimendua" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "{user}ekin {item}-n elkarbanatuta" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Ez elkarbanatu" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "editatu dezake" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "sarrera kontrola" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "sortu" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "eguneratu" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "ezabatu" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "elkarbanatu" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Pasahitzarekin babestuta" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Errorea izan da muga data kentzean" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Errore bat egon da muga data ezartzean" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Bidaltzen ..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Eposta bidalia" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Abisua" @@ -581,14 +581,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -735,11 +733,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/eu/files.po b/l10n/eu/files.po index f668c71534..39373b7ea7 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -157,11 +157,11 @@ msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du. msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} dagoeneko existitzen da" @@ -185,39 +185,43 @@ msgstr "Ezabatu betirako" msgid "Rename" msgstr "Berrizendatu" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Zain" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr " {new_name}-k {old_name} ordezkatu du" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "desegin" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "karpeta %n" msgstr[1] "%n karpeta" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "fitxategi %n" msgstr[1] "%n fitxategi" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} eta {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Fitxategi %n igotzen" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index fa979c709b..68f29e218e 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -38,20 +38,20 @@ msgstr "Mesedez eman baliozkoa den Dropbox app giltza eta sekretua" msgid "Error configuring Google Drive storage" msgstr "Errore bat egon da Google Drive biltegiratzea konfiguratzean" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Abisua: \"smbclient\" ez dago instalatuta. CIFS/SMB partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea." -#: lib/config.php:457 +#: lib/config.php:465 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 "Abisua: PHPren FTP modulua ez dago instalatuta edo gaitua. FTP partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index af85d6db6a..1687760864 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "Ezin izan da %s berreskuratu" msgid "Error" msgstr "Errorea" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "Berrezarrita" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 8dfd3f28a3..63151c5fc6 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -72,27 +72,27 @@ msgstr "web zerbitzuak zure kontrolpean" msgid "cannot open \"%s\"" msgstr "ezin da \"%s\" ireki" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "ZIP deskarga ez dago gaituta." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Fitxategiak banan-banan deskargatu behar dira." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Itzuli fitxategietara" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Hautatuko fitxategiak oso handiak dira zip fitxategia sortzeko." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Deskargatu fitzategiak zati txikiagoetan, banan-banan edo eskatu mesedez zure administradoreari" +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -135,17 +135,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -270,13 +270,13 @@ msgstr "Ezarri administraziorako erabiltzaile izena." msgid "Set an admin password." msgstr "Ezarri administraziorako pasahitza." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sinkronizazioa egiteko, WebDAV interfazea ongi ez dagoela dirudi." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Mesedez begiratu instalazio gidak." @@ -334,6 +334,6 @@ msgstr "joan den urtean" msgid "years ago" msgstr "urte" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Honek eraginda:" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 1c839466cb..1e6a0d40c4 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 2c02c89cff..6fc4501362 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index d35fd35d7b..3d04f8d844 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -272,12 +272,12 @@ msgstr "اشتراک گذاشته شده" msgid "Share" msgstr "اشتراک‌گذاری" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "خطا" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "خطا درحال به اشتراک گذاشتن" @@ -297,115 +297,115 @@ msgstr "به اشتراک گذاشته شده با شما و گروه {گروه} msgid "Shared with you by {owner}" msgstr "به اشتراک گذاشته شده با شما توسط { دارنده}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "نگهداری کردن رمز عبور" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "گذرواژه" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "اجازه آپلود عمومی" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "پیوند ایمیل برای شخص." -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "ارسال" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "تنظیم تاریخ انقضا" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "تاریخ انقضا" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "از طریق ایمیل به اشتراک بگذارید :" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "کسی یافت نشد" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "گروه" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "اشتراک گذاری مجدد مجاز نمی باشد" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "به اشتراک گذاشته شده در {بخش} با {کاربر}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "لغو اشتراک" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "می توان ویرایش کرد" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "کنترل دسترسی" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "ایجاد" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "به روز" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "پاک کردن" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "به اشتراک گذاشتن" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "نگهداری از رمز عبور" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "خطا در تنظیم نکردن تاریخ انقضا " -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "خطا در تنظیم تاریخ انقضا" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "درحال ارسال ..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "ایمیل ارسال شد" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "اخطار" @@ -575,14 +575,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -729,11 +727,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 5ca5e21fdb..057ac19f58 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -156,11 +156,11 @@ msgstr "آپلودکردن پرونده در حال پیشرفت است. در ص msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{نام _جدید} در حال حاضر وجود دارد." @@ -184,37 +184,41 @@ msgstr "حذف قطعی" msgid "Rename" msgstr "تغییرنام" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "در انتظار" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "{نام_جدید} با { نام_قدیمی} جایگزین شد." -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "بازگشت" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index d4e2ba0a62..dc90b713f0 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -38,20 +38,20 @@ msgstr "لطفا یک کلید و کد امنیتی صحیح دراپ باکس msgid "Error configuring Google Drive storage" msgstr "خطا به هنگام تنظیم فضای Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "خطا: \"smbclient\" نصب نشده است. نصب و راه اندازی سهام CIFS/SMB امکان پذیر نمیباشد. لطفا از مدیریت سازمان خود برای راه اندازی آن درخواست نمایید." -#: lib/config.php:457 +#: lib/config.php:465 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 "خطا: پشتیبانی FTP در PHP فعال نمی باشد یا نصب نشده است. نصب و راه اندازی از سهم های FTP امکان پذیر نمی باشد. لطفا از مدیر سیستم خود برای راه اندازی آن درخواست\nکنید." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 1c133a5ef2..f986d7c13c 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -31,7 +31,7 @@ msgstr "%s را نمی توان بازگرداند" msgid "Error" msgstr "خطا" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 02ce7b2107..1d0892936f 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -71,25 +71,25 @@ msgstr "سرویس های تحت وب در کنترل شما" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "دانلود به صورت فشرده غیر فعال است" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "فایل ها باید به صورت یکی یکی دانلود شوند" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "بازگشت به فایل ها" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "فایل های انتخاب شده بزرگتر از آن هستند که بتوان یک فایل فشرده تولید کرد" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -134,17 +134,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -269,13 +269,13 @@ msgstr "یک نام کاربری برای مدیر تنظیم نمایید." msgid "Set an admin password." msgstr "یک رمزعبور برای مدیر تنظیم نمایید." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "لطفاً دوباره راهنمای نصبرا بررسی کنید." @@ -329,6 +329,6 @@ msgstr "سال قبل" msgid "years ago" msgstr "سال‌های قبل" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index ad8e2becf1..9309cea1a3 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 4f6fbe998c..83e7dc8299 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 2311a42f47..e3c1982902 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -278,12 +278,12 @@ msgstr "Jaettu" msgid "Share" msgstr "Jaa" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Virhe" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Virhe jaettaessa" @@ -303,115 +303,115 @@ msgstr "Jaettu sinun ja ryhmän {group} kanssa käyttäjän {owner} toimesta" msgid "Shared with you by {owner}" msgstr "Jaettu kanssasi käyttäjän {owner} toimesta" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "Jaa käyttäjän tai ryhmän kanssa…" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "Jaa linkki" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Suojaa salasanalla" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Salasana" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Salli julkinen lähetys" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Lähetä linkki sähköpostitse" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Lähetä" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Aseta päättymispäivä" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Päättymispäivä" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Jaa sähköpostilla:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Henkilöitä ei löytynyt" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "ryhmä" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Jakaminen uudelleen ei ole salittu" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "{item} on jaettu {user} kanssa" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Peru jakaminen" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "ilmoita sähköpostitse" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "voi muokata" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "Pääsyn hallinta" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "luo" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "päivitä" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "poista" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "jaa" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Salasanasuojattu" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Virhe purettaessa eräpäivää" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Virhe päättymispäivää asettaessa" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Lähetetään..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Sähköposti lähetetty" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Varoitus" @@ -581,14 +581,12 @@ msgid "" "\n" msgstr "Hei sinä!\n\n%s jakoi kohteen %s kanssasi.\nTutustu siihen: %s\n\n" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" -msgstr "Jakaminen päättyy %s.\n\n" +msgid "The share will expire on %s." +msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -735,11 +733,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "Hei sinä!

%s jakoi kohteen »%s« kanssasi.
Tutustu siihen!

" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "Jakaminen päättyy %s.

" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 1471c420e1..de2ba9369b 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -156,11 +156,11 @@ msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedos msgid "URL cannot be empty" msgstr "Osoite ei voi olla tyhjä" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} on jo olemassa" @@ -184,39 +184,43 @@ msgstr "Poista pysyvästi" msgid "Rename" msgstr "Nimeä uudelleen" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Odottaa" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "Tiedoston nimeäminen uudelleen epäonnistui" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "kumoa" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kansio" msgstr[1] "%n kansiota" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n tiedosto" msgstr[1] "%n tiedostoa" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} ja {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Lähetetään %n tiedosto" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 6a544ba6f6..0813c9ede0 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "Anna kelvollinen Dropbox-sovellusavain ja salainen vastaus." msgid "Error configuring Google Drive storage" msgstr "Virhe Google Drive levyn asetuksia tehtäessä" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varoitus: \"smbclient\" ei ole asennettuna. CIFS-/SMB-jakojen liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää asentamaan smbclient." -#: lib/config.php:457 +#: lib/config.php:465 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 "Varoitus: PHP:n FTP-tuki ei ole käytössä tai sitä ei ole asennettu. FTP-jakojen liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan FTP-tuki käyttöön." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 43256d6301..55da622da0 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "Kohteen %s palautus epäonnistui" msgid "Error" msgstr "Virhe" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "palautettu" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 84d30c943d..8605bfd73d 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -71,25 +71,25 @@ msgstr "verkkopalvelut hallinnassasi" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "ZIP-lataus on poistettu käytöstä." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Tiedostot on ladattava yksittäin." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Takaisin tiedostoihin" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Valitut tiedostot ovat liian suurikokoisia mahtuakseen zip-tiedostoon." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -134,17 +134,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Sovelluskansio on jo olemassa" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Sovelluskansion luominen ei onnistu. Korjaa käyttöoikeudet. %s" @@ -269,13 +269,13 @@ msgstr "Aseta ylläpitäjän käyttäjätunnus." msgid "Set an admin password." msgstr "Aseta ylläpitäjän salasana." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Lue tarkasti asennusohjeet." @@ -333,6 +333,6 @@ msgstr "viime vuonna" msgid "years ago" msgstr "vuotta sitten" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Aiheuttaja:" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 711882eab6..3cb91db37c 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index c790627aa5..c88edde77d 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 5222847a24..29e783b4c1 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -283,12 +283,12 @@ msgstr "Partagé" msgid "Share" msgstr "Partager" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Erreur" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Erreur lors de la mise en partage" @@ -308,115 +308,115 @@ msgstr "Partagé par {owner} avec vous et le groupe {group}" msgid "Shared with you by {owner}" msgstr "Partagé avec vous par {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "Partager avec un utilisateur ou un groupe..." -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "Partager le lien" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Protéger par un mot de passe" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Mot de passe" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Autoriser l'upload par les utilisateurs non enregistrés" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Envoyez le lien par email" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Envoyer" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Spécifier la date d'expiration" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Date d'expiration" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Partager via e-mail :" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Aucun utilisateur trouvé" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "groupe" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Le repartage n'est pas autorisé" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Partagé dans {item} avec {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Ne plus partager" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "Notifier par email" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "édition autorisée" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "contrôle des accès" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "créer" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "mettre à jour" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "supprimer" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "partager" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Protégé par un mot de passe" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Une erreur est survenue pendant la suppression de la date d'expiration" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Erreur lors de la spécification de la date d'expiration" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "En cours d'envoi ..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Email envoyé" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Attention" @@ -586,14 +586,12 @@ msgid "" "\n" msgstr "Bonjour,\n\nJuste pour vous signaler que %s a partagé %s avec vous.\nConsultez-le : %s\n" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" -msgstr "Le partage expire le %s.\n\n" +msgid "The share will expire on %s." +msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "Salutations!" @@ -740,11 +738,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "Bonjour,

Juste pour vous informer que %s a partagé »%s« avec vous.
Consultez-le !

" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "Le partage expirera le %s.

" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 03665c393d..dc31264566 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -160,11 +160,11 @@ msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera msgid "URL cannot be empty" msgstr "L'URL ne peut pas être vide" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Dans le dossier home, 'Partagé' est un nom de fichier réservé" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} existe déjà" @@ -188,39 +188,43 @@ msgstr "Supprimer de façon définitive" msgid "Rename" msgstr "Renommer" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "En attente" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "Impossible de renommer le fichier" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} a été remplacé par {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "annuler" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dossier" msgstr[1] "%n dossiers" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fichier" msgstr[1] "%n fichiers" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} et {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Téléversement de %n fichier" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 1e0f19e1ac..7eb1176ba8 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "Veuillez fournir une clé d'application (app key) ainsi qu'un mot de pas msgid "Error configuring Google Drive storage" msgstr "Erreur lors de la configuration du support de stockage Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Attention : \"smbclient\" n'est pas installé. Le montage des partages CIFS/SMB n'est pas disponible. Contactez votre administrateur système pour l'installer." -#: lib/config.php:457 +#: lib/config.php:465 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 "Attention : Le support FTP de PHP n'est pas activé ou installé. Le montage des partages FTP n'est pas disponible. Contactez votre administrateur système pour l'installer." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index 62eb0f505c..351fde9dda 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "Impossible de restaurer %s" msgid "Error" msgstr "Erreur" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "restauré" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 77eb230e07..7ee4be4141 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -73,27 +73,27 @@ msgstr "services web sous votre contrôle" msgid "cannot open \"%s\"" msgstr "impossible d'ouvrir \"%s\"" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "Téléchargement ZIP désactivé." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Les fichiers nécessitent d'être téléchargés un par un." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Retour aux Fichiers" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Les fichiers sélectionnés sont trop volumineux pour être compressés." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Télécharger les fichiers en parties plus petites, séparément ou demander avec bienveillance à votre administrateur." +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -136,17 +136,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "L'application ne peut être installée car elle contient la balise true qui n'est pas autorisée pour les applications non-diffusées" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "L'application ne peut être installée car la version de info.xml/version n'est identique à celle indiquée sur l'app store" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Le dossier de l'application existe déjà" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Impossible de créer le dossier de l'application. Corrigez les droits d'accès. %s" @@ -271,13 +271,13 @@ msgstr "Spécifiez un nom d'utilisateur pour l'administrateur." msgid "Set an admin password." msgstr "Spécifiez un mot de passe administrateur." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Veuillez vous référer au guide d'installation." @@ -335,6 +335,6 @@ msgstr "l'année dernière" msgid "years ago" msgstr "il y a plusieurs années" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Causé par :" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index e025ce065d..ebc0caa83d 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: etiess \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 76a5d80b95..8ff17704a0 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-17 12:50+0000\n" +"Last-Translator: Christophe Lherieau \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" @@ -91,15 +91,15 @@ msgstr "Erreur" #: js/settings.js:674 msgid "Configuration OK" -msgstr "" +msgstr "Configuration OK" #: js/settings.js:683 msgid "Configuration incorrect" -msgstr "" +msgstr "Configuration incorrecte" #: js/settings.js:692 msgid "Configuration incomplete" -msgstr "" +msgstr "Configuration incomplète" #: js/settings.js:709 js/settings.js:718 msgid "Select groups" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 064f3cdb84..da78390698 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -277,12 +277,12 @@ msgstr "Compartir" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Erro" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Produciuse un erro ao compartir" @@ -302,115 +302,115 @@ msgstr "Compartido con vostede e co grupo {group} por {owner}" msgid "Shared with you by {owner}" msgstr "Compartido con vostede por {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "Compartir cun usuario ou grupo ..." -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "Ligazón para compartir" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Protexido con contrasinais" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Contrasinal" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Permitir o envío público" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Enviar ligazón por correo" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Enviar" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Definir a data de caducidade" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Data de caducidade" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Compartir por correo:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Non se atopou xente" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "grupo" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Non se permite volver a compartir" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Deixar de compartir" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "notificar por correo" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "pode editar" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "control de acceso" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "crear" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "actualizar" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "eliminar" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "compartir" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Protexido con contrasinal" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Produciuse un erro ao retirar a data de caducidade" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Produciuse un erro ao definir a data de caducidade" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Correo enviado" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Aviso" @@ -580,14 +580,12 @@ msgid "" "\n" msgstr "Ola,\n\nsó facerlle saber que %s compartiu %s con vostede.\nVéxao en: %s\n\n" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" -msgstr "Esta compartición caduca o %s.\n\n" +msgid "The share will expire on %s." +msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "Saúdos!" @@ -734,11 +732,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "Ola,

Só facerlle saber que %s compartiu «%s» con vostede.
Véxao!

" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "Esta compartición caduca o %s.

" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 7f81618cfc..c01a97bb2a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -156,11 +156,11 @@ msgstr "O envío do ficheiro está en proceso. Saír agora da páxina cancelará msgid "URL cannot be empty" msgstr "O URL non pode quedar en branco." -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "«Shared» dentro do cartafol persoal é un nome reservado" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "Xa existe un {new_name}" @@ -184,39 +184,43 @@ msgstr "Eliminar permanentemente" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Pendentes" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "Non foi posíbel renomear o ficheiro" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "substituír {new_name} por {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "desfacer" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartafol" msgstr[1] "%n cartafoles" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n ficheiro" msgstr[1] "%n ficheiros" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Cargando %n ficheiro" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index be7162a3c0..1c5aff7b46 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "Forneza unha chave correcta e segreda do Dropbox." msgid "Error configuring Google Drive storage" msgstr "Produciuse un erro ao configurar o almacenamento en Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Aviso: «smbclient» non está instalado. Non é posibel a montaxe de comparticións CIFS/SMB. Consulte co administrador do sistema para instalalo." -#: lib/config.php:457 +#: lib/config.php:465 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 "Aviso: A compatibilidade de FTP en PHP non está activada ou instalada. Non é posibel a montaxe de comparticións FTP. Consulte co administrador do sistema para instalalo." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index b9233c2429..eea63f9317 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "Non foi posíbel restaurar %s" msgid "Error" msgstr "Erro" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "restaurado" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 096ac63bfe..cd03671442 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -71,27 +71,27 @@ msgstr "servizos web baixo o seu control" msgid "cannot open \"%s\"" msgstr "non foi posíbel abrir «%s»" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "As descargas ZIP están desactivadas." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Os ficheiros necesitan seren descargados dun en un." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Volver aos ficheiros" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Os ficheiros seleccionados son demasiado grandes como para xerar un ficheiro zip." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Descargue os ficheiros en cachos máis pequenos e por separado, ou pídallos amabelmente ao seu administrador." +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -134,17 +134,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "Non é posíbel instalar o aplicativo por conter a etiqueta\n\n\ntrue\n\nque non está permitida para os aplicativos non enviados" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Non é posíbel instalar o aplicativo xa que a versión en info.xml/version non é a mesma que a versión informada desde a App Store" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Xa existe o directorio do aplicativo" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Non é posíbel crear o cartafol de aplicativos. Corrixa os permisos. %s" @@ -269,13 +269,13 @@ msgstr "Estabeleza un nome de usuario administrador" msgid "Set an admin password." msgstr "Estabeleza un contrasinal de administrador" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "O seu servidor web non está aínda configurado adecuadamente para permitir a sincronización de ficheiros xa que semella que a interface WebDAV non está a funcionar." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Volva comprobar as guías de instalación" @@ -333,6 +333,6 @@ msgstr "último ano" msgid "years ago" msgstr "anos atrás" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Causado por:" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 3c0775ed2b..22d522902b 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 1ddc957651..6e6b695990 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-18 16:20+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" @@ -89,15 +89,15 @@ msgstr "Erro" #: js/settings.js:674 msgid "Configuration OK" -msgstr "" +msgstr "Configuración correcta" #: js/settings.js:683 msgid "Configuration incorrect" -msgstr "" +msgstr "Configuración incorrecta" #: js/settings.js:692 msgid "Configuration incomplete" -msgstr "" +msgstr "Configuración incompleta" #: js/settings.js:709 js/settings.js:718 msgid "Select groups" diff --git a/l10n/he/core.po b/l10n/he/core.po index 72d8ad10f2..66f9f4c164 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -278,12 +278,12 @@ msgstr "שותף" msgid "Share" msgstr "שתף" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "שגיאה" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "שגיאה במהלך השיתוף" @@ -303,115 +303,115 @@ msgstr "שותף אתך ועם הקבוצה {group} שבבעלות {owner}" msgid "Shared with you by {owner}" msgstr "שותף אתך על ידי {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "הגנה בססמה" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "סיסמא" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "שליחת קישור בדוא״ל למשתמש" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "שליחה" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "הגדרת תאריך תפוגה" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "תאריך התפוגה" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "שיתוף באמצעות דוא״ל:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "לא נמצאו אנשים" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "קבוצה" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "אסור לעשות שיתוף מחדש" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "שותף תחת {item} עם {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "הסר שיתוף" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "ניתן לערוך" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "בקרת גישה" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "יצירה" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "עדכון" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "מחיקה" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "שיתוף" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "מוגן בססמה" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "אירעה שגיאה בביטול תאריך התפוגה" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "אירעה שגיאה בעת הגדרת תאריך התפוגה" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "מתבצעת שליחה ..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "הודעת הדוא״ל נשלחה" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "אזהרה" @@ -581,14 +581,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -735,11 +733,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/he/files.po b/l10n/he/files.po index deca4a189c..3e4d6d7d9c 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -157,11 +157,11 @@ msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד ת msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} כבר קיים" @@ -185,39 +185,43 @@ msgstr "מחק לצמיתות" msgid "Rename" msgstr "שינוי שם" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "ממתין" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} הוחלף ב־{old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "ביטול" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index beb7f4d7e3..91ae5a6c44 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "נא לספק קוד יישום וסוד תקניים של Dropbox." msgid "Error configuring Google Drive storage" msgstr "אירעה שגיאה בעת הגדרת אחסון ב־Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 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:457 +#: lib/config.php:465 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:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 33edb96f67..b13e9732c8 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "לא ניתן לשחזר את %s" msgid "Error" msgstr "שגיאה" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 736f4e9fd6..d16c10b9b6 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "שירותי רשת תחת השליטה שלך" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "הורדת ZIP כבויה" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "יש להוריד את הקבצים אחד אחרי השני." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "חזרה לקבצים" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "הקבצים הנבחרים גדולים מידי ליצירת קובץ zip." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "שרת האינטרנט שלך אינו מוגדר לצורכי סנכרון קבצים עדיין כיוון שמנשק ה־WebDAV כנראה אינו תקין." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "נא לעיין שוב במדריכי ההתקנה." @@ -332,6 +332,6 @@ msgstr "שנה שעברה" msgid "years ago" msgstr "שנים" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index c8565137b1..5c39a005ab 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 50ea469117..b345b52f26 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index ebf1c66c98..4382444a5d 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -278,12 +278,12 @@ msgstr "" msgid "Share" msgstr "साझा करें" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "त्रुटि" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -303,115 +303,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "पासवर्ड" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "भेजें" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "कोई व्यक्ति नहीं मिले " -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "भेजा जा रहा है" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "ईमेल भेज दिया गया है " -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "चेतावनी " @@ -581,14 +581,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -735,11 +733,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/hi/files.po b/l10n/hi/files.po index e8d87b1ca7..efe750827f 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -155,11 +155,11 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,39 +183,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 443a1a4ed1..883a1dbb2f 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -332,6 +332,6 @@ msgstr "" msgid "years ago" msgstr "" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index 5a8d450d54..ce19ebbd63 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 2d106df379..1245118c21 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -281,12 +281,12 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Greška" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Greška prilikom djeljenja" @@ -306,115 +306,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Zaštiti lozinkom" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Lozinka" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Postavi datum isteka" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Datum isteka" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Dijeli preko email-a:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Osobe nisu pronađene" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Ponovo dijeljenje nije dopušteno" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Makni djeljenje" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "može mjenjat" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "kontrola pristupa" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "kreiraj" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "ažuriraj" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "izbriši" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "djeli" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Zaštita lozinkom" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Greška prilikom brisanja datuma isteka" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Greška prilikom postavljanja datuma isteka" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -584,14 +584,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -738,11 +736,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/hr/files.po b/l10n/hr/files.po index e0a1c7a978..991f94f2ff 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -155,11 +155,11 @@ msgstr "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje." msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,41 +183,45 @@ msgstr "" msgid "Rename" msgstr "Promjeni ime" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "U tijeku" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "vrati" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index ef33412ac0..f33a72e663 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: lib/config.php:461 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:457 +#: lib/config.php:465 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:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 6d9a70fffd..d2e83f8fae 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -31,7 +31,7 @@ msgstr "" msgid "Error" msgstr "Greška" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 203bc4544b..af306ed83c 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "web usluge pod vašom kontrolom" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -336,6 +336,6 @@ msgstr "prošlu godinu" msgid "years ago" msgstr "godina" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index c06047fea8..9a53f06859 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 4f1f0126a8..b686dd9799 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 0bbb5ad595..53daead24a 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -279,12 +279,12 @@ msgstr "Megosztott" msgid "Share" msgstr "Megosztás" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Hiba" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Nem sikerült létrehozni a megosztást" @@ -304,115 +304,115 @@ msgstr "Megosztotta Önnel és a(z) {group} csoporttal: {owner}" msgid "Shared with you by {owner}" msgstr "Megosztotta Önnel: {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "Megosztani egy felhasználóval vagy csoporttal ..." -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "Megosztás hivatkozással" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Jelszóval is védem" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Jelszó" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Feltöltést is engedélyezek" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Email címre küldjük el" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Küldjük el" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Legyen lejárati idő" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "A lejárati idő" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Megosztás emaillel:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Nincs találat" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "csoport" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Ezt az állományt csak a tulajdonosa oszthatja meg másokkal" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Megosztva {item}-ben {user}-rel" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "A megosztás visszavonása" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "email értesítés" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "módosíthat" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "jogosultság" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "létrehoz" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "szerkeszt" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "töröl" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "megoszt" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Jelszóval van védve" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Nem sikerült a lejárati időt törölni" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Nem sikerült a lejárati időt beállítani" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Küldés ..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Az emailt elküldtük" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Figyelmeztetés" @@ -582,14 +582,12 @@ msgid "" "\n" msgstr "Szia!\\n\n\\n\nÉrtesítünk, hogy %s megosztotta veled a következőt: %s.\\n\nItt tudod megnézni: %s\\n\n\\n" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" -msgstr "A megosztás ekkor jár le: %s\\n\n\\n" +msgid "The share will expire on %s." +msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "Üdv." @@ -736,11 +734,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "Szia!

Értesítünk, hogy %s megosztotta veled a következőt: »%s«.
Ide kattintva tudod megnézni

" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "A megosztás ekkor jár le: %s

" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index dd347fa42a..df7d2f365b 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 21:10+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -184,7 +184,7 @@ msgstr "Végleges törlés" msgid "Rename" msgstr "Átnevezés" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:863 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Folyamatban" @@ -200,23 +200,27 @@ msgstr "{new_name} fájlt kicseréltük ezzel: {old_name}" msgid "undo" msgstr "visszavonás" -#: js/filelist.js:584 js/filelist.js:658 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappa" msgstr[1] "%n mappa" -#: js/filelist.js:585 js/filelist.js:659 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n állomány" msgstr[1] "%n állomány" -#: js/filelist.js:592 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} és {files}" -#: js/filelist.js:802 js/filelist.js:840 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n állomány feltöltése" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 1f24808b15..84343fbce5 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -38,20 +38,20 @@ msgstr "Adjon meg egy érvényes Dropbox app key-t és secretet!" msgid "Error configuring Google Drive storage" msgstr "A Google Drive tárolót nem sikerült beállítani" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "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." -#: lib/config.php:457 +#: lib/config.php:465 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 "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." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index f90dae79c9..218eeecb95 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "Nem sikerült %s visszaállítása" msgid "Error" msgstr "Hiba" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "visszaállítva" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index e5927107e0..70b9ddd1a7 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -9,10 +9,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" -"Last-Translator: sherlock79 \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -73,27 +73,27 @@ msgstr "webszolgáltatások saját kézben" msgid "cannot open \"%s\"" msgstr "nem sikerült megnyitni \"%s\"" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "A ZIP-letöltés nincs engedélyezve." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "A fájlokat egyenként kell letölteni." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Vissza a Fájlokhoz" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "A kiválasztott fájlok túl nagyok a zip tömörítéshez." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Tölts le a fileokat kisebb chunkokban, kölün vagy kérj segitséget a rendszergazdádtól." +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -136,17 +136,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "Az alkalmazást nem lehet telepíteni, mert tartalmazza a \n\ntrue\n\ncímkét, ami a nem szállított alkalmazások esetén nem engedélyezett" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Az alkalmazást nem lehet telepíteni, mert az info.xml/version-ben megadott verzió nem egyezik az alkalmazás-áruházban feltüntetett verzióval." -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Az alkalmazás mappája már létezik" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Nem lehetett létrehozni az alkalmzás mappáját. Kérlek ellenőrizd a jogosultásgokat. %s" @@ -271,13 +271,13 @@ msgstr "Állítson be egy felhasználói nevet az adminisztrációhoz." msgid "Set an admin password." msgstr "Állítson be egy jelszót az adminisztrációhoz." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Az Ön webkiszolgálója nincs megfelelően beállítva az állományok szinkronizálásához, mert a WebDAV-elérés úgy tűnik, nem működik." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót." @@ -335,6 +335,6 @@ msgstr "tavaly" msgid "years ago" msgstr "több éve" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Okozta:" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 7230bb5e3b..c276fcad84 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 21:20+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 06a2c615c2..2e87aa27ee 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index 6ba07f14a6..732b90500c 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-30 03:32-0400\n" -"PO-Revision-Date: 2013-10-30 07:32+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -276,12 +276,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690 -#: js/share.js:702 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:730 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -301,115 +301,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:272 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:275 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:305 js/share.js:342 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:316 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:358 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:380 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:388 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:391 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:393 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:396 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:399 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:402 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:405 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:447 js/share.js:677 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:690 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:702 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:717 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:728 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:752 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -579,14 +579,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -733,11 +731,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/hy/files.po b/l10n/hy/files.po index dc0e68a564..d1242fa51e 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -155,11 +155,11 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,39 +183,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index 3c94ed0534..6b9791aa98 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" @@ -37,20 +37,20 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: lib/config.php:461 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:457 +#: lib/config.php:465 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:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index d0d4ceee01..499cc4c2ca 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ msgstr "" msgid "Error" msgstr "" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/hy/lib.po b/l10n/hy/lib.po index 16d2817b05..f40506dc58 100644 --- a/l10n/hy/lib.po +++ b/l10n/hy/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-17 13:47-0400\n" -"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -24,31 +24,31 @@ msgid "" " of ownCloud." msgstr "" -#: private/app.php:254 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: private/app.php:359 +#: private/app.php:360 msgid "Help" msgstr "" -#: private/app.php:372 +#: private/app.php:373 msgid "Personal" msgstr "" -#: private/app.php:383 +#: private/app.php:384 msgid "Settings" msgstr "" -#: private/app.php:395 +#: private/app.php:396 msgid "Users" msgstr "" -#: private/app.php:408 +#: private/app.php:409 msgid "Admin" msgstr "" -#: private/app.php:872 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -284,54 +284,54 @@ msgstr "" msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:122 +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: private/template/functions.php:123 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:124 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:125 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: private/template/functions.php:126 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: private/template/functions.php:128 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:130 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:142 msgid "years ago" msgstr "" -#: private/template.php:297 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 4f4e1cb836..cf22a1aa1f 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-06 21:43-0500\n" -"PO-Revision-Date: 2013-11-07 02:43+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/user_ldap.po b/l10n/hy/user_ldap.po index 4beb0db4ac..8db7f0d503 100644 --- a/l10n/hy/user_ldap.po +++ b/l10n/hy/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index ec4a87332c..aef23c4c3d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -276,12 +276,12 @@ msgstr "" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -301,115 +301,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Contrasigno" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Invia" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -579,14 +579,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -733,11 +731,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 39400d1bf0..dd7b79afef 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -155,11 +155,11 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,39 +183,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index 67def0dc37..9b9f183f6f 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: lib/config.php:461 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:457 +#: lib/config.php:465 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:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 59c86551a1..c373b8961e 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -31,7 +31,7 @@ msgstr "" msgid "Error" msgstr "Error" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 48892d85eb..31020e1e85 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "servicios web sub tu controlo" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -332,6 +332,6 @@ msgstr "" msgid "years ago" msgstr "" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index d98635cddb..9cf39820fc 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index cf751b8117..aeb99b6082 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/id/core.po b/l10n/id/core.po index 600030cb89..51fb4cacad 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -271,12 +271,12 @@ msgstr "Dibagikan" msgid "Share" msgstr "Bagikan" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Galat" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Galat ketika membagikan" @@ -296,115 +296,115 @@ msgstr "Dibagikan dengan Anda dan grup {group} oleh {owner}" msgid "Shared with you by {owner}" msgstr "Dibagikan dengan Anda oleh {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Lindungi dengan sandi" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Sandi" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Emailkan tautan ini ke orang" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Kirim" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Setel tanggal kedaluwarsa" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Tanggal kedaluwarsa" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Bagian lewat email:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Tidak ada orang ditemukan" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "grup" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Berbagi ulang tidak diizinkan" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Dibagikan dalam {item} dengan {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Batalkan berbagi" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "dapat mengedit" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "kontrol akses" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "buat" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "perbarui" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "hapus" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "bagikan" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Dilindungi sandi" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Galat ketika menghapus tanggal kedaluwarsa" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Galat ketika menyetel tanggal kedaluwarsa" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Mengirim ..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Email terkirim" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Peringatan" @@ -574,14 +574,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -728,11 +726,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/id/files.po b/l10n/id/files.po index c5f5e6d55f..ca42c63cf3 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -155,11 +155,11 @@ msgstr "Berkas sedang diunggah. Meninggalkan halaman ini akan membatalkan proses msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} sudah ada" @@ -183,37 +183,41 @@ msgstr "Hapus secara permanen" msgid "Rename" msgstr "Ubah nama" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Menunggu" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "mengganti {new_name} dengan {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "urungkan" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 11bb34ff1c..2ec650a917 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "Masukkan kunci dan sandi aplikasi Dropbox yang benar." msgid "Error configuring Google Drive storage" msgstr "Kesalahan dalam mengkonfigurasi penyimpanan Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Peringatan: \"smbclient\" tidak terpasang. Mount direktori CIFS/SMB tidak dapat dilakukan. Silakan minta administrator sistem untuk memasangnya." -#: lib/config.php:457 +#: lib/config.php:465 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 "Peringatan: Dukungan FTP di PHP tidak aktif atau tidak terpasang. Mount direktori FTP tidak dapat dilakukan. Silakan minta administrator sistem untuk memasangnya." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index e351ecb37c..c6a065cb2f 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -31,7 +31,7 @@ msgstr "Tidak dapat memulihkan %s" msgid "Error" msgstr "Galat" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 5a19a0132b..27c5b89249 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "layanan web dalam kontrol Anda" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "Pengunduhan ZIP dimatikan." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Berkas harus diunduh satu persatu." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Kembali ke Daftar Berkas" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Berkas yang dipilih terlalu besar untuk dibuat berkas zip-nya." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "Setel nama pengguna admin." msgid "Set an admin password." msgstr "Setel sandi admin." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Silakan periksa ulang panduan instalasi." @@ -328,6 +328,6 @@ msgstr "tahun kemarin" msgid "years ago" msgstr "beberapa tahun lalu" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 1f529ecbfc..1b0ef87581 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index 7a731bec90..2d3dc7c9ad 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/is/core.po b/l10n/is/core.po index e7275920a1..d7ad119ce0 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -277,12 +277,12 @@ msgstr "Deilt" msgid "Share" msgstr "Deila" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Villa" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Villa við deilingu" @@ -302,115 +302,115 @@ msgstr "Deilt með þér og hópnum {group} af {owner}" msgid "Shared with you by {owner}" msgstr "Deilt með þér af {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Verja með lykilorði" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Lykilorð" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Senda vefhlekk í tölvupóstu til notenda" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Senda" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Setja gildistíma" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Gildir til" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Deila með tölvupósti:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Engir notendur fundust" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Endurdeiling er ekki leyfð" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Deilt með {item} ásamt {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Hætta deilingu" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "getur breytt" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "aðgangsstýring" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "mynda" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "uppfæra" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "eyða" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "deila" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Verja með lykilorði" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Villa við að aftengja gildistíma" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Villa við að setja gildistíma" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Sendi ..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Tölvupóstur sendur" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Aðvörun" @@ -580,14 +580,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -734,11 +732,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/is/files.po b/l10n/is/files.po index 3c51272e4e..55f02ca332 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -155,11 +155,11 @@ msgstr "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending mis msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} er þegar til" @@ -183,39 +183,43 @@ msgstr "" msgid "Rename" msgstr "Endurskýra" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Bíður" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "yfirskrifaði {new_name} með {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "afturkalla" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index b222db1b69..aa54645b9c 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "Gefðu upp virkan Dropbox lykil og leynikóða" msgid "Error configuring Google Drive storage" msgstr "Villa kom upp við að setja upp Google Drive gagnasvæði" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Aðvörun: \"smbclient\" er ekki uppsettur. Uppsetning á CIFS/SMB gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan." -#: lib/config.php:457 +#: lib/config.php:465 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 "Aðvörun: FTP stuðningur í PHP er ekki virkur. Uppsetning á FTP gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index 9219fc2b3f..228fce21ec 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -31,7 +31,7 @@ msgstr "" msgid "Error" msgstr "Villa" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 2a296a8505..19c63cba80 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "vefþjónusta undir þinni stjórn" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "Slökkt á ZIP niðurhali." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Skrárnar verður að sækja eina og eina" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Aftur í skrár" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Valdar skrár eru of stórar til að búa til ZIP skrá." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -332,6 +332,6 @@ msgstr "síðasta ári" msgid "years ago" msgstr "einhverjum árum" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 65b7bc3e6e..99e6de6adb 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 7880e3983b..59410a98bd 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/it/core.po b/l10n/it/core.po index fabe79755d..ca98895005 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -280,12 +280,12 @@ msgstr "Condivisi" msgid "Share" msgstr "Condividi" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Errore" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Errore durante la condivisione" @@ -305,115 +305,115 @@ msgstr "Condiviso con te e con il gruppo {group} da {owner}" msgid "Shared with you by {owner}" msgstr "Condiviso con te da {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "Condividi con utente o gruppo ..." -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "Condividi collegamento" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Proteggi con password" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Password" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Consenti caricamento pubblico" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Invia collegamento via email" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Invia" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Imposta data di scadenza" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Data di scadenza" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Condividi tramite email:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Non sono state trovate altre persone" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "gruppo" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "La ri-condivisione non è consentita" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Condiviso in {item} con {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Rimuovi condivisione" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "notifica tramite email" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "può modificare" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "controllo d'accesso" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "creare" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "aggiornare" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "elimina" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "condividi" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Protetta da password" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Errore durante la rimozione della data di scadenza" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Errore durante l'impostazione della data di scadenza" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Invio in corso..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Messaggio inviato" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Avviso" @@ -583,14 +583,12 @@ msgid "" "\n" msgstr "Ciao,\n\nvolevo informarti che %s ha condiviso %s con te.\nVedi: %s\n\n" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" -msgstr "La condivisione scadrà il %s.\n\n" +msgid "The share will expire on %s." +msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "Saluti!" @@ -737,11 +735,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "Ciao,

volevo informarti che %s ha condiviso %s con te.
Vedi!

" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "La condivisione scadrà il %s.

" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/it/files.po b/l10n/it/files.po index a1cbe0a51a..ce93ca5a54 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -157,11 +157,11 @@ msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il ca msgid "URL cannot be empty" msgstr "L'URL non può essere vuoto." -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Nella cartella home 'Shared' è un nome riservato" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} esiste già" @@ -185,39 +185,43 @@ msgstr "Elimina definitivamente" msgid "Rename" msgstr "Rinomina" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "In corso" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "Impossibile rinominare il file" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "sostituito {new_name} con {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "annulla" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartella" msgstr[1] "%n cartelle" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" msgstr[1] "%n file" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Caricamento di %n file in corso" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 503bc92d14..4704f0c3cd 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "Fornisci chiave di applicazione e segreto di Dropbox validi." msgid "Error configuring Google Drive storage" msgstr "Errore durante la configurazione dell'archivio Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Avviso: \"smbclient\" non è installato. Impossibile montare condivisioni CIFS/SMB. Chiedi all'amministratore di sistema di installarlo." -#: lib/config.php:457 +#: lib/config.php:465 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 "Avviso: il supporto FTP di PHP non è abilitato o non è installato. Impossibile montare condivisioni FTP. Chiedi all'amministratore di sistema di installarlo." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index a016e6ef69..05958ee8c9 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "Impossibile ripristinare %s" msgid "Error" msgstr "Errore" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "ripristinati" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index bfec7a0a90..d60ba401fe 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -73,27 +73,27 @@ msgstr "servizi web nelle tue mani" msgid "cannot open \"%s\"" msgstr "impossibile aprire \"%s\"" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "Lo scaricamento in formato ZIP è stato disabilitato." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "I file devono essere scaricati uno alla volta." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Torna ai file" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "I file selezionati sono troppo grandi per generare un file zip." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Scarica i file in blocchi più piccoli, separatamente o chiedi al tuo amministratore." +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -136,17 +136,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "L'applicazione non può essere installata poiché contiene il tag true che non è permesso alle applicazioni non shipped" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "L'applicazione non può essere installata poiché la versione in info.xml/version non è la stessa riportata dall'app store" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "La cartella dell'applicazione esiste già" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Impossibile creare la cartella dell'applicazione. Correggi i permessi. %s" @@ -271,13 +271,13 @@ msgstr "Imposta un nome utente di amministrazione." msgid "Set an admin password." msgstr "Imposta una password di amministrazione." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Leggi attentamente le guide d'installazione." @@ -335,6 +335,6 @@ msgstr "anno scorso" msgid "years ago" msgstr "anni fa" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Causato da:" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 9c7f3e29ca..7e4f518b30 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: polxmod \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 3dd1bf61db..653635bd9c 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-18 22:50+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" @@ -90,15 +90,15 @@ msgstr "Errore" #: js/settings.js:674 msgid "Configuration OK" -msgstr "" +msgstr "Configurazione corretta" #: js/settings.js:683 msgid "Configuration incorrect" -msgstr "" +msgstr "Configurazione non corretta" #: js/settings.js:692 msgid "Configuration incomplete" -msgstr "" +msgstr "Configurazione incompleta" #: js/settings.js:709 js/settings.js:718 msgid "Select groups" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 92a81b7126..a7161783af 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -275,12 +275,12 @@ msgstr "共有中" msgid "Share" msgstr "共有" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "エラー" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "共有でエラー発生" @@ -300,115 +300,115 @@ msgstr "あなたと {owner} のグループ {group} で共有中" msgid "Shared with you by {owner}" msgstr "{owner} と共有中" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "ユーザもしくはグループと共有 ..." -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "共有リンク" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "パスワード保護" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "パスワード" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "アップロードを許可" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "メールリンク" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "送信" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "有効期限を設定" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "有効期限" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "メール経由で共有:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "ユーザーが見つかりません" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "グループ" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "再共有は許可されていません" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "{item} 内で {user} と共有中" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "共有解除" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "メールで通知" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "編集を許可" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "アクセス権限" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "作成" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "更新" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "削除" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "共有" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "パスワード保護" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "有効期限の未設定エラー" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "有効期限の設定でエラー発生" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "送信中..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "メールを送信しました" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "警告" @@ -578,14 +578,12 @@ msgid "" "\n" msgstr "こんにちは、\n\n%s があなたと %s を共有したことをお知らせします。\nそれを表示: %s\n" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" -msgstr "共有は %s で有効期限が切れます。\n\n" +msgid "The share will expire on %s." +msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "それでは!" @@ -732,11 +730,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "こんにちは、

%sがあなたと »%s« を共有したことをお知らせします。
それを表示

" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "共有は %s で有効期限が切れます。

" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 3bdf4c18b7..c3e84e7cdf 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 11:20+0000\n" -"Last-Translator: plazmism \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -188,7 +188,7 @@ msgstr "完全に削除する" msgid "Rename" msgstr "名前の変更" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:863 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "中断" @@ -204,21 +204,25 @@ msgstr "{old_name} を {new_name} に置換" msgid "undo" msgstr "元に戻す" -#: js/filelist.js:584 js/filelist.js:658 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 個のフォルダ" -#: js/filelist.js:585 js/filelist.js:659 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n 個のファイル" -#: js/filelist.js:592 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} と {files}" -#: js/filelist.js:802 js/filelist.js:840 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n 個のファイルをアップロード中" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index 1a40cf44a9..ffff86e20f 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "有効なDropboxアプリのキーとパスワードを入力して下 msgid "Error configuring Google Drive storage" msgstr "Googleドライブストレージの設定エラー" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "警告: \"smbclient\" はインストールされていません。CIFS/SMB 共有のマウントはできません。システム管理者にインストールをお願いして下さい。" -#: lib/config.php:457 +#: lib/config.php:465 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 "警告: PHPのFTPサポートは無効もしくはインストールされていません。FTP共有のマウントはできません。システム管理者にインストールをお願いして下さい。" -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 0a8f803761..634208ae93 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.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-10-27 02:28-0400\n" -"PO-Revision-Date: 2013-10-24 04:20+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -34,7 +34,7 @@ msgstr "%s を復元出来ませんでした" msgid "Error" msgstr "エラー" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "復元済" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index c018c04852..300049e62d 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -10,10 +10,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -74,27 +74,27 @@ msgstr "管理下のウェブサービス" msgid "cannot open \"%s\"" msgstr "\"%s\" が開けません" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "ZIPダウンロードは無効です。" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "ファイルは1つずつダウンロードする必要があります。" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "ファイルに戻る" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "選択したファイルはZIPファイルの生成には大きすぎます。" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "ファイルは、小さいファイルに分割されてダウンロードされます。もしくは、管理者にお尋ねください。" +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -137,17 +137,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "非shippedアプリには許可されないtrueタグが含まれているためにアプリをインストール出来ません。" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "info.xml/versionのバージョンがアプリストアのバージョンと合っていない為、アプリはインストールされません" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "アプリディレクトリは既に存在します" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "アプリフォルダを作成出来ませんでした。%s のパーミッションを修正してください。" @@ -272,13 +272,13 @@ msgstr "管理者のユーザ名を設定。" msgid "Set an admin password." msgstr "管理者のパスワードを設定。" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "インストールガイドをよく確認してください。" @@ -332,6 +332,6 @@ msgstr "一年前" msgid "years ago" msgstr "年前" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "原因:" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index a8ec1b5443..caf93d66fe 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: plazmism \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 1cd451f3b8..19c42d468a 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/ka/core.po b/l10n/ka/core.po index 48df2936ea..7dfdba5b03 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:10+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -271,12 +271,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -296,115 +296,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "პაროლი" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -574,14 +574,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -728,11 +726,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 5026683765..a15f83b252 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-03 17:38+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:27 +#: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:127 +#: ajax/newfile.php:128 msgid "Error when creating the file" msgstr "" @@ -114,15 +114,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:153 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:143 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" @@ -142,24 +142,24 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:345 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:437 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:519 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:524 js/filelist.js:364 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:526 js/filelist.js:366 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,101 +183,105 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:392 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:582 js/filelist.js:649 js/files.js:587 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:583 js/filelist.js:650 js/files.js:593 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:590 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:793 js/filelist.js:831 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:34 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:46 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:50 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:63 +#: js/files.js:110 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:67 +#: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:71 +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:302 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error" msgstr "" -#: js/files.js:569 templates/index.php:56 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:570 templates/index.php:68 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:571 templates/index.php:70 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" diff --git a/l10n/ka/lib.po b/l10n/ka/lib.po index a5e15d159c..1458b755e1 100644 --- a/l10n/ka/lib.po +++ b/l10n/ka/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "ZIP გადმოწერა გამორთულია" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -328,6 +328,6 @@ msgstr "" msgid "years ago" msgstr "" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index dad7364ec0..c9d589e012 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -271,12 +271,12 @@ msgstr "გაზიარებული" msgid "Share" msgstr "გაზიარება" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "შეცდომა" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "შეცდომა გაზიარების დროს" @@ -296,115 +296,115 @@ msgstr "გაზიარდა თქვენთვის და ჯგუფ msgid "Shared with you by {owner}" msgstr "გაზიარდა თქვენთვის {owner}–ის მიერ" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "პაროლით დაცვა" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "პაროლი" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "ლინკის პიროვნების იმეილზე გაგზავნა" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "გაგზავნა" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "მიუთითე ვადის გასვლის დრო" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "ვადის გასვლის დრო" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "გააზიარე მეილზე" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "მომხმარებელი არ არის ნაპოვნი" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "ჯგუფი" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "მეორეჯერ გაზიარება არ არის დაშვებული" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "გაზიარდა {item}–ში {user}–ის მიერ" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "გაუზიარებადი" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "შეგიძლია შეცვლა" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "დაშვების კონტროლი" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "შექმნა" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "განახლება" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "წაშლა" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "გაზიარება" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "პაროლით დაცული" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "შეცდომა ვადის გასვლის მოხსნის დროს" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "შეცდომა ვადის გასვლის მითითების დროს" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "გაგზავნა ...." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "იმეილი გაიგზავნა" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "გაფრთხილება" @@ -574,14 +574,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -728,11 +726,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 411e16a530..d04cc7da1e 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -155,11 +155,11 @@ msgstr "მიმდინარეობს ფაილის ატვირ msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} უკვე არსებობს" @@ -183,37 +183,41 @@ msgstr "სრულად წაშლა" msgid "Rename" msgstr "გადარქმევა" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "მოცდის რეჟიმში" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} შეცვლილია {old_name}–ით" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "დაბრუნება" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index d4a75bb89f..655c7a0042 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -37,20 +37,20 @@ msgstr "გთხოვთ მიუთითოთ Dropbox აპლიკა msgid "Error configuring Google Drive storage" msgstr "შეცდომა Google Drive საცავის კონფიგურირების დროს" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "გაფრთხილება: \"smbclient\" არ არის ინსტალირებული. CIFS/SMB ზიარების მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის." -#: lib/config.php:457 +#: lib/config.php:465 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 "გაფრთხილება: FTP მხარდაჭერა არ არის აქტიური ან დაინსტალირებული. FTP ზიარის მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 2d54104afb..590410f057 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -31,7 +31,7 @@ msgstr "%s–ის აღდგენა ვერ მოხერხდა" msgid "Error" msgstr "შეცდომა" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index d0c56e264d..939e84996c 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "web services under your control" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "ZIP download–ი გათიშულია" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "ფაილები უნდა გადმოიტვირთოს სათითაოდ." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "უკან ფაილებში" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "არჩეული ფაილები ძალიან დიდია zip ფაილის გენერაციისთვის." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "დააყენეთ ადმინისტრატორის msgid "Set an admin password." msgstr "დააყენეთ ადმინისტრატორის პაროლი." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "გთხოვთ გადაათვალიეროთ ინსტალაციის გზამკვლევი." @@ -328,6 +328,6 @@ msgstr "ბოლო წელს" msgid "years ago" msgstr "წლის წინ" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 3e8ca57205..7dffdfd8b2 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 8c9d757fd8..9f26e07555 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/km/core.po b/l10n/km/core.po index 39f046f594..50a23e3863 100644 --- a/l10n/km/core.po +++ b/l10n/km/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-30 03:32-0400\n" -"PO-Revision-Date: 2013-10-30 07:32+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -271,12 +271,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690 -#: js/share.js:702 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:730 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -296,115 +296,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:272 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:275 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:305 js/share.js:342 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:316 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:358 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:380 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:388 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:391 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:393 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:396 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:399 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:402 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:405 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:447 js/share.js:677 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:690 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:702 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:717 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:728 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:752 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -574,14 +574,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -728,11 +726,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/km/files.po b/l10n/km/files.po index d3702b8696..536d3a40ae 100644 --- a/l10n/km/files.po +++ b/l10n/km/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-03 17:38+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:27 +#: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:127 +#: ajax/newfile.php:128 msgid "Error when creating the file" msgstr "" @@ -114,15 +114,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:153 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:143 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" @@ -142,24 +142,24 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:345 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:437 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:519 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:524 js/filelist.js:364 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:526 js/filelist.js:366 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,101 +183,105 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:392 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:582 js/filelist.js:649 js/files.js:587 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:583 js/filelist.js:650 js/files.js:593 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:590 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:793 js/filelist.js:831 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:34 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:46 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:50 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:63 +#: js/files.js:110 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:67 +#: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:71 +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:302 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error" msgstr "" -#: js/files.js:569 templates/index.php:56 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:570 templates/index.php:68 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:571 templates/index.php:70 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" diff --git a/l10n/km/files_external.po b/l10n/km/files_external.po index 3677862017..38f8a6f5ba 100644 --- a/l10n/km/files_external.po +++ b/l10n/km/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-27 02:28-0400\n" -"PO-Revision-Date: 2013-10-23 21:30+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -37,20 +37,20 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: lib/config.php:461 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:457 +#: lib/config.php:465 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:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/km/files_trashbin.po b/l10n/km/files_trashbin.po index 7d8fb3decb..dbe47b2f7b 100644 --- a/l10n/km/files_trashbin.po +++ b/l10n/km/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-27 02:28-0400\n" -"PO-Revision-Date: 2013-10-23 21:30+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ msgstr "" msgid "Error" msgstr "" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/km/lib.po b/l10n/km/lib.po index 7c7bbdabe2..7a67810adb 100644 --- a/l10n/km/lib.po +++ b/l10n/km/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-17 13:47-0400\n" -"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -24,31 +24,31 @@ msgid "" " of ownCloud." msgstr "" -#: private/app.php:254 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: private/app.php:359 +#: private/app.php:360 msgid "Help" msgstr "" -#: private/app.php:372 +#: private/app.php:373 msgid "Personal" msgstr "" -#: private/app.php:383 +#: private/app.php:384 msgid "Settings" msgstr "" -#: private/app.php:395 +#: private/app.php:396 msgid "Users" msgstr "" -#: private/app.php:408 +#: private/app.php:409 msgid "Admin" msgstr "" -#: private/app.php:872 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -284,50 +284,50 @@ msgstr "" msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:122 +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: private/template/functions.php:123 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:124 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:125 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: private/template/functions.php:126 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: private/template/functions.php:128 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:130 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:133 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:142 msgid "years ago" msgstr "" -#: private/template.php:297 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/km/settings.po b/l10n/km/settings.po index 1200e6fcef..1d9d28f8fb 100644 --- a/l10n/km/settings.po +++ b/l10n/km/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-06 21:43-0500\n" -"PO-Revision-Date: 2013-11-07 02:43+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index 71c87f4fa6..e7903b35a2 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-30 03:32-0400\n" -"PO-Revision-Date: 2013-10-30 07:32+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -271,12 +271,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690 -#: js/share.js:702 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:730 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -296,115 +296,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:272 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:275 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:305 js/share.js:342 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:316 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:358 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:380 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:388 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:391 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:393 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:396 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:399 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:402 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:405 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:447 js/share.js:677 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:690 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:702 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:717 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:728 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:752 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -574,14 +574,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -728,11 +726,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/kn/files.po b/l10n/kn/files.po index 63099caa77..0ccf427706 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-03 17:38+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:27 +#: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:127 +#: ajax/newfile.php:128 msgid "Error when creating the file" msgstr "" @@ -114,15 +114,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:153 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:143 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" @@ -142,24 +142,24 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:345 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:437 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:519 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:524 js/filelist.js:364 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:526 js/filelist.js:366 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,101 +183,105 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:392 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:582 js/filelist.js:649 js/files.js:587 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:583 js/filelist.js:650 js/files.js:593 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:590 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:793 js/filelist.js:831 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:34 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:46 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:50 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:63 +#: js/files.js:110 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:67 +#: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:71 +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:302 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error" msgstr "" -#: js/files.js:569 templates/index.php:56 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:570 templates/index.php:68 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:571 templates/index.php:70 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index 7129a56922..5ff982c9fb 100644 --- a/l10n/kn/lib.po +++ b/l10n/kn/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-17 13:47-0400\n" -"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -24,31 +24,31 @@ msgid "" " of ownCloud." msgstr "" -#: private/app.php:254 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: private/app.php:359 +#: private/app.php:360 msgid "Help" msgstr "" -#: private/app.php:372 +#: private/app.php:373 msgid "Personal" msgstr "" -#: private/app.php:383 +#: private/app.php:384 msgid "Settings" msgstr "" -#: private/app.php:395 +#: private/app.php:396 msgid "Users" msgstr "" -#: private/app.php:408 +#: private/app.php:409 msgid "Admin" msgstr "" -#: private/app.php:872 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -284,50 +284,50 @@ msgstr "" msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:122 +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: private/template/functions.php:123 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:124 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:125 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: private/template/functions.php:126 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: private/template/functions.php:128 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:130 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:133 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:142 msgid "years ago" msgstr "" -#: private/template.php:297 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 8c1ff0b6b7..3f68d94a5c 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -273,12 +273,12 @@ msgstr "공유됨" msgid "Share" msgstr "공유" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "오류" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "공유하는 중 오류 발생" @@ -298,115 +298,115 @@ msgstr "{owner} 님이 여러분 및 그룹 {group}와(과) 공유 중" msgid "Shared with you by {owner}" msgstr "{owner} 님이 공유 중" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "암호 보호" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "암호" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "퍼블릭 업로드 허용" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "이메일 주소" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "전송" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "만료 날짜 설정" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "만료 날짜" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "이메일로 공유:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "발견된 사람 없음" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "그룹" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "다시 공유할 수 없습니다" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "{user} 님과 {item}에서 공유 중" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "공유 해제" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "편집 가능" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "접근 제어" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "생성" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "업데이트" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "삭제" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "공유" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "암호로 보호됨" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "만료 날짜 해제 오류" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "만료 날짜 설정 오류" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "전송 중..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "이메일 발송됨" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "경고" @@ -576,14 +576,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -730,11 +728,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/ko/files.po b/l10n/ko/files.po index d662743dfa..6964b525ea 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -158,11 +158,11 @@ msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name}이(가) 이미 존재함" @@ -186,37 +186,41 @@ msgstr "영원히 삭제" msgid "Rename" msgstr "이름 바꾸기" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "대기 중" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "{old_name}이(가) {new_name}(으)로 대체됨" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "되돌리기" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "폴더 %n" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "파일 %n 개" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} 그리고 {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n 개의 파일을 업로드중" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index c8a0f89f90..34002f8c63 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -38,20 +38,20 @@ msgstr "올바른 Dropbox 앱 키와 암호를 입력하십시오." msgid "Error configuring Google Drive storage" msgstr "Google 드라이브 저장소 설정 오류" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "경고: \"smbclient\"가 설치되지 않았습니다. CIFS/SMB 공유 자원에 연결할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오." -#: lib/config.php:457 +#: lib/config.php:465 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 "경고: PHP FTP 지원이 비활성화되어 있거나 설치되지 않았습니다. FTP 공유를 마운트할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 6720b2e890..b2fb3b6748 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# smallsnail , 2013 +# 책읽는달팽 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "%s를 복원할수 없습니다" msgid "Error" msgstr "오류" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "복원됨" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index b164ef1b3a..dcb078c556 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -4,13 +4,13 @@ # # Translators: # chohy , 2013 -# smallsnail , 2013 +# 책읽는달팽 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -72,27 +72,27 @@ msgstr "내가 관리하는 웹 서비스" msgid "cannot open \"%s\"" msgstr "\"%s\"을(를) 열 수 없습니다." -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "ZIP 다운로드가 비활성화되었습니다." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "파일을 개별적으로 다운로드해야 합니다." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "파일로 돌아가기" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "선택한 파일들은 ZIP 파일을 생성하기에 너무 큽니다." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "작은 조각들 안에 들어있는 파일들을 받고자 하신다면, 나누어서 받으시거나 혹은 시스템 관리자에게 정중하게 물어보십시오" +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -135,17 +135,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "출하되지 않은 앱에 허용되지 않는 true 태그를 포함하고 있기 때문에 앱을 설치할 수 없습니다." -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "info.xml/version에 포함된 버전과 앱 스토어에 보고된 버전이 같지 않아서 앱을 설치할 수 없습니다. " -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "앱 디렉토리가 이미 존재합니다. " -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "앱 폴더를 만들 수 없습니다. 권한을 수정하십시오. %s " @@ -270,13 +270,13 @@ msgstr "관리자 이름 설정" msgid "Set an admin password." msgstr "관리자 비밀번호 설정" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "설치 가이드를 다시 한 번 확인하십시오." @@ -330,6 +330,6 @@ msgstr "작년" msgid "years ago" msgstr "년 전" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "원인: " diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 5d77e932c9..ce2e67e01e 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index d8a27a5c55..f8130b46bd 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 5b8504f4eb..590fd54c69 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -276,12 +276,12 @@ msgstr "" msgid "Share" msgstr "هاوبەشی کردن" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "هه‌ڵه" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -301,115 +301,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "وشەی تێپەربو" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "ئاگاداری" @@ -579,14 +579,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -733,11 +731,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 858e355832..a75a3e7a59 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -155,11 +155,11 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,39 +183,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 5df8c545f8..2339d9095d 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -332,6 +332,6 @@ msgstr "" msgid "years ago" msgstr "" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 6ace2b264a..0873e9120a 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index f255168b95..5264e3f4e8 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: Michel Weimerskirch \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -278,12 +278,12 @@ msgstr "Gedeelt" msgid "Share" msgstr "Deelen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Feeler" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Feeler beim Deelen" @@ -303,115 +303,115 @@ msgstr "Gedeelt mat dir an der Grupp {group} vum {owner}" msgid "Shared with you by {owner}" msgstr "Gedeelt mat dir vum {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "Link deelen" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Passwuertgeschützt" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Passwuert" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Ëffentlechen Upload erlaaben" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Link enger Persoun mailen" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Schécken" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Verfallsdatum setzen" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Verfallsdatum" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Via E-Mail deelen:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Keng Persoune fonnt" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "Grupp" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Weiderdeelen ass net erlaabt" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Gedeelt an {item} mat {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Net méi deelen" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "via e-mail Bescheed ginn" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "kann änneren" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "Zougrëffskontroll" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "erstellen" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "aktualiséieren" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "läschen" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "deelen" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Passwuertgeschützt" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Feeler beim Läsche vum Verfallsdatum" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Feeler beim Setze vum Verfallsdatum" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Gëtt geschéckt..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Email geschéckt" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Warnung" @@ -581,14 +581,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "Prost!" @@ -735,11 +733,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 3b7e2fc0bb..e6e03ecb0e 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -155,11 +155,11 @@ msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofg msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,39 +183,43 @@ msgstr "" msgid "Rename" msgstr "Ëm-benennen" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "réckgängeg man" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index dbe6960380..dfe41bc2b9 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: lib/config.php:461 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:457 +#: lib/config.php:465 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:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 80206d687a..dfbe45800e 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -31,7 +31,7 @@ msgstr "" msgid "Error" msgstr "Fehler" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 4015915429..3eba6dc0e6 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-06 21:43-0500\n" -"PO-Revision-Date: 2013-11-05 21:40+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -71,25 +71,25 @@ msgstr "Web-Servicer ënnert denger Kontroll" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -134,17 +134,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -269,13 +269,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index ffb5cd9fa5..b6ad96bc6f 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index d83599ede3..368306c01f 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index ea7fd28d63..88209fcb53 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -286,12 +286,12 @@ msgstr "Dalinamasi" msgid "Share" msgstr "Dalintis" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Klaida" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Klaida, dalijimosi metu" @@ -311,115 +311,115 @@ msgstr "Pasidalino su Jumis ir {group} grupe {owner}" msgid "Shared with you by {owner}" msgstr "Pasidalino su Jumis {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "Dalintis su vartotoju arba grupe..." -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "Dalintis nuoroda" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Apsaugotas slaptažodžiu" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Slaptažodis" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Leisti viešą įkėlimą" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Nusiųsti nuorodą paštu" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Siųsti" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Nustatykite galiojimo laiką" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Galiojimo laikas" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Dalintis per el. paštą:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Žmonių nerasta" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "grupė" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Dalijinasis išnaujo negalimas" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Pasidalino {item} su {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Nebesidalinti" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "pranešti el. paštu" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "gali redaguoti" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "priėjimo kontrolė" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "sukurti" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "atnaujinti" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "ištrinti" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "dalintis" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Apsaugota slaptažodžiu" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Klaida nuimant galiojimo laiką" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Klaida nustatant galiojimo laiką" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Siunčiama..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Laiškas išsiųstas" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Įspėjimas" @@ -589,14 +589,12 @@ msgid "" "\n" msgstr "Labas,\n\nInformuojame, kad %s pasidalino su Jumis %s.\nPažiūrėti tai: %s\n" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" -msgstr "Bendrinimo laikas baigsis %s.\n" +msgid "The share will expire on %s." +msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "Sveikinimai!" @@ -743,11 +741,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "Labas,

tik informuojame, kad %s pasidalino su Jumis »%s«.
Peržiūrėk!

" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "Bendrinimo laikas baigsis %s.

" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 558bf2e993..f7a2e1c82a 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -158,11 +158,11 @@ msgstr "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutr msgid "URL cannot be empty" msgstr "URL negali būti tuščias." -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} jau egzistuoja" @@ -186,41 +186,45 @@ msgstr "Ištrinti negrįžtamai" msgid "Rename" msgstr "Pervadinti" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Laukiantis" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "Neįmanoma pervadinti failo" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "pakeiskite {new_name} į {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "anuliuoti" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n aplankas" msgstr[1] "%n aplankai" msgstr[2] "%n aplankų" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n failas" msgstr[1] "%n failai" msgstr[2] "%n failų" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} ir {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Įkeliamas %n failas" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 7d99f3eead..1bd0e58511 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Min2liz \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -38,20 +38,20 @@ msgstr "Prašome įvesti teisingus Dropbox \"app key\" ir \"secret\"." msgid "Error configuring Google Drive storage" msgstr "Klaida nustatinėjant Google Drive talpyklą" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Įspėjimas: \"smbclient\" nėra įdiegtas. CIFS/SMB dalinimasis nėra galimas. Prašome susisiekti su sistemos administratoriumi kad būtų įdiegtas \"smbclient\"" -#: lib/config.php:457 +#: lib/config.php:465 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 "Įspėjimas: FTP palaikymas PHP sistemoje nėra įjungtas arba nėra įdiegtas. FTP dalinimosi įjungimas nėra galimas. Prašome susisiekti su sistemos administratoriumi kad būtų įdiegtas FTP palaikymas. " -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index d745a17d47..f971c03d48 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -33,7 +33,7 @@ msgstr "Nepavyko atkurti %s" msgid "Error" msgstr "Klaida" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "atstatyta" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 1aaeae0a53..ef58d67636 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -74,27 +74,27 @@ msgstr "jūsų valdomos web paslaugos" msgid "cannot open \"%s\"" msgstr "nepavyksta atverti „%s“" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "ZIP atsisiuntimo galimybė yra išjungta." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Failai turi būti parsiunčiami vienas po kito." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Atgal į Failus" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Pasirinkti failai per dideli archyvavimui į ZIP." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Atsisiųskite failus mažesnėmis dalimis atskirai, arba mandagiai prašykite savo administratoriaus." +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -137,17 +137,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "Programa negali būti įdiegta, nes turi true žymę, kuri yra neleistina ne kartu platinamoms programoms" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Programa negali būti įdiegta, nes versija pateikta info.xml/version nesutampa su versija deklaruota programų saugykloje" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Programos aplankas jau egzistuoja" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Nepavyksta sukurti aplanko. Prašome pataisyti leidimus. %s" @@ -272,13 +272,13 @@ msgstr "Nustatyti administratoriaus naudotojo vardą." msgid "Set an admin password." msgstr "Nustatyti administratoriaus slaptažodį." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Jūsų serveris nėra tvarkingai nustatytas leisti failų sinchronizaciją, nes WebDAV sąsaja panašu, kad yra sugadinta." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Prašome pažiūrėkite dar kartą diegimo instrukcijas." @@ -340,6 +340,6 @@ msgstr "praeitais metais" msgid "years ago" msgstr "prieš metus" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Iššaukė:" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index a690870f52..342abba0b9 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 78a4fb93a7..6fdd5a4d30 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 1fcdf69119..519087ae1f 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -282,12 +282,12 @@ msgstr "Kopīgs" msgid "Share" msgstr "Dalīties" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Kļūda" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Kļūda, daloties" @@ -307,115 +307,115 @@ msgstr "{owner} dalījās ar jums un grupu {group}" msgid "Shared with you by {owner}" msgstr "{owner} dalījās ar jums" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Aizsargāt ar paroli" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Parole" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Ļaut publisko augšupielādi." -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Sūtīt saiti personai pa e-pastu" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Sūtīt" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Iestaties termiņa datumu" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Termiņa datums" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Dalīties, izmantojot e-pastu:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Nav atrastu cilvēku" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "grupa" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Atkārtota dalīšanās nav atļauta" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Dalījās ar {item} ar {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Pārtraukt dalīšanos" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "var rediģēt" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "piekļuves vadība" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "izveidot" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "atjaunināt" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "dzēst" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "dalīties" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Aizsargāts ar paroli" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Kļūda, noņemot termiņa datumu" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Kļūda, iestatot termiņa datumu" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Sūta..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Vēstule nosūtīta" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Brīdinājums" @@ -585,14 +585,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -739,11 +737,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/lv/files.po b/l10n/lv/files.po index c52f55984b..f61abfe28a 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -156,11 +156,11 @@ msgstr "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde." msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} jau eksistē" @@ -184,41 +184,45 @@ msgstr "Dzēst pavisam" msgid "Rename" msgstr "Pārsaukt" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Gaida savu kārtu" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "aizvietoja {new_name} ar {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "atsaukt" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapes" msgstr[1] "%n mape" msgstr[2] "%n mapes" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n faili" msgstr[1] "%n fails" msgstr[2] "%n faili" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index 257b3d6427..f3f1ea0a20 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: stendec \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -38,20 +38,20 @@ msgstr "Lūdzu, norādiet derīgu Dropbox lietotnes atslēgu un noslēpumu." msgid "Error configuring Google Drive storage" msgstr "Kļūda, konfigurējot Google Drive krātuvi" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Brīdinājums: nav uzinstalēts “smbclient”. Nevar montēt CIFS/SMB koplietojumus. Lūdzu, vaicājiet savam sistēmas administratoram, lai to uzinstalē." -#: lib/config.php:457 +#: lib/config.php:465 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 "Brīdinājums: uz PHP nav aktivēts vai instalēts FTP atbalsts. Nevar montēt FTP koplietojumus. Lūdzu, vaicājiet savam sistēmas administratoram, lai to uzinstalē." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index ff938af6f0..7d9d3b0117 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "Nevarēja atjaunot %s" msgid "Error" msgstr "Kļūda" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "atjaunots" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index dba1684cad..b063c00d93 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -71,27 +71,27 @@ msgstr "tīmekļa servisi tavā varā" msgid "cannot open \"%s\"" msgstr "Nevar atvērt \"%s\"" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "ZIP lejupielādēšana ir izslēgta." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Datnes var lejupielādēt tikai katru atsevišķi." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Atpakaļ pie datnēm" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Izvēlētās datnes ir pārāk lielas, lai izveidotu zip datni." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Lejupielādējiet savus failus mazākās daļās, atsevišķi vai palūdziet tos administratoram." +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -134,17 +134,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -269,13 +269,13 @@ msgstr "Iestatiet administratora lietotājvārdu." msgid "Set an admin password." msgstr "Iestatiet administratora paroli." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Jūsu serveris vēl nav pareizi iestatīts, lai ļautu sinhronizēt datnes, jo izskatās, ka WebDAV saskarne ir salauzta." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Lūdzu, vēlreiz pārbaudiet instalēšanas palīdzību." @@ -337,6 +337,6 @@ msgstr "gājušajā gadā" msgid "years ago" msgstr "gadus atpakaļ" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Cēlonis:" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 21d8351993..1065e86b00 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 77a2aa62c0..c92f38698d 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index fdd8541f2e..3e39d60042 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:10+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -277,12 +277,12 @@ msgstr "Споделен" msgid "Share" msgstr "Сподели" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Грешка" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Грешка при споделување" @@ -302,115 +302,115 @@ msgstr "Споделено со Вас и групата {group} од {owner}" msgid "Shared with you by {owner}" msgstr "Споделено со Вас од {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "Сподели ја врската" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Заштити со лозинка" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Лозинка" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Дозволи јавен аплоуд" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Прати врска по е-пошта на личност" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Прати" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Постави рок на траење" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Рок на траење" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Сподели по е-пошта:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Не се најдени луѓе" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "група" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Повторно споделување не е дозволено" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Споделено во {item} со {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Не споделувај" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "извести преку електронска пошта" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "може да се измени" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "контрола на пристап" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "креирај" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "ажурирај" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "избриши" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "сподели" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Заштитено со лозинка" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Грешка при тргање на рокот на траење" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Грешка при поставување на рок на траење" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Праќање..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Е-порака пратена" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Предупредување" @@ -580,14 +580,12 @@ msgid "" "\n" msgstr "Здраво,\n\nСамо да ве известам дека %s shared %s with you.\nView it: %s\n\n" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" -msgstr "Споделувањето ќе заврши на %s.\n\n" +msgid "The share will expire on %s." +msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "Поздрав!" @@ -734,11 +732,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/mk/files.po b/l10n/mk/files.po index d6600d5b84..20235058a4 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -156,11 +156,11 @@ msgstr "Подигање на датотека е во тек. Напуштењ msgid "URL cannot be empty" msgstr "URL-то не може да биде празно" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Во домашната папка, 'Shared' е резервирано има на датотека/папка" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} веќе постои" @@ -184,39 +184,43 @@ msgstr "Трајно избришани" msgid "Rename" msgstr "Преименувај" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Чека" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "Не можам да ја преименувам датотеката" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "заменета {new_name} со {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "врати" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} и {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 6c42294653..988ed38ebe 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "Ве молам доставите валиден Dropbox клуч и т msgid "Error configuring Google Drive storage" msgstr "Грешка при конфигурација на Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Внимание: \"smbclient\" не е инсталиран. Не е можно монтирање на CIFS/SMB дискови. Замолете го Вашиот систем администратор да го инсталира." -#: lib/config.php:457 +#: lib/config.php:465 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 "Внимание: Не е овозможена или инсталирани FTP подршка во PHP. Не е можно монтирање на FTP дискови. Замолете го Вашиот систем администратор да го инсталира." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index eab89af6f5..61301f454c 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-27 19:30+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: miroj \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ msgstr "Не можеше да се поврати %s" msgid "Error" msgstr "Грешка" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "повратени" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 99df4cb079..7b629110a3 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "веб сервиси под Ваша контрола" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "Преземање во ZIP е исклучено" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Датотеките треба да се симнат една по една." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Назад кон датотеки" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Избраните датотеки се преголеми за да се генерира zip." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -332,6 +332,6 @@ msgstr "минатата година" msgid "years ago" msgstr "пред години" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index cb7ab5189c..402bba02f8 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 88bc059f6c..9c1bbf9597 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/ml_IN/core.po b/l10n/ml_IN/core.po index f35481687f..77a9d527d2 100644 --- a/l10n/ml_IN/core.po +++ b/l10n/ml_IN/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-30 03:32-0400\n" -"PO-Revision-Date: 2013-10-30 07:32+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -276,12 +276,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690 -#: js/share.js:702 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:730 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -301,115 +301,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:272 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:275 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:305 js/share.js:342 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:316 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:358 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:380 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:388 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:391 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:393 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:396 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:399 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:402 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:405 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:447 js/share.js:677 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:690 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:702 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:717 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:728 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:752 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -579,14 +579,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -733,11 +731,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/ml_IN/files.po b/l10n/ml_IN/files.po index 99e5277b3d..59b036ceeb 100644 --- a/l10n/ml_IN/files.po +++ b/l10n/ml_IN/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-03 17:38+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:27 +#: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:127 +#: ajax/newfile.php:128 msgid "Error when creating the file" msgstr "" @@ -114,15 +114,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:153 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:143 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" @@ -142,24 +142,24 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:345 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:437 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:519 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:524 js/filelist.js:364 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:526 js/filelist.js:366 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,104 +183,108 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:392 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:582 js/filelist.js:649 js/files.js:587 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:583 js/filelist.js:650 js/files.js:593 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:590 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:793 js/filelist.js:831 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:34 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:46 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:50 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:63 +#: js/files.js:110 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:67 +#: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:71 +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:302 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error" msgstr "" -#: js/files.js:569 templates/index.php:56 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:570 templates/index.php:68 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:571 templates/index.php:70 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" diff --git a/l10n/ml_IN/lib.po b/l10n/ml_IN/lib.po index 21974e1d32..54ab9112f5 100644 --- a/l10n/ml_IN/lib.po +++ b/l10n/ml_IN/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-17 13:47-0400\n" -"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -24,31 +24,31 @@ msgid "" " of ownCloud." msgstr "" -#: private/app.php:254 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: private/app.php:359 +#: private/app.php:360 msgid "Help" msgstr "" -#: private/app.php:372 +#: private/app.php:373 msgid "Personal" msgstr "" -#: private/app.php:383 +#: private/app.php:384 msgid "Settings" msgstr "" -#: private/app.php:395 +#: private/app.php:396 msgid "Users" msgstr "" -#: private/app.php:408 +#: private/app.php:409 msgid "Admin" msgstr "" -#: private/app.php:872 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -284,54 +284,54 @@ msgstr "" msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:122 +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: private/template/functions.php:123 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:124 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:125 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: private/template/functions.php:126 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: private/template/functions.php:128 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:130 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:142 msgid "years ago" msgstr "" -#: private/template.php:297 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index b730720ef5..4bf5448fc9 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -271,12 +271,12 @@ msgstr "" msgid "Share" msgstr "Kongsi" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Ralat" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -296,115 +296,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Kata laluan" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Amaran" @@ -574,14 +574,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -728,11 +726,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 2aa9bf0bef..7c1afbd7c0 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -155,11 +155,11 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,37 +183,41 @@ msgstr "" msgid "Rename" msgstr "Namakan" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Dalam proses" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index 2609fcf44b..d6f983e74f 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: lib/config.php:461 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:457 +#: lib/config.php:465 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:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index b717b91b1e..3435deb106 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 13:30+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Puretech \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ msgstr "Tidak dapat memulihkan %s" msgid "Error" msgstr "Ralat" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "dipulihkan" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 646438d6b0..c003752444 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "Perkhidmatan web di bawah kawalan anda" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -328,6 +328,6 @@ msgstr "" msgid "years ago" msgstr "" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 804be8a435..ea6b5f0955 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index a2266fb151..0a0cbab3f7 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 7f39c0c512..e7d3d8ac01 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -271,12 +271,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -296,115 +296,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "စကားဝှက်" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "သက်တမ်းကုန်ဆုံးမည့်ရက်သတ်မှတ်မည်" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "သက်တမ်းကုန်ဆုံးမည့်ရက်" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "အီးမေးလ်ဖြင့်ဝေမျှမည် -" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "ပြန်လည်ဝေမျှခြင်းခွင့်မပြုပါ" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "ပြင်ဆင်နိုင်" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "ဖန်တီးမည်" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "ဖျက်မည်" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "ဝေမျှမည်" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "စကားဝှက်ဖြင့်ကာကွယ်ထားသည်" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -574,14 +574,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -728,11 +726,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index 3591385fdc..985e1b62bf 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-03 17:38+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:27 +#: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:127 +#: ajax/newfile.php:128 msgid "Error when creating the file" msgstr "" @@ -114,15 +114,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:153 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:143 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" @@ -142,24 +142,24 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:345 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:437 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:519 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:524 js/filelist.js:364 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:526 js/filelist.js:366 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,101 +183,105 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:392 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:582 js/filelist.js:649 js/files.js:587 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:583 js/filelist.js:650 js/files.js:593 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:590 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:793 js/filelist.js:831 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:34 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:46 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:50 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:63 +#: js/files.js:110 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:67 +#: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:71 +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:302 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error" msgstr "" -#: js/files.js:569 templates/index.php:56 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:570 templates/index.php:68 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:571 templates/index.php:70 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 91056a8687..6333de7caf 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တ msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "ZIP ဒေါင်းလုတ်ကိုပိတ်ထားသည်" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "ဖိုင်များသည် တစ်ခုပြီး တစ်ခုဒေါင်းလုတ်ချရန်လိုအပ်သည်" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "ဖိုင်သို့ပြန်သွားမည်" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "zip ဖိုင်အဖြစ်ပြုလုပ်ရန် ရွေးချယ်ထားသောဖိုင်များသည် အရမ်းကြီးလွန်းသည်" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -328,6 +328,6 @@ msgstr "မနှစ်က" msgid "years ago" msgstr "နှစ် အရင်က" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index c0de469892..58e1b188e7 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -277,12 +277,12 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Feil" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Feil under deling" @@ -302,115 +302,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "Delt med deg av {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Passordbeskyttet" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Passord" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Send" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Set utløpsdato" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Utløpsdato" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Del på epost" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Ingen personer funnet" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "gruppe" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Avslutt deling" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "kan endre" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "tilgangskontroll" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "opprett" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "oppdater" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "slett" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "del" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Passordbeskyttet" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Kan ikke sette utløpsdato" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Sender..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "E-post sendt" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Advarsel" @@ -580,14 +580,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -734,11 +732,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index db24a71ffc..57b2194ebd 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -158,11 +158,11 @@ msgstr "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen." msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} finnes allerede" @@ -186,39 +186,43 @@ msgstr "Slett permanent" msgid "Rename" msgstr "Gi nytt navn" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Ventende" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "erstattet {new_name} med {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "angre" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laster opp %n fil" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index b306724cab..3e778cb6ab 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -38,20 +38,20 @@ msgstr "Vær vennlig å oppgi gyldig Dropbox appnøkkel og hemmelighet." msgid "Error configuring Google Drive storage" msgstr "Feil med konfigurering av Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Advarsel: \"smbclient\" er ikke installert. Kan ikke montere CIFS/SMB mapper. Ta kontakt med din systemadministrator for å installere det." -#: lib/config.php:457 +#: lib/config.php:465 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 "Advarsel: FTP støtte i PHP er ikke slått på eller innstallert. Kan ikke montere FTP mapper. Ta kontakt med din systemadministrator for å innstallere det." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 31ca6bd930..5bb60afa53 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "Kunne ikke gjenopprette %s" msgid "Error" msgstr "Feil" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 27ce498b94..a2111d02ca 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "web tjenester du kontrollerer" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "ZIP-nedlasting av avslått" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Filene må lastes ned en om gangen" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Tilbake til filer" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "De valgte filene er for store til å kunne generere ZIP-fil" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din nettservev er ikke konfigurert korrekt for filsynkronisering. WebDAV ser ut til å ikke funkere." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Vennligst dobbelsjekk installasjonsguiden." @@ -332,6 +332,6 @@ msgstr "forrige år" msgid "years ago" msgstr "år siden" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index ca60b035bd..3d6b4d540f 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 9b82d3b5de..139ec8ca6b 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/nds/core.po b/l10n/nds/core.po index f001d18324..c6c711a4ad 100644 --- a/l10n/nds/core.po +++ b/l10n/nds/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-30 03:32-0400\n" -"PO-Revision-Date: 2013-10-30 07:32+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -276,12 +276,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690 -#: js/share.js:702 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:730 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -301,115 +301,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:272 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:275 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:305 js/share.js:342 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:316 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:358 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:380 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:388 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:391 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:393 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:396 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:399 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:402 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:405 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:447 js/share.js:677 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:690 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:702 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:717 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:728 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:752 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -579,14 +579,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -733,11 +731,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/nds/files.po b/l10n/nds/files.po index 6d875a4e98..47129fd7e2 100644 --- a/l10n/nds/files.po +++ b/l10n/nds/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-03 17:38+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:27 +#: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:127 +#: ajax/newfile.php:128 msgid "Error when creating the file" msgstr "" @@ -114,15 +114,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:153 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:143 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" @@ -142,24 +142,24 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:345 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:437 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:519 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:524 js/filelist.js:364 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:526 js/filelist.js:366 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,104 +183,108 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:392 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:582 js/filelist.js:649 js/files.js:587 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:583 js/filelist.js:650 js/files.js:593 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:590 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:793 js/filelist.js:831 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:34 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:46 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:50 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:63 +#: js/files.js:110 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:67 +#: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:71 +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:302 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error" msgstr "" -#: js/files.js:569 templates/index.php:56 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:570 templates/index.php:68 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:571 templates/index.php:70 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" diff --git a/l10n/nds/lib.po b/l10n/nds/lib.po index f13471a4c8..3e81e7061c 100644 --- a/l10n/nds/lib.po +++ b/l10n/nds/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-27 02:28-0400\n" -"PO-Revision-Date: 2013-10-24 10:48+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -332,6 +332,6 @@ msgstr "" msgid "years ago" msgstr "" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/ne/core.po b/l10n/ne/core.po index e3ffde47ee..d10f555dae 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-30 03:32-0400\n" -"PO-Revision-Date: 2013-10-30 07:32+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -276,12 +276,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690 -#: js/share.js:702 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:730 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -301,115 +301,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:272 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:275 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:305 js/share.js:342 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:316 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:358 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:380 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:388 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:391 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:393 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:396 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:399 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:402 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:405 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:447 js/share.js:677 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:690 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:702 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:717 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:728 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:752 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -579,14 +579,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -733,11 +731,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/ne/files.po b/l10n/ne/files.po index b9b280af2c..eac77c21b2 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-03 17:38+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:27 +#: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:127 +#: ajax/newfile.php:128 msgid "Error when creating the file" msgstr "" @@ -114,15 +114,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:153 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:143 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" @@ -142,24 +142,24 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:345 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:437 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:519 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:524 js/filelist.js:364 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:526 js/filelist.js:366 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,104 +183,108 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:392 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:582 js/filelist.js:649 js/files.js:587 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:583 js/filelist.js:650 js/files.js:593 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:590 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:793 js/filelist.js:831 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:34 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:46 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:50 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:63 +#: js/files.js:110 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:67 +#: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:71 +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:302 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error" msgstr "" -#: js/files.js:569 templates/index.php:56 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:570 templates/index.php:68 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:571 templates/index.php:70 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index 0cb877bee8..99cee713a0 100644 --- a/l10n/ne/lib.po +++ b/l10n/ne/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-17 13:47-0400\n" -"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -24,31 +24,31 @@ msgid "" " of ownCloud." msgstr "" -#: private/app.php:254 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: private/app.php:359 +#: private/app.php:360 msgid "Help" msgstr "" -#: private/app.php:372 +#: private/app.php:373 msgid "Personal" msgstr "" -#: private/app.php:383 +#: private/app.php:384 msgid "Settings" msgstr "" -#: private/app.php:395 +#: private/app.php:396 msgid "Users" msgstr "" -#: private/app.php:408 +#: private/app.php:409 msgid "Admin" msgstr "" -#: private/app.php:872 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -284,54 +284,54 @@ msgstr "" msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:122 +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: private/template/functions.php:123 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:124 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:125 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: private/template/functions.php:126 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: private/template/functions.php:128 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:130 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:142 msgid "years ago" msgstr "" -#: private/template.php:297 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 27213ae7be..cb4fc4f69f 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -279,12 +279,12 @@ msgstr "Gedeeld" msgid "Share" msgstr "Delen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Fout" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Fout tijdens het delen" @@ -304,115 +304,115 @@ msgstr "Gedeeld met u en de groep {group} door {owner}" msgid "Shared with you by {owner}" msgstr "Gedeeld met u door {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "Delen met gebruiker of groep ..." -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "Deel link" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Wachtwoord beveiligd" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Wachtwoord" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Sta publieke uploads toe" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "E-mail link naar persoon" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Versturen" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Stel vervaldatum in" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Vervaldatum" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Deel via e-mail:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Geen mensen gevonden" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "groep" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Verder delen is niet toegestaan" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Gedeeld in {item} met {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Stop met delen" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "melden per e-mail" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "kan wijzigen" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "toegangscontrole" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "creëer" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "bijwerken" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "verwijderen" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "deel" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Wachtwoord beveiligd" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Fout tijdens het verwijderen van de verval datum" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Fout tijdens het instellen van de vervaldatum" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Versturen ..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "E-mail verzonden" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Waarschuwing" @@ -582,14 +582,12 @@ msgid "" "\n" msgstr "Hallo daar,\n\neven een berichtje dat %s %s met u deelde.\nBekijk het: %s\n\n" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" -msgstr "De Share vervalt op %s.\n\n\n\n" +msgid "The share will expire on %s." +msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "Proficiat!" @@ -736,11 +734,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "Hallo daar,

even een berichtje dat %s »%s« met u deelde.
Bekijk hier!

" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "Het delen stopt op %s.

" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 5658567f43..f13eb60c41 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -157,11 +157,11 @@ msgstr "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de u msgid "URL cannot be empty" msgstr "URL mag niet leeg zijn" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "in de home map 'Shared' is een gereserveerde bestandsnaam" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} bestaat al" @@ -185,39 +185,43 @@ msgstr "Verwijder definitief" msgid "Rename" msgstr "Hernoem" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "In behandeling" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "Kon niet hernoemen bestand" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "verving {new_name} met {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "ongedaan maken" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n mappen" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "%n bestanden" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} en {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n bestand aan het uploaden" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 7edc016c6e..539642335b 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -38,20 +38,20 @@ msgstr "Geef een geldige Dropbox key en secret." msgid "Error configuring Google Drive storage" msgstr "Fout tijdens het configureren van Google Drive opslag" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Waarschuwing: \"smbclient\" is niet geïnstalleerd. Mounten van CIFS/SMB shares is niet mogelijk. Vraag uw beheerder om smbclient te installeren." -#: lib/config.php:457 +#: lib/config.php:465 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 "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." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 74c4475eec..cd643d87f3 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "Kon %s niet herstellen" msgid "Error" msgstr "Fout" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "hersteld" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index cfd7be0fc1..9effd38a16 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -73,27 +73,27 @@ msgstr "Webdiensten in eigen beheer" msgid "cannot open \"%s\"" msgstr "Kon \"%s\" niet openen" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "ZIP download is uitgeschakeld." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Bestanden moeten één voor één worden gedownload." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Terug naar bestanden" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "De geselecteerde bestanden zijn te groot om een zip bestand te maken." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Download de bestanden in kleinere brokken, appart of vraag uw administrator." +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -136,17 +136,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "De app kan niet worden geïnstallerd omdat het de true tag bevat die niet is toegestaan voor niet gepubliceerde apps" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "De app kan niet worden geïnstalleerd omdat de versie in info.xml/version niet dezelfde is als de versie zoals die in de app store staat vermeld" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "App directory bestaat al" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Kan de app map niet aanmaken, Herstel de permissies. %s" @@ -271,13 +271,13 @@ msgstr "Stel de gebruikersnaam van de beheerder in." msgid "Set an admin password." msgstr "Stel een beheerderswachtwoord in." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Controleer de installatiehandleiding goed." @@ -335,6 +335,6 @@ msgstr "vorig jaar" msgid "years ago" msgstr "jaar geleden" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Gekomen door:" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 8d9801d7f2..c6f9063b35 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index a9fda6e688..6dbbed3fd0 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 09: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" @@ -91,15 +91,15 @@ msgstr "Fout" #: js/settings.js:674 msgid "Configuration OK" -msgstr "" +msgstr "Configuratie OK" #: js/settings.js:683 msgid "Configuration incorrect" -msgstr "" +msgstr "Configuratie onjuist" #: js/settings.js:692 msgid "Configuration incomplete" -msgstr "" +msgstr "Configuratie incompleet" #: js/settings.js:709 js/settings.js:718 msgid "Select groups" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 422b53e4c9..b0c247102e 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -279,12 +279,12 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Feil" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Feil ved deling" @@ -304,115 +304,115 @@ msgstr "Delt med deg og gruppa {group} av {owner}" msgid "Shared with you by {owner}" msgstr "Delt med deg av {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Passordvern" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Passord" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Tillat offentleg opplasting" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Send lenkja over e-post" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Send" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Set utløpsdato" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Utløpsdato" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Del over e-post:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Fann ingen personar" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "gruppe" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Vidaredeling er ikkje tillate" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {brukar}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Udel" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "kan endra" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "tilgangskontroll" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "lag" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "oppdater" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "slett" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "del" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Passordverna" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Klarte ikkje fjerna utløpsdato" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Klarte ikkje setja utløpsdato" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Sender …" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "E-post sendt" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Åtvaring" @@ -582,14 +582,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -736,11 +734,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 38b2a96013..a53d11cbdc 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -158,11 +158,11 @@ msgstr "Fila lastar no opp. Viss du forlèt sida no vil opplastinga verta avbrot msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} finst allereie" @@ -186,39 +186,43 @@ msgstr "Slett for godt" msgid "Rename" msgstr "Endra namn" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Under vegs" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "bytte ut {new_name} med {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "angre" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} og {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Lastar opp %n fil" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index eef23a8504..85acba6f70 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: lib/config.php:461 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:457 +#: lib/config.php:465 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:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 9ef3981a29..618246702e 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -33,7 +33,7 @@ msgstr "Klarte ikkje gjenoppretta %s" msgid "Error" msgstr "Feil" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "gjenoppretta" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index f0e051c8a6..76ab32a7f8 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -72,25 +72,25 @@ msgstr "Vev tjenester under din kontroll" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -135,17 +135,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -270,13 +270,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Tenaren din er ikkje enno rett innstilt til å tilby filsynkronisering sidan WebDAV-grensesnittet ser ut til å vera øydelagt." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Ver venleg og dobbeltsjekk installasjonsrettleiinga." @@ -334,6 +334,6 @@ msgstr "i fjor" msgid "years ago" msgstr "år sidan" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index f1c9f65cf6..44e74752ca 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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/user_ldap.po b/l10n/nn_NO/user_ldap.po index 379526716b..77de1d0835 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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/nqo/core.po b/l10n/nqo/core.po index 8197226ade..ead7963967 100644 --- a/l10n/nqo/core.po +++ b/l10n/nqo/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-30 03:32-0400\n" -"PO-Revision-Date: 2013-10-30 07:32+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -271,12 +271,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690 -#: js/share.js:702 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:730 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -296,115 +296,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:272 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:275 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:305 js/share.js:342 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:316 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:358 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:380 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:388 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:391 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:393 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:396 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:399 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:402 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:405 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:447 js/share.js:677 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:690 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:702 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:717 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:728 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:752 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -574,14 +574,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -728,11 +726,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/nqo/files.po b/l10n/nqo/files.po index b2659214cf..e978a594ef 100644 --- a/l10n/nqo/files.po +++ b/l10n/nqo/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-03 17:38+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:27 +#: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:127 +#: ajax/newfile.php:128 msgid "Error when creating the file" msgstr "" @@ -114,15 +114,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:153 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:143 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" @@ -142,24 +142,24 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:345 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:437 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:519 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:524 js/filelist.js:364 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:526 js/filelist.js:366 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,101 +183,105 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:392 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:582 js/filelist.js:649 js/files.js:587 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:583 js/filelist.js:650 js/files.js:593 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:590 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:793 js/filelist.js:831 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:34 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:46 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:50 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:63 +#: js/files.js:110 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:67 +#: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:71 +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:302 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error" msgstr "" -#: js/files.js:569 templates/index.php:56 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:570 templates/index.php:68 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:571 templates/index.php:70 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" diff --git a/l10n/nqo/lib.po b/l10n/nqo/lib.po index cf8b16de52..b01497deee 100644 --- a/l10n/nqo/lib.po +++ b/l10n/nqo/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-17 13:47-0400\n" -"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -24,31 +24,31 @@ msgid "" " of ownCloud." msgstr "" -#: private/app.php:254 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: private/app.php:359 +#: private/app.php:360 msgid "Help" msgstr "" -#: private/app.php:372 +#: private/app.php:373 msgid "Personal" msgstr "" -#: private/app.php:383 +#: private/app.php:384 msgid "Settings" msgstr "" -#: private/app.php:395 +#: private/app.php:396 msgid "Users" msgstr "" -#: private/app.php:408 +#: private/app.php:409 msgid "Admin" msgstr "" -#: private/app.php:872 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -284,50 +284,50 @@ msgstr "" msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:122 +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: private/template/functions.php:123 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:124 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:125 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: private/template/functions.php:126 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: private/template/functions.php:128 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:130 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:133 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:142 msgid "years ago" msgstr "" -#: private/template.php:297 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 1af1552457..bda329003e 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -276,12 +276,12 @@ msgstr "" msgid "Share" msgstr "Parteja" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Error al partejar" @@ -301,115 +301,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Parat per senhal" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Senhal" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Met la data d'expiracion" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Data d'expiracion" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Parteja tras corrièl :" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Deguns trobat" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "grop" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Tornar partejar es pas permis" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Pas partejador" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "pòt modificar" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "Contraròtle d'acces" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "crea" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "met a jorn" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "escafa" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "parteja" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Parat per senhal" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Error al metre de la data d'expiracion" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -579,14 +579,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -733,11 +731,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/oc/files.po b/l10n/oc/files.po index db3249ac41..31b922dace 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -155,11 +155,11 @@ msgstr "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo carga msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,39 +183,43 @@ msgstr "" msgid "Rename" msgstr "Torna nomenar" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Al esperar" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "defar" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index b00af63f4b..853318c6d5 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: lib/config.php:461 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:457 +#: lib/config.php:465 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:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 0379fc2ecf..d1ca842a14 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -31,7 +31,7 @@ msgstr "" msgid "Error" msgstr "Error" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index cfd9ad2578..e79aa76546 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "Services web jos ton contraròtle" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "Avalcargar los ZIP es inactiu." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Los fichièrs devan èsser avalcargats un per un." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Torna cap als fichièrs" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -332,6 +332,6 @@ msgstr "an passat" msgid "years ago" msgstr "ans a" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 1a277c7db7..abe7ffff99 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index a5fc70ba0b..8071cc877f 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/pa/core.po b/l10n/pa/core.po index 1e4f09624d..7ef99e9c51 100644 --- a/l10n/pa/core.po +++ b/l10n/pa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -277,12 +277,12 @@ msgstr "" msgid "Share" msgstr "ਸਾਂਝਾ ਕਰੋ" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "ਗਲ" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -302,115 +302,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "ਪਾਸਵਰ" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "ਭੇਜੋ" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "ਚੇਤਾਵਨੀ" @@ -580,14 +580,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -734,11 +732,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/pa/files.po b/l10n/pa/files.po index 3fc31f8b91..d5f8008001 100644 --- a/l10n/pa/files.po +++ b/l10n/pa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-03 17:38+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:27 +#: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:127 +#: ajax/newfile.php:128 msgid "Error when creating the file" msgstr "" @@ -114,15 +114,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:153 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:143 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" @@ -142,24 +142,24 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:345 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:437 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:519 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:524 js/filelist.js:364 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:526 js/filelist.js:366 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,104 +183,108 @@ msgstr "" msgid "Rename" msgstr "ਨਾਂ ਬਦਲੋ" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:392 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "undo" msgstr "ਵਾਪਸ" -#: js/filelist.js:582 js/filelist.js:649 js/files.js:587 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:583 js/filelist.js:650 js/files.js:593 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:590 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:793 js/filelist.js:831 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:34 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:46 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:50 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:63 +#: js/files.js:110 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:67 +#: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:71 +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:302 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error" msgstr "ਗਲਤੀ" -#: js/files.js:569 templates/index.php:56 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:570 templates/index.php:68 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:571 templates/index.php:70 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" diff --git a/l10n/pa/files_external.po b/l10n/pa/files_external.po index cf7cbd0906..2c798ff134 100644 --- a/l10n/pa/files_external.po +++ b/l10n/pa/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -37,20 +37,20 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: lib/config.php:461 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:457 +#: lib/config.php:465 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:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/pa/files_trashbin.po b/l10n/pa/files_trashbin.po index c5abc19fde..40900fcf33 100644 --- a/l10n/pa/files_trashbin.po +++ b/l10n/pa/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ msgstr "" msgid "Error" msgstr "ਗਲਤੀ" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/pa/lib.po b/l10n/pa/lib.po index 1053508af6..bd575b7f41 100644 --- a/l10n/pa/lib.po +++ b/l10n/pa/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -332,6 +332,6 @@ msgstr "ਪਿਛਲੇ ਸਾਲ" msgid "years ago" msgstr "ਸਾਲਾਂ ਪਹਿਲਾਂ" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/pa/settings.po b/l10n/pa/settings.po index 0fb0e3de8d..9ed3e03f29 100644 --- a/l10n/pa/settings.po +++ b/l10n/pa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 51d7655696..9102cf47b7 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -283,12 +283,12 @@ msgstr "Udostępniono" msgid "Share" msgstr "Udostępnij" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Błąd" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Błąd podczas współdzielenia" @@ -308,115 +308,115 @@ msgstr "Udostępnione tobie i grupie {group} przez {owner}" msgid "Shared with you by {owner}" msgstr "Udostępnione tobie przez {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" -msgstr "" +msgstr "Udostępnij link" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Zabezpiecz hasłem" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Hasło" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Pozwól na publiczne wczytywanie" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Wyślij osobie odnośnik poprzez e-mail" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Wyślij" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Ustaw datę wygaśnięcia" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Data wygaśnięcia" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Współdziel poprzez e-mail:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Nie znaleziono ludzi" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "grupa" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Współdzielenie nie jest możliwe" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Współdzielone w {item} z {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Zatrzymaj współdzielenie" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" -msgstr "" +msgstr "powiadom przez emaila" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "może edytować" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "kontrola dostępu" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "utwórz" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "uaktualnij" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "usuń" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "współdziel" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Zabezpieczone hasłem" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Błąd podczas usuwania daty wygaśnięcia" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Błąd podczas ustawiania daty wygaśnięcia" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Wysyłanie..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "E-mail wysłany" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Ostrzeżenie" @@ -586,14 +586,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" -msgstr "Udostępnienie wygaśnie w dniu %s.\n\n" +msgid "The share will expire on %s." +msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "Pozdrawiam!" @@ -740,11 +738,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "Cześć,

Informuję cię że %s udostępnia ci »%s«.\n
Zobacz!

" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "Udostępnienie wygaśnie w dniu %s.

" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." @@ -767,4 +760,4 @@ msgstr "" #: templates/update.user.php:6 msgid "Thank you for your patience." -msgstr "" +msgstr "Dziękuję za cierpliwość." diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 5fe6d9f1c6..a2d39971ab 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -37,27 +37,27 @@ msgstr "Nazwa pliku nie może być pusta." #: ajax/newfile.php:62 msgid "File name must not contain \"/\". Please choose a different name." -msgstr "" +msgstr "Nazwa pliku nie może zawierać \"/\". Proszę wybrać inną nazwę." #: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." -msgstr "" +msgstr "Nazwa %s jest już używana w folderze %s. Proszę wybrać inną nazwę." #: ajax/newfile.php:81 msgid "Not a valid source" -msgstr "" +msgstr "Niepoprawne źródło" #: ajax/newfile.php:94 #, php-format msgid "Error while downloading %s to %s" -msgstr "" +msgstr "Błąd podczas pobierania %s do %S" #: ajax/newfile.php:128 msgid "Error when creating the file" -msgstr "" +msgstr "Błąd przy tworzeniu pliku" #: ajax/newfolder.php:21 msgid "Folder name cannot be empty." @@ -65,11 +65,11 @@ msgstr "Nazwa folderu nie może być pusta." #: ajax/newfolder.php:27 msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" +msgstr "Nazwa folderu nie może zawierać \"/\". Proszę wybrać inną nazwę." #: ajax/newfolder.php:56 msgid "Error when creating the folder" -msgstr "" +msgstr "Błąd przy tworzeniu folderu" #: ajax/upload.php:18 ajax/upload.php:50 msgid "Unable to set upload directory." @@ -157,23 +157,23 @@ msgstr "Wysyłanie pliku jest w toku. Jeśli opuścisz tę stronę, wysyłanie z #: js/file-upload.js:519 msgid "URL cannot be empty" -msgstr "" +msgstr "URL nie może być pusty" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" +msgstr "W katalogu domowym \"Shared\" jest zarezerwowana nazwa pliku" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} już istnieje" #: js/file-upload.js:585 msgid "Could not create file" -msgstr "" +msgstr "Nie można utworzyć pliku" #: js/file-upload.js:601 msgid "Could not create folder" -msgstr "" +msgstr "Nie można utworzyć folderu" #: js/fileactions.js:125 msgid "Share" @@ -187,41 +187,45 @@ msgstr "Trwale usuń" msgid "Rename" msgstr "Zmień nazwę" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Oczekujące" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" -msgstr "" +msgstr "Nie można zmienić nazwy pliku" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "zastąpiono {new_name} przez {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "cofnij" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n katalog" msgstr[1] "%n katalogi" msgstr[2] "%n katalogów" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n plik" msgstr[1] "%n pliki" msgstr[2] "%n plików" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{katalogi} and {pliki}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Wysyłanie %n pliku" @@ -293,7 +297,7 @@ msgstr "Modyfikacja" #: lib/app.php:60 msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" +msgstr "Niepoprawna nazwa folderu. Wykorzystanie \"Shared\" jest zarezerwowane." #: lib/app.php:88 #, php-format @@ -362,7 +366,7 @@ msgstr "Anuluj wysyłanie" #: templates/index.php:40 msgid "You don’t have permission to upload or create files here" -msgstr "" +msgstr "Nie masz uprawnień do wczytywania lub tworzenia plików w tym miejscu" #: templates/index.php:45 msgid "Nothing in here. Upload something!" diff --git a/l10n/pl/files_encryption.po b/l10n/pl/files_encryption.po index 307e33fc43..5d29c51edb 100644 --- a/l10n/pl/files_encryption.po +++ b/l10n/pl/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-03 17:38+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 21:30+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -67,7 +67,7 @@ msgid "" "Your private key is not valid! Likely your password was changed outside of " "%s (e.g. your corporate directory). You can update your private key password" " in your personal settings to recover access to your encrypted files." -msgstr "" +msgstr "Klucz prywatny nie jest poprawny! Prawdopodobnie Twoje hasło zostało zmienione poza %s (np. w katalogu firmy). Aby odzyskać dostęp do zaszyfrowanych plików można zaktualizować hasło klucza prywatnego w ustawieniach osobistych." #: files/error.php:19 msgid "" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 02dc6fc13b..0f8b413e89 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -38,20 +38,20 @@ msgstr "Proszę podać prawidłowy klucz aplikacji Dropbox i klucz sekretny." msgid "Error configuring Google Drive storage" msgstr "Wystąpił błąd podczas konfigurowania zasobu Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Ostrzeżenie: \"smbclient\" nie jest zainstalowany. Zamontowanie katalogów CIFS/SMB nie jest możliwe. Skontaktuj sie z administratorem w celu zainstalowania." -#: lib/config.php:457 +#: lib/config.php:465 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 "Ostrzeżenie: Wsparcie dla FTP w PHP nie jest zainstalowane lub włączone. Skontaktuj sie z administratorem w celu zainstalowania lub włączenia go." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index df275473c4..bcd5e63eee 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "Nie można przywrócić %s" msgid "Error" msgstr "Błąd" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "przywrócony" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 1a79a6e3b5..fcbe3a8a27 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:30+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -71,27 +71,27 @@ msgstr "Kontrolowane serwisy" msgid "cannot open \"%s\"" msgstr "Nie można otworzyć \"%s\"" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "Pobieranie ZIP jest wyłączone." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Pliki muszą zostać pobrane pojedynczo." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Wróć do plików" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Wybrane pliki są zbyt duże, aby wygenerować plik zip." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Pobierz pliki w mniejszy kawałkach, oddzielnie lub poproś administratora o zwiększenie limitu." +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -134,17 +134,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "Aplikacja nie może być zainstalowana ponieważ true tag nie jest true , co nie jest dozwolone dla aplikacji nie wysłanych" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Nie można zainstalować aplikacji, ponieważ w wersji info.xml/version nie jest taka sama, jak wersja z app store" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Katalog aplikacji już isnieje" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Nie mogę utworzyć katalogu aplikacji. Proszę popraw uprawnienia. %s" @@ -269,13 +269,13 @@ msgstr "Ustaw nazwę administratora." msgid "Set an admin password." msgstr "Ustaw hasło administratora." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serwer internetowy nie jest jeszcze poprawnie skonfigurowany, aby umożliwić synchronizację plików, ponieważ interfejs WebDAV wydaje się być uszkodzony." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Sprawdź ponownie przewodniki instalacji." @@ -337,6 +337,6 @@ msgstr "w zeszłym roku" msgid "years ago" msgstr "lat temu" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Spowodowane przez:" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index ac6ed1c869..cec435f0a4 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 21:40+0000\n" +"Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,11 +30,11 @@ msgstr "Błąd uwierzytelniania" #: ajax/changedisplayname.php:31 msgid "Your full name has been changed." -msgstr "" +msgstr "Twoja pełna nazwa została zmieniona." #: ajax/changedisplayname.php:34 msgid "Unable to change full name" -msgstr "" +msgstr "Nie można zmienić pełnej nazwy" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -92,24 +92,24 @@ msgstr "Złe hasło" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "Niedostarczony użytkownik" #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "Podaj hasło odzyskiwania administratora, w przeciwnym razie wszystkie dane użytkownika zostaną utracone" #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "Błędne hasło odzyskiwania. Sprawdź hasło i spróbuj ponownie." #: changepassword/controller.php:87 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "Zaplecze nie obsługuje zmiany hasła, ale klucz szyfrowania użytkownika został pomyślnie zaktualizowany." #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" @@ -214,7 +214,7 @@ msgstr "Należy podać prawidłowe hasło" #: js/users.js:481 msgid "Warning: Home directory for user \"{user}\" already exists" -msgstr "" +msgstr "Ostrzeżenie: Katalog domowy dla użytkownika \"{user}\" już istnieje" #: personal.php:45 personal.php:46 msgid "__language_name__" @@ -222,23 +222,23 @@ msgstr "polski" #: templates/admin.php:8 msgid "Everything (fatal issues, errors, warnings, info, debug)" -msgstr "" +msgstr "Wszystko (Informacje, ostrzeżenia, błędy i poważne problemy, debug)" #: templates/admin.php:9 msgid "Info, warnings, errors and fatal issues" -msgstr "" +msgstr "Informacje, ostrzeżenia, błędy i poważne problemy" #: templates/admin.php:10 msgid "Warnings, errors and fatal issues" -msgstr "" +msgstr "Ostrzeżenia, błędy i poważne problemy" #: templates/admin.php:11 msgid "Errors and fatal issues" -msgstr "" +msgstr "Błędy i poważne problemy" #: templates/admin.php:12 msgid "Fatal issues only" -msgstr "" +msgstr "Tylko poważne problemy" #: templates/admin.php:22 msgid "Security Warning" @@ -507,7 +507,7 @@ msgstr "Zmień hasło" #: templates/personal.php:58 templates/users.php:88 msgid "Full Name" -msgstr "" +msgstr "Pełna nazwa" #: templates/personal.php:73 msgid "Email" @@ -566,7 +566,7 @@ msgstr "WebDAV" msgid "" "Use this address to access your Files via " "WebDAV" -msgstr "" +msgstr "Użyj tego adresu do dostępu do twoich plików przez WebDAV" #: templates/personal.php:146 msgid "Encryption" @@ -608,7 +608,7 @@ msgstr "Magazyn domyślny" #: templates/users.php:44 templates/users.php:139 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" -msgstr "" +msgstr "Proszę ustawić ograniczenie zasobów (np. \"512 MB\" albo \"12 GB)" #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" @@ -628,7 +628,7 @@ msgstr "Magazyn" #: templates/users.php:108 msgid "change full name" -msgstr "" +msgstr "Zmień pełna nazwę" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index fe22e8559c..b73cf26fa5 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 1c0a3fdebc..3c82fb9a4f 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -278,12 +278,12 @@ msgstr "Compartilhados" msgid "Share" msgstr "Compartilhar" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Erro" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Erro ao compartilhar" @@ -303,115 +303,115 @@ msgstr "Compartilhado com você e com o grupo {group} por {owner}" msgid "Shared with you by {owner}" msgstr "Compartilhado com você por {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "Compartilhar com usuário ou grupo ..." -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "Compartilher link" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Proteger com senha" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Senha" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Permitir upload público" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Enviar link por e-mail" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Enviar" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Definir data de expiração" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Data de expiração" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Compartilhar via e-mail:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Nenhuma pessoa encontrada" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "grupo" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Não é permitido re-compartilhar" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Compartilhado em {item} com {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Descompartilhar" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "notificar por e-mail" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "pode editar" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "controle de acesso" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "criar" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "atualizar" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "remover" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "compartilhar" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Protegido com senha" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Erro ao remover data de expiração" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Erro ao definir data de expiração" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Enviando ..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "E-mail enviado" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Aviso" @@ -581,14 +581,12 @@ msgid "" "\n" msgstr "Olá,\n\ngostaria que você soubesse que %s compartilhou %s com vecê.\nVeja isto: %s\n\n" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" -msgstr "O compartilhamento irá expirer em %s.\n\n" +msgid "The share will expire on %s." +msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "Saúde!" @@ -735,11 +733,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "Olá,

só gostaria que você soubesse que %s compartilhou »%s« com você.
Veja isto!

" -msgstr "O compartilhamento irá expirar em %s.

" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index e82e74e5ba..bc8f7898ff 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -158,11 +158,11 @@ msgstr "Upload em andamento. Sair da página agora resultará no cancelamento do msgid "URL cannot be empty" msgstr "URL não pode estar vazia" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Na pasta home 'Shared- Compartilhada' é um nome reservado" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} já existe" @@ -186,39 +186,43 @@ msgstr "Excluir permanentemente" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "Não foi possível renomear o arquivo" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "Substituído {old_name} por {new_name} " -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "desfazer" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n pasta" msgstr[1] "%n pastas" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n arquivo" msgstr[1] "%n arquivos" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Enviando %n arquivo" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 2103f7e97a..49e4100d52 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -38,20 +38,20 @@ msgstr "Por favor forneça um app key e secret válido do Dropbox" msgid "Error configuring Google Drive storage" msgstr "Erro ao configurar armazenamento do Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Aviso: \"smbclient\" não está instalado. Impossível montar compartilhamentos de CIFS/SMB. Por favor, peça ao seu administrador do sistema para instalá-lo." -#: lib/config.php:457 +#: lib/config.php:465 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 "Aviso: O suporte para FTP do PHP não está ativado ou instalado. Impossível montar compartilhamentos FTP. Por favor, peça ao seu administrador do sistema para instalá-lo." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 766e7bcb13..3104219a27 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "Não foi possível restaurar %s" msgid "Error" msgstr "Erro" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "restaurado" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 1f1080dd82..44e7e1338c 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -71,27 +71,27 @@ msgstr "serviços web sob seu controle" msgid "cannot open \"%s\"" msgstr "não pode abrir \"%s\"" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "Download ZIP está desligado." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Arquivos precisam ser baixados um de cada vez." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Voltar para Arquivos" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Arquivos selecionados são muito grandes para gerar arquivo zip." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Baixe os arquivos em pedaços menores, separadamente ou solicite educadamente ao seu administrador." +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -134,17 +134,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "O aplicativo não pode ser instalado porque ele contém a marca verdadeiro que não é permitido para aplicações não embarcadas" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "O aplicativo não pode ser instalado porque a versão em info.xml /versão não é a mesma que a versão relatada na App Store" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Diretório App já existe" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Não é possível criar pasta app. Corrija as permissões. %s" @@ -269,13 +269,13 @@ msgstr "Defina um nome de usuário de administrador." msgid "Set an admin password." msgstr "Defina uma senha de administrador." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Seu servidor web não está configurado corretamente para permitir sincronização de arquivos porque a interface WebDAV parece estar quebrada." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, confira os guias de instalação." @@ -333,6 +333,6 @@ msgstr "último ano" msgid "years ago" msgstr "anos atrás" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Causados ​​por:" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 4d2e089be1..70fc11ca92 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 9ea7581b5f..fd4e95dd2f 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 12:30+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" @@ -90,15 +90,15 @@ msgstr "Erro" #: js/settings.js:674 msgid "Configuration OK" -msgstr "" +msgstr "Configuração OK" #: js/settings.js:683 msgid "Configuration incorrect" -msgstr "" +msgstr "Configuração incorreta" #: js/settings.js:692 msgid "Configuration incomplete" -msgstr "" +msgstr "Configuração incompleta" #: js/settings.js:709 js/settings.js:718 msgid "Select groups" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 686eaefb23..b13b82c643 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -282,12 +282,12 @@ msgstr "Partilhado" msgid "Share" msgstr "Partilhar" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Erro" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Erro ao partilhar" @@ -307,115 +307,115 @@ msgstr "Partilhado consigo e com o grupo {group} por {owner}" msgid "Shared with you by {owner}" msgstr "Partilhado consigo por {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Proteger com palavra-passe" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Password" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Permitir Envios Públicos" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Enviar o link por e-mail" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Enviar" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Especificar data de expiração" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Data de expiração" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Partilhar via email:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Não foi encontrado ninguém" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "grupo" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Não é permitido partilhar de novo" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Partilhado em {item} com {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Deixar de partilhar" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "pode editar" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "Controlo de acesso" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "criar" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "actualizar" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "apagar" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "partilhar" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Protegido com palavra-passe" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Erro ao retirar a data de expiração" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Erro ao aplicar a data de expiração" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "A Enviar..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "E-mail enviado" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Aviso" @@ -585,14 +585,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -739,11 +737,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index bdc09f7112..8240662db1 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -158,11 +158,11 @@ msgstr "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "O nome {new_name} já existe" @@ -186,39 +186,43 @@ msgstr "Eliminar permanentemente" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "substituido {new_name} por {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "desfazer" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n pasta" msgstr[1] "%n pastas" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n ficheiro" msgstr[1] "%n ficheiros" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "A carregar %n ficheiro" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index 971e07ff2d..7cac3cf388 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -38,20 +38,20 @@ msgstr "Por favor forneça uma \"app key\" e \"secret\" do Dropbox válidas." msgid "Error configuring Google Drive storage" msgstr "Erro ao configurar o armazenamento do Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "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." -#: lib/config.php:457 +#: lib/config.php:465 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 "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." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 5d57bfb195..08cb33d574 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "Não foi possível restaurar %s" msgid "Error" msgstr "Erro" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "Restaurado" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 1d245a0435..2edd6c5619 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-14 10:30+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -71,27 +71,27 @@ msgstr "serviços web sob o seu controlo" msgid "cannot open \"%s\"" msgstr "Não foi possível abrir \"%s\"" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "Descarregamento em ZIP está desligado." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Os ficheiros precisam de ser descarregados um por um." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Voltar a Ficheiros" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Os ficheiros seleccionados são grandes demais para gerar um ficheiro zip." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Descarregue os ficheiros em partes menores, separados ou peça gentilmente ao seu administrador." +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -134,17 +134,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "A directoria da aplicação já existe" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Não foi possível criar a pasta da aplicação. Por favor verifique as permissões. %s" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 2bde77cbda..faa93a3680 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index c27cbbf685..6fd2c34cfe 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 6c0c1cc616..fde1798218 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -285,12 +285,12 @@ msgstr "Partajat" msgid "Share" msgstr "Partajează" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Eroare" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Eroare la partajare" @@ -310,115 +310,115 @@ msgstr "Distribuie cu tine si grupul {group} de {owner}" msgid "Shared with you by {owner}" msgstr "Distribuie cu tine de {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Protejare cu parolă" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Parolă" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Permiteţi încărcarea publică." -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Expediază legătura prin poșta electronică" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Expediază" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Specifică data expirării" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Data expirării" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Distribuie prin email:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Nici o persoană găsită" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "grup" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Repartajarea nu este permisă" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Distribuie in {item} si {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Anulare partajare" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "poate edita" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "control acces" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "creare" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "actualizare" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "ștergere" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "partajare" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Protejare cu parolă" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Eroare la anularea datei de expirare" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Eroare la specificarea datei de expirare" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Se expediază..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Mesajul a fost expediat" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Atenție" @@ -588,14 +588,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -742,11 +740,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/ro/files.po b/l10n/ro/files.po index f859654226..2f69f0655e 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -160,11 +160,11 @@ msgstr "Fișierul este în curs de încărcare. Părăsirea paginii va întrerup msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} deja exista" @@ -188,41 +188,45 @@ msgstr "Stergere permanenta" msgid "Rename" msgstr "Redenumire" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "in timpul" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} inlocuit cu {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "Anulează ultima acțiune" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n director" msgstr[1] "%n directoare" msgstr[2] "%n directoare" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fișier" msgstr[1] "%n fișiere" msgstr[2] "%n fișiere" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} și {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Se încarcă %n fișier." diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index 1557bac71d..69aa8b63bc 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "Prezintă te rog o cheie de Dropbox validă și parola" msgid "Error configuring Google Drive storage" msgstr "Eroare la configurarea mediului de stocare Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Atenție: \"smbclient\" nu este instalat. Montarea mediilor CIFS/SMB partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleaze." -#: lib/config.php:457 +#: lib/config.php:465 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 "Atenție: suportul pentru FTP în PHP nu este activat sau instalat. Montarea mediilor FPT partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleze." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index f92d6ab20f..ca45c2337b 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -31,7 +31,7 @@ msgstr "" msgid "Error" msgstr "Eroare" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index c5df5b8e2b..e014129042 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -71,25 +71,25 @@ msgstr "servicii web controlate de tine" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "Descărcarea ZIP este dezactivată." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Fișierele trebuie descărcate unul câte unul." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Înapoi la fișiere" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Fișierele selectate sunt prea mari pentru a genera un fișier zip." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -134,17 +134,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -269,13 +269,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serverul de web nu este încă setat corespunzător pentru a permite sincronizarea fișierelor deoarece interfața WebDAV pare a fi întreruptă." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Vă rugăm să verificați ghiduri de instalare." @@ -337,6 +337,6 @@ msgstr "ultimul an" msgid "years ago" msgstr "ani în urmă" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index a0183777d1..30e23faeb9 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 918bd657c4..fcd8d51855 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 42be95eb1c..ceed7f31f8 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -22,9 +22,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: vsapronov \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -296,12 +296,12 @@ msgstr "Общие" msgid "Share" msgstr "Открыть доступ" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Ошибка" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Ошибка при открытии доступа" @@ -321,115 +321,115 @@ msgstr "{owner} открыл доступ для Вас и группы {group} msgid "Shared with you by {owner}" msgstr "{owner} открыл доступ для Вас" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "Поделиться с пользователем или группой..." -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "Поделиться ссылкой" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Защитить паролем" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Пароль" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Разрешить открытую загрузку" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Почтовая ссылка на персону" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Отправить" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Установить срок доступа" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Дата окончания" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Поделится через электронную почту:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Ни один человек не найден" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "группа" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Общий доступ не разрешен" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Общий доступ к {item} с {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Закрыть общий доступ" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "уведомить по почте" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "может редактировать" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "контроль доступа" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "создать" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "обновить" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "удалить" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "открыть доступ" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Защищено паролем" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Ошибка при отмене срока доступа" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Ошибка при установке срока доступа" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Отправляется ..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Письмо отправлено" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Предупреждение" @@ -599,14 +599,12 @@ msgid "" "\n" msgstr "Здравствуйте,\n\nпросто даём вам знать, что %s расшарил %s для вас.\nПосмотреть: %s\n\n" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" -msgstr "Шара закончится %s\n\n" +msgid "The share will expire on %s." +msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "Приветствуем!" @@ -753,11 +751,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "Здравствуйте,

просто даём вам знать, что %s расшарил %s для вас.
Посмотреть!

" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "Шара закончится %s.

" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." @@ -770,7 +763,7 @@ msgstr "Производится обновление ownCloud, это може #: templates/update.user.php:4 msgid "Please reload this page after a short time to continue using ownCloud." -msgstr "Перезагрузите эту страницу через короткое время чтобы продолжить использовать ownCloud." +msgstr "Перезагрузите эту страницу через некоторое время чтобы продолжить использовать ownCloud." #: templates/update.user.php:5 msgid "" @@ -780,4 +773,4 @@ msgstr "Обратитесь к вашему системному админис #: templates/update.user.php:6 msgid "Thank you for your patience." -msgstr "Спасибо за ваше терпение." +msgstr "Спасибо за терпение." diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 76879f2a5e..4f1f943361 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" -"Last-Translator: vsapronov \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -164,11 +164,11 @@ msgstr "Файл в процессе загрузки. Покинув стран msgid "URL cannot be empty" msgstr "Ссылка не может быть пустой." -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "В домашней папке 'Shared' зарезервированное имя файла" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} уже существует" @@ -192,41 +192,45 @@ msgstr "Удалено навсегда" msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Ожидание" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "Не удалось переименовать файл" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "заменено {new_name} на {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "отмена" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n папка" msgstr[1] "%n папки" msgstr[2] "%n папок" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n файл" msgstr[1] "%n файла" msgstr[2] "%n файлов" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} и {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Закачка %n файла" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 98fb2c40be..438e60725e 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "Пожалуйста, предоставьте действующий к msgid "Error configuring Google Drive storage" msgstr "Ошибка при настройке хранилища Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Внимание: \"smbclient\" не установлен. Подключение по CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его." -#: lib/config.php:457 +#: lib/config.php:465 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 "Внимание: Поддержка FTP не включена в PHP. Подключение по FTP невозможно. Пожалуйста, обратитесь к системному администратору, чтобы включить." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 95ac5cbc02..885f47eb1b 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "%s не может быть восстановлен" msgid "Error" msgstr "Ошибка" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "восстановлен" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 552972f5d3..9c85683ef9 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -76,27 +76,27 @@ msgstr "веб-сервисы под вашим управлением" msgid "cannot open \"%s\"" msgstr "не могу открыть \"%s\"" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "ZIP-скачивание отключено." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Файлы должны быть загружены по одному." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Назад к файлам" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Выбранные файлы слишком велики, чтобы создать zip файл." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Загрузите файл маленьшими порциями, раздельно или вежливо попросите Вашего администратора." +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -139,17 +139,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "Приложение невозможно установить. Оно содержит параметр true который не допустим для приложений, не входящих в поставку." -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Приложение невозможно установить. Версия в info.xml/version не совпадает с версией заявленной в магазине приложений" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Папка приложения уже существует" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Не удалось создать директорию. Исправьте права доступа. %s" @@ -274,13 +274,13 @@ msgstr "Установить имя пользователя для admin." msgid "Set an admin password." msgstr "становит пароль для admin." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш веб сервер до сих пор не настроен правильно для возможности синхронизации файлов, похоже что проблема в неисправности интерфейса WebDAV." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Пожалуйста, дважды просмотрите инструкции по установке." @@ -342,6 +342,6 @@ msgstr "в прошлом году" msgid "years ago" msgstr "несколько лет назад" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Вызвано:" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index ae2cc7bb6e..52ef3ad91e 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: unixoid \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index b93c8d3a08..8ecabe6905 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"Last-Translator: unixoid \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" @@ -97,15 +97,15 @@ msgstr "Ошибка" #: js/settings.js:674 msgid "Configuration OK" -msgstr "" +msgstr "Конфигурация в порядке" #: js/settings.js:683 msgid "Configuration incorrect" -msgstr "" +msgstr "Конфигурация неправильна" #: js/settings.js:692 msgid "Configuration incomplete" -msgstr "" +msgstr "Конфигурация не завершена" #: js/settings.js:709 js/settings.js:718 msgid "Select groups" diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index 340602893a..a1dbc6a48b 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -281,12 +281,12 @@ msgstr "" msgid "Share" msgstr "Сделать общим" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Ошибка" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -306,115 +306,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Пароль" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Предупреждение" @@ -428,7 +428,7 @@ msgstr "" #: js/tags.js:27 msgid "Delete" -msgstr "" +msgstr "Удалить" #: js/tags.js:31 msgid "Add" @@ -584,14 +584,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -738,11 +736,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index ca309af75b..f2706f491f 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:10+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -155,11 +155,11 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,41 +183,45 @@ msgstr "" msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -281,7 +285,7 @@ msgstr "" #: js/files.js:614 templates/index.php:68 msgid "Size" -msgstr "" +msgstr "Размер" #: js/files.js:615 templates/index.php:70 msgid "Modified" @@ -374,7 +378,7 @@ msgstr "" #: templates/index.php:81 templates/index.php:82 msgid "Delete" -msgstr "" +msgstr "Удалить" #: templates/index.php:95 msgid "Upload too large" diff --git a/l10n/ru_RU/files_external.po b/l10n/ru_RU/files_external.po index c930a845d7..a5c9cc66b9 100644 --- a/l10n/ru_RU/files_external.po +++ b/l10n/ru_RU/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-19 08:26-0400\n" -"PO-Revision-Date: 2013-10-18 09:15+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:50+0000\n" "Last-Translator: masensio \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -37,20 +37,20 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: lib/config.php:461 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:457 +#: lib/config.php:465 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:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -75,7 +75,7 @@ msgstr "" #: templates/settings.php:12 msgid "Options" -msgstr "" +msgstr "Опции" #: templates/settings.php:13 msgid "Applicable" @@ -104,7 +104,7 @@ 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/ru_RU/files_trashbin.po b/l10n/ru_RU/files_trashbin.po index f5cb3125af..734eef7b3e 100644 --- a/l10n/ru_RU/files_trashbin.po +++ b/l10n/ru_RU/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-19 08:26-0400\n" -"PO-Revision-Date: 2013-10-18 09:31+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:50+0000\n" "Last-Translator: masensio \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ msgstr "" msgid "Error" msgstr "Ошибка" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" @@ -53,7 +53,7 @@ msgstr "" #: templates/index.php:36 templates/index.php:37 msgid "Delete" -msgstr "" +msgstr "Удалить" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/ru_RU/lib.po b/l10n/ru_RU/lib.po index a2072fd6c8..14eecdabd8 100644 --- a/l10n/ru_RU/lib.po +++ b/l10n/ru_RU/lib.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" -"Last-Translator: masensio \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -166,7 +166,7 @@ msgstr "Файлы" #: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" -msgstr "" +msgstr "Текст" #: private/search/provider/file.php:30 msgid "Images" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -336,6 +336,6 @@ msgstr "" msgid "years ago" msgstr "" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index d318798df7..410374baa7 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:50+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -192,7 +192,7 @@ msgstr "" #: js/users.js:123 templates/users.php:170 msgid "Delete" -msgstr "" +msgstr "Удалить" #: js/users.js:284 msgid "add group" @@ -588,7 +588,7 @@ msgstr "" #: templates/users.php:30 msgid "Create" -msgstr "" +msgstr "Создать" #: templates/users.php:36 msgid "Admin Recovery Password" diff --git a/l10n/ru_RU/user_ldap.po b/l10n/ru_RU/user_ldap.po index 8f6354127f..45c56f9656 100644 --- a/l10n/ru_RU/user_ldap.po +++ b/l10n/ru_RU/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 0fdd8ff579..65070960c2 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -276,12 +276,12 @@ msgstr "" msgid "Share" msgstr "බෙදා හදා ගන්න" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "දෝෂයක්" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -301,115 +301,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "මුර පදයකින් ආරක්ශාකරන්න" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "මුර පදය" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "කල් ඉකුත් විමේ දිනය දමන්න" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "කල් ඉකුත් විමේ දිනය" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "විද්‍යුත් තැපෑල මඟින් බෙදාගන්න: " -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "කණ්ඩායම" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "නොබෙදු" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "සංස්කරණය කළ හැක" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "ප්‍රවේශ පාලනය" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "සදන්න" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "යාවත්කාලීන කරන්න" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "මකන්න" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "බෙදාහදාගන්න" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "මුර පදයකින් ආරක්ශාකර ඇත" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "කල් ඉකුත් දිනය ඉවත් කිරීමේ දෝෂයක්" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "කල් ඉකුත් දිනය ස්ථාපනය කිරීමේ දෝෂයක්" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "අවවාදය" @@ -579,14 +579,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -733,11 +731,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 9da5dc2683..dba43564f8 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -155,11 +155,11 @@ msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,39 +183,43 @@ msgstr "" msgid "Rename" msgstr "නැවත නම් කරන්න" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "නිෂ්ප්‍රභ කරන්න" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index 2d16fa4f49..cfd9ed24ec 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "කරුණාකර වලංගු Dropbox යෙදුම් යත msgid "Error configuring Google Drive storage" msgstr "Google Drive ගබඩාව වින්‍යාස කිරීමේ දෝශයක් ඇත" -#: lib/config.php:453 +#: lib/config.php:461 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:457 +#: lib/config.php:465 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:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 8d08295728..93598dcd45 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -31,7 +31,7 @@ msgstr "" msgid "Error" msgstr "දෝෂයක්" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 7fad91f3c3..d8488e0c1e 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවා msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "ZIP භාගත කිරීම් අක්‍රියයි" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "ගොනු එකින් එක භාගත යුතුයි" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "ගොනු වෙතට නැවත යන්න" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "තෝරාගත් ගොනු ZIP ගොනුවක් තැනීමට විශාල වැඩිය." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -332,6 +332,6 @@ msgstr "පෙර අවුරුද්දේ" msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index c0ad73b621..9818efbff1 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 9df4a19274..4aa61024f1 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 2437cf6338..28e33f44c8 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-30 03:32-0400\n" -"PO-Revision-Date: 2013-10-30 07:32+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -281,12 +281,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690 -#: js/share.js:702 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:730 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -306,115 +306,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:272 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:275 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:305 js/share.js:342 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:316 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:358 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:380 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:388 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:391 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:393 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:396 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:399 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:402 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:405 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:447 js/share.js:677 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:690 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:702 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:717 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:728 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:752 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -584,14 +584,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -738,11 +736,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/sk/files.po b/l10n/sk/files.po index 40c1b2e221..10a385f41a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-03 17:38+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:27 +#: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:127 +#: ajax/newfile.php:128 msgid "Error when creating the file" msgstr "" @@ -114,15 +114,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:153 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:143 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" @@ -142,24 +142,24 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:345 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:437 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:519 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:524 js/filelist.js:364 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:526 js/filelist.js:366 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,107 +183,111 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:392 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:582 js/filelist.js:649 js/files.js:587 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:583 js/filelist.js:650 js/files.js:593 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:590 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:793 js/filelist.js:831 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:34 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:46 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:50 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:63 +#: js/files.js:110 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:67 +#: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:71 +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:302 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error" msgstr "" -#: js/files.js:569 templates/index.php:56 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:570 templates/index.php:68 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:571 templates/index.php:70 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index fd3fd44c3a..73526564da 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-17 13:47-0400\n" -"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -24,31 +24,31 @@ msgid "" " of ownCloud." msgstr "" -#: private/app.php:254 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: private/app.php:359 +#: private/app.php:360 msgid "Help" msgstr "" -#: private/app.php:372 +#: private/app.php:373 msgid "Personal" msgstr "" -#: private/app.php:383 +#: private/app.php:384 msgid "Settings" msgstr "" -#: private/app.php:395 +#: private/app.php:396 msgid "Users" msgstr "" -#: private/app.php:408 +#: private/app.php:409 msgid "Admin" msgstr "" -#: private/app.php:872 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -284,58 +284,58 @@ msgstr "" msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:122 +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: private/template/functions.php:123 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:124 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:125 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: private/template/functions.php:126 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: private/template/functions.php:128 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:130 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:133 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:142 msgid "years ago" msgstr "" -#: private/template.php:297 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 9aeba9f96c..e809fa7232 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 17:10+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -283,12 +283,12 @@ msgstr "Zdieľané" msgid "Share" msgstr "Zdieľať" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Chyba" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Chyba počas zdieľania" @@ -308,115 +308,115 @@ msgstr "Zdieľané s vami a so skupinou {group} používateľom {owner}" msgid "Shared with you by {owner}" msgstr "Zdieľané s vami používateľom {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "Zdieľať s používateľom alebo skupinou ..." -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "Zdieľať linku" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Chrániť heslom" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Heslo" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Povoliť verejné nahrávanie" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Odoslať odkaz emailom" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Odoslať" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Nastaviť dátum expirácie" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Dátum expirácie" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Zdieľať cez email:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Používateľ nenájdený" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "skupina" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Zdieľanie už zdieľanej položky nie je povolené" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Zdieľané v {item} s {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Zrušiť zdieľanie" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "informovať emailom" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "môže upraviť" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "prístupové práva" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "vytvoriť" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "aktualizovať" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "vymazať" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "zdieľať" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Chránené heslom" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Chyba pri odstraňovaní dátumu expirácie" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Chyba pri nastavení dátumu expirácie" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Odosielam ..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Email odoslaný" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Varovanie" @@ -586,14 +586,12 @@ msgid "" "\n" msgstr "Ahoj,\n\nchcem ti dať navedomie, že %s zdieľa %s s tebou.\nZobrazenie tu: %s\n\n" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" -msgstr "Zdieľanie vyexpiruje %s.\n\n" +msgid "The share will expire on %s." +msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "Za zdravie!" @@ -740,11 +738,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "Ahoj,

chcem ti dať navedomie, že %s zdieľa »%s« s tebou.
Zobrazenie tu!

" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "Zdieľanie vyexpiruje %s.

" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 0df615a98e..883968794b 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:30+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -184,7 +184,7 @@ msgstr "Zmazať trvalo" msgid "Rename" msgstr "Premenovať" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:863 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Prebieha" @@ -200,25 +200,29 @@ msgstr "prepísaný {new_name} súborom {old_name}" msgid "undo" msgstr "vrátiť" -#: js/filelist.js:584 js/filelist.js:658 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n priečinok" msgstr[1] "%n priečinky" msgstr[2] "%n priečinkov" -#: js/filelist.js:585 js/filelist.js:659 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n súbor" msgstr[1] "%n súbory" msgstr[2] "%n súborov" -#: js/filelist.js:592 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} a {files}" -#: js/filelist.js:802 js/filelist.js:840 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Nahrávam %n súbor" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 9c9ba67656..24ef5a545f 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:40+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 2da23b5dc2..6aad589b16 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/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-10-27 02:28-0400\n" -"PO-Revision-Date: 2013-10-23 16:15+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "Nemožno obnoviť %s" msgid "Error" msgstr "Chyba" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "obnovené" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index aff83b9b8b..1f339997e7 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 17:00+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -72,27 +72,27 @@ msgstr "webové služby pod Vašou kontrolou" msgid "cannot open \"%s\"" msgstr "nemožno otvoriť \"%s\"" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "Sťahovanie súborov ZIP je vypnuté." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Súbory musia byť nahrávané jeden za druhým." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Späť na súbory" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Zvolené súbory sú príliš veľké na vygenerovanie zip súboru." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Stiahnite súbory po menších častiach, samostatne, alebo sa obráťte na správcu." +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -135,17 +135,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "Aplikácia nemôže byť nainštalovaná pretože obsahuje pravý štítok, ktorý nie je povolený pre zaslané \"shipped\" aplikácie" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Aplikácia nemôže byť nainštalovaná pretože verzia v info.xml/version nezodpovedá verzii špecifikovanej v obchode s aplikáciami" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Aplikačný priečinok už existuje" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Nemožno vytvoriť aplikačný priečinok. Prosím upravte povolenia. %s" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 1da5733a45..3f8d6920e0 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 17:10+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index cbff3b1bc9..c7addb2ce9 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index c8344477ea..eceed40ee3 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-15 21:06+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,20 +22,20 @@ msgstr "" #: ajax/share.php:119 ajax/share.php:198 #, php-format msgid "%s shared »%s« with you" -msgstr "%s je delil »%s« z vami" +msgstr "%s je omogočil souporabo »%s«" #: ajax/share.php:169 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "Ni mogoče poslati sporočila za: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" -msgstr "" +msgstr "Vzdrževalni način je omogočen" #: ajax/update.php:14 msgid "Turned off maintenance mode" -msgstr "" +msgstr "Vzdrževalni način je onemogočen" #: ajax/update.php:17 msgid "Updated database" @@ -43,20 +43,20 @@ msgstr "Posodobljena podatkovna zbirka" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "" +msgstr "Poteka posodabljanje predpomnilnika datotek. Opravilo je lahko dolgotrajno ..." #: ajax/update.php:23 msgid "Updated filecache" -msgstr "" +msgstr "Predpomnilnik datotek je posodobljen" #: ajax/update.php:26 #, php-format msgid "... %d%% done ..." -msgstr "" +msgstr "... %d%% končano ..." #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "Ni podane datoteke ali slike" #: avatar/controller.php:81 msgid "Unknown filetype" @@ -68,11 +68,11 @@ msgstr "Neveljavna slika" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "Na voljo ni nobene začasne slike za profil. Poskusite znova." #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "Ni podanih podatkov obreza" #: js/config.php:32 msgid "Sunday" @@ -161,17 +161,17 @@ msgstr "pred nekaj sekundami" #: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "pred %n minuto" +msgstr[1] "pred %n minutama" +msgstr[2] "pred %n minutami" msgstr[3] "pred %n minutami" #: js/js.js:860 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "pred %n uro" +msgstr[1] "pred %n urama" +msgstr[2] "pred %n urami" msgstr[3] "pred %n urami" #: js/js.js:861 @@ -185,9 +185,9 @@ msgstr "včeraj" #: js/js.js:863 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "pred %n dnevom" +msgstr[1] "pred %n dnevoma" +msgstr[2] "pred %n dnevi" msgstr[3] "pred %n dnevi" #: js/js.js:864 @@ -197,9 +197,9 @@ msgstr "zadnji mesec" #: js/js.js:865 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "pred %n mesecem" +msgstr[1] "pred %n mesecema" +msgstr[2] "pred %n meseci" msgstr[3] "pred %n meseci" #: js/js.js:866 @@ -220,7 +220,7 @@ msgstr "Izbor" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Napaka nalaganja predloge izbirnika datotek: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -236,29 +236,29 @@ msgstr "V redu" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Napaka nalaganja predloge sporočil: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "{count} spor datotek" +msgstr[1] "{count} spora datotek" +msgstr[2] "{count} spori datotek" +msgstr[3] "{count} sporov datotek" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "En spor datotek" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Katare datoteke želite ohraniti?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Če izberete obe različici, bo kopirani datoteki k imenu dodana številka." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -278,7 +278,7 @@ msgstr "({count} izbranih)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" -msgstr "" +msgstr "Napaka nalaganja predloge obstoječih datotek" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" @@ -288,12 +288,12 @@ msgstr "V souporabi" msgid "Share" msgstr "Souporaba" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Napaka" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Napaka med souporabo" @@ -313,115 +313,115 @@ msgstr "V souporabi z vami in skupino {group}. Lastnik je {owner}." msgid "Shared with you by {owner}" msgstr "V souporabi z vami. Lastnik je {owner}." -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" -msgstr "" +msgstr "Souporaba z uporabnikom ali skupino ..." -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" -msgstr "" +msgstr "Povezava za prejem" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Zaščiti z geslom" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Geslo" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" -msgstr "Dovoli javne prenose na strežnik" +msgstr "Dovoli javno pošiljanje na strežnik" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Posreduj povezavo po elektronski pošti" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Pošlji" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Nastavi datum preteka" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Datum preteka" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" -msgstr "Souporaba preko elektronske pošte:" +msgstr "Pošlji povezavo do dokumenta preko elektronske pošte:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Ni najdenih uporabnikov" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "skupina" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Nadaljnja souporaba ni dovoljena" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" -msgstr "V souporabi v {item} z {user}" +msgstr "V souporabi v {item} z uporabnikom {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Prekliči souporabo" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" -msgstr "" +msgstr "obvesti po elektronski pošti" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "lahko ureja" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "nadzor dostopa" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "ustvari" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "posodobi" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "izbriše" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "določi souporabo" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Zaščiteno z geslom" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Napaka brisanja datuma preteka" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Napaka nastavljanja datuma preteka" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Pošiljanje ..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Elektronska pošta je poslana" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Opozorilo" @@ -431,7 +431,7 @@ msgstr "Vrsta predmeta ni podana." #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "Vnesite novo" #: js/tags.js:27 msgid "Delete" @@ -447,11 +447,11 @@ msgstr "Uredi oznake" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "Napaka nalaganja predloge pogovornega okna: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "Ni izbranih oznak za izbris." #: js/update.js:17 msgid "" @@ -467,7 +467,7 @@ msgstr "Posodobitev je uspešno končana. Stran bo preusmerjena na oblak ownClou #: lostpassword/controller.php:62 #, php-format msgid "%s password reset" -msgstr "" +msgstr "Ponastavitev gesla %s" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -499,7 +499,7 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "Datoteke so šifrirane. Če niste omogočili ključa za obnovitev, žal podatkov ne bo mogoče pridobiti nazaj, ko boste geslo enkrat spremenili. Če niste prepričani, kaj storiti, se obrnite na skrbnika storitve. Ste prepričani, da želite nadaljevati?" +msgstr "Datoteke so šifrirane. Če niste omogočili ključa za obnovitev, žal podatkov ne bo mogoče pridobiti nazaj, ko boste geslo enkrat spremenili. Če niste prepričani, kaj storiti, se obrnite na skrbnika storitve. Ali ste prepričani, da želite nadaljevati?" #: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" @@ -551,27 +551,27 @@ msgstr "Napaka nalaganja oznak" #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "Oznaka že obstaja" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "Napaka brisanja oznak" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "Napaka označevanja" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "Napaka odstranjevanja oznak" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "Napaka označevanja priljubljenosti" #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "Napaka odstranjevanja oznake priljubljenosti" #: templates/403.php:12 msgid "Access forbidden" @@ -589,18 +589,16 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "Pozdravljeni,\n\noseba %s vam je omogočila souporabo %s.\nVir si lahko ogledate: %s\n\n" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "" +msgstr "Na zdravje!" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 @@ -614,7 +612,7 @@ msgstr "Uporabljena različica PHP je ranljiva za napad NULL Byte (CVE-2006-7243 #: templates/installation.php:26 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "Za varno uporabo storitve %s posodobite PHP" +msgstr "Za varno uporabo storitve %s, je treba posodobiti namestitev PHP" #: templates/installation.php:32 msgid "" @@ -639,7 +637,7 @@ msgstr "Podatkovna mapa in datoteke so najverjetneje javno dostopni preko intern msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Za navodila, kako pravilno nastaviti vaš strežnik, kliknite na povezavo do dokumentacije." +msgstr "Za več informacij o pravilnem nastavljanju strežnika, kliknite na povezavo do dokumentacije." #: templates/installation.php:47 msgid "Create an admin account" @@ -685,7 +683,7 @@ msgstr "Gostitelj podatkovne zbirke" #: templates/installation.php:184 msgid "Finish setup" -msgstr "Končaj namestitev" +msgstr "Končaj nastavitev" #: templates/installation.php:184 msgid "Finishing …" @@ -716,11 +714,11 @@ msgstr "Spremenite geslo za izboljšanje zaščite računa." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "Overitev s strežnika je spodletela!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Stopite v stik s skrbnikom sistema." #: templates/login.php:38 msgid "Lost your password?" @@ -743,12 +741,7 @@ msgstr "Druge prijavne možnosti" msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" -msgstr "" - -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" +msgstr "Pozdravljeni,

oseba %s vam je omogočila souporabo %s.
Vir si lahko ogledate na tem naslovu.

" #: templates/update.admin.php:3 #, php-format @@ -758,18 +751,18 @@ msgstr "Posodabljanje sistema ownCloud na različico %s je lahko dolgotrajno." #: templates/update.user.php:3 msgid "" "This ownCloud instance is currently being updated, which may take a while." -msgstr "" +msgstr "Nastavitev oblaka ownCloud se trenutno posodablja. Opravilo je lahko dolgotrajno ..." #: templates/update.user.php:4 msgid "Please reload this page after a short time to continue using ownCloud." -msgstr "" +msgstr "Ponovno naložite to stran po krajšem preteku časa in nadaljujte z uporabo oblaka ownCloud." #: templates/update.user.php:5 msgid "" "Contact your system administrator if this message persists or appeared " "unexpectedly." -msgstr "" +msgstr "Stopite v stik s skrbnikom sistema, če se bo sporočilo še naprej nepričakovano prikazovalo." #: templates/update.user.php:6 msgid "Thank you for your patience." -msgstr "" +msgstr "Hvala za potrpežljivost!" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 9ead2daf6f..251673b9c1 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-12 18:10+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,12 +22,12 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "%s ni mogoče premakniti - datoteka s tem imenom že obstaja" +msgstr "Datoteke %s ni mogoče premakniti - datoteka s tem imenom že obstaja." #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "Ni mogoče premakniti %s" +msgstr "Datoteke %s ni mogoče premakniti" #: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." @@ -59,7 +59,7 @@ msgstr "Napaka med ustvarjanjem datoteke" #: ajax/newfolder.php:21 msgid "Folder name cannot be empty." -msgstr "Ime mape ne more biti prazna vrednost" +msgstr "Ime mape ne more biti prazna vrednost." #: ajax/newfolder.php:27 msgid "Folder name must not contain \"/\". Please choose a different name." @@ -134,7 +134,7 @@ msgstr "Datoteke" #: js/file-upload.js:228 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" +msgstr "Ni mogoče poslati datoteke {filename}, saj je to ali mapa ali pa je velikost datoteke 0 bajtov." #: js/file-upload.js:239 msgid "Not enough space available" @@ -185,7 +185,7 @@ msgstr "Izbriši dokončno" msgid "Rename" msgstr "Preimenuj" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:863 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "V čakanju ..." @@ -201,7 +201,11 @@ msgstr "preimenovano ime {new_name} z imenom {old_name}" msgid "undo" msgstr "razveljavi" -#: js/filelist.js:584 js/filelist.js:658 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapa" @@ -209,7 +213,7 @@ msgstr[1] "%n mapi" msgstr[2] "%n mape" msgstr[3] "%n map" -#: js/filelist.js:585 js/filelist.js:659 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n datoteka" @@ -217,11 +221,11 @@ msgstr[1] "%n datoteki" msgstr[2] "%n datoteke" msgstr[3] "%n datotek" -#: js/filelist.js:592 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} in {files}" -#: js/filelist.js:802 js/filelist.js:840 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Posodabljanje %n datoteke" @@ -237,7 +241,7 @@ msgstr "'.' je neveljavno ime datoteke." msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "Neveljavno ime, znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni." +msgstr "Neveljavno ime; znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni." #: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" @@ -245,32 +249,32 @@ msgstr "Shramba je povsem napolnjena. Datotek ni več mogoče posodabljati in us #: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "Mesto za shranjevanje je skoraj polno ({usedSpacePercent}%)" +msgstr "Prostor za shranjevanje je skoraj do konca zaseden ({usedSpacePercent}%)" #: js/files.js:110 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "Program za šifriranje je omogočen, vendar ni začet. Odjavite se in nato ponovno prijavite." #: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Ni ustreznega osebnega ključa za program za šifriranje. Posodobite osebni ključ za dostop do šifriranih datotek med nastavitvami." #: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." -msgstr "" +msgstr "Šifriranje je onemogočeno, datoteke pa so še vedno šifrirane. Odšifrirajte jih med nastavitvami." #: js/files.js:349 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." +msgstr "Postopek priprave datoteke za prejem je lahko dolgotrajen, kadar je datoteka zelo velika." #: js/files.js:558 js/files.js:596 msgid "Error moving file" @@ -299,7 +303,7 @@ msgstr "Neveljavno ime mape. Ime 'Souporaba' je zadržana za javno mapo." #: lib/app.php:88 #, php-format msgid "%s could not be renamed" -msgstr "%s ni bilo mogoče preimenovati" +msgstr "%s ni mogoče preimenovati" #: lib/helper.php:11 templates/index.php:16 msgid "Upload" diff --git a/l10n/sl/files_encryption.po b/l10n/sl/files_encryption.po index d0e12c9c5b..943b2e6971 100644 --- a/l10n/sl/files_encryption.po +++ b/l10n/sl/files_encryption.po @@ -4,13 +4,14 @@ # # Translators: # barbarak , 2013 +# mateju <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-03 17:38+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 10: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" @@ -20,46 +21,46 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "Ključ za obnovitev gesla je bil uspešno nastavljen" +msgstr "Ključ za obnovitev gesla je uspešno nastavljen" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "Ključa za obnovitev gesla ni bilo mogoče nastaviti. Preverite ključ!" +msgstr "Ključa za obnovitev gesla ni mogoče nastaviti. Preverite ključ!" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "Ključ za obnovitev gesla je bil uspešno onemogočen" +msgstr "Ključ za obnovitev gesla je uspešno onemogočen" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "Ključa za obnovitev gesla ni bilo mogoče onemogočiti. Preverite ključ!" +msgstr "Ključa za obnovitev gesla ni mogoče onemogočiti. Preverite ključ!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "Geslo je bilo uspešno spremenjeno." +msgstr "Geslo je uspešno spremenjeno." #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "Gesla ni bilo mogoče spremeniti. Morda vnos starega gesla ni bil pravilen." +msgstr "Gesla ni mogoče spremeniti. Morda vnos starega gesla ni pravilen." #: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "Zasebni ključ za geslo je bil uspešno posodobljen." +msgstr "Zasebni ključ za geslo je uspešno posodobljen." #: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "Zasebnega ključa za geslo ni bilo mogoče posodobiti. Morda vnos starega gesla ni bil pravilen." +msgstr "Zasebnega ključa za geslo ni mogoče posodobiti. Morda vnos starega gesla ni bil pravilen." #: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "Program za šifriranje ni začet. Morda je bil program ponovno omogočen šele med zagonom trenutne seje. Odjavite se in se nato prijavite nazaj. S tem morda razrešite napako." #: files/error.php:16 #, php-format @@ -67,19 +68,19 @@ msgid "" "Your private key is not valid! Likely your password was changed outside of " "%s (e.g. your corporate directory). You can update your private key password" " in your personal settings to recover access to your encrypted files." -msgstr "" +msgstr "Zasebni ključ ni veljaven. Najverjetneje je bilo geslo spremenjeno izven %s (najverjetneje je to poslovna mapa). Geslo lahko posodobite med osebnimi nastavitvami in s tem obnovite dostop do šifriranih datotek." #: files/error.php:19 msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." -msgstr "" +msgstr "Te datoteke ni mogoče šifrirati, ker je to najverjetneje datoteka v souporabi. Prosite lastnika datoteke, da jo da ponovno v souporabo." #: files/error.php:22 files/error.php:27 msgid "" "Unknown error please check your system settings or contact your " "administrator" -msgstr "" +msgstr "Prišlo je do neznane napake. Preverite nastavitve sistema ali pa stopite v stik s skrbnikom sistema." #: hooks/hooks.php:59 msgid "Missing requirements." @@ -90,11 +91,11 @@ msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "Preverite, da imate na strežniku nameščen paket PHP 5.3.3 ali novejši in da je omogočen in pravilno nastavljen PHP OpenSSL . Zaenkrat je šifriranje onemogočeno." +msgstr "Preverite, ali je na strežniku nameščen paket PHP 5.3.3 ali novejši, da je omogočen in pravilno nastavljen PHP OpenSSL. Z obstoječimi možnostmi šifriranje ni mogoče." #: hooks/hooks.php:273 msgid "Following users are not set up for encryption:" -msgstr "Naslednji uporabniki še nimajo nastavljenega šifriranja:" +msgstr "Navedeni uporabniki še nimajo nastavljenega šifriranja:" #: js/settings-admin.js:13 msgid "Saving..." @@ -102,7 +103,7 @@ msgstr "Poteka shranjevanje ..." #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Skočite neposredno na" #: templates/invalid_private_key.php:8 msgid "personal settings" @@ -115,7 +116,7 @@ msgstr "Šifriranje" #: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "Omogoči ključ za obnovitev datotek (v primeru izgube gesla)" +msgstr "Omogoči ključ za obnovitev datotek (v primeru izgube gesla):" #: templates/settings-admin.php:11 msgid "Recovery key password" @@ -123,7 +124,7 @@ msgstr "Ključ za obnovitev gesla" #: templates/settings-admin.php:14 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Ponovi ključ za obnovitev gesla" #: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" @@ -143,11 +144,11 @@ msgstr "Stari ključ za obnovitev gesla" #: templates/settings-admin.php:47 msgid "New Recovery key password" -msgstr "Nov ključ za obnovitev gesla" +msgstr "Novi ključ za obnovitev gesla" #: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Ponovi novi ključ za obnovitev gesla" #: templates/settings-admin.php:58 msgid "Change Password" @@ -155,17 +156,17 @@ msgstr "Spremeni geslo" #: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" -msgstr "Vaš zasebni ključ za geslo se ne ujema z vnešenim geslom ob prijavi:" +msgstr "Vaš zasebni ključ za geslo se ne ujema z geslom, vnesenim ob prijavi:" #: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." -msgstr "Nastavite svoj star zasebni ključ v geslo, vnešeno ob prijavi." +msgstr "Nastavite svoj star zasebni ključ v geslo, vneseno ob prijavi." #: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "Če ste svoje geslo pozabili, lahko vaše datoteke obnovi skrbnik sistema." +msgstr "Če ste pozabili svoje geslo, lahko vaše datoteke obnovi le skrbnik sistema." #: templates/settings-personal.php:22 msgid "Old log-in password" @@ -187,12 +188,12 @@ msgstr "Omogoči obnovitev gesla:" msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "Nastavitev te možnosti omogoča ponovno pridobitev dostopa do šifriranih datotek, v primeru da boste geslo pozabili." +msgstr "Nastavitev te možnosti omogoča ponovno pridobitev dostopa do šifriranih datotek, v primeru, da boste geslo pozabili." #: templates/settings-personal.php:60 msgid "File recovery settings updated" -msgstr "Nastavitve obnavljanja dokumentov so bile posodobljene" +msgstr "Nastavitve obnavljanja dokumentov so posodobljene" #: templates/settings-personal.php:61 msgid "Could not update file recovery" -msgstr "Nastavitev za obnavljanje dokumentov ni bilo mogoče posodobiti" +msgstr "Nastavitev za obnavljanje dokumentov ni mogoče posodobiti" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index f9f7218e7a..deddf05668 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -38,20 +38,20 @@ msgstr "Vpisati je treba veljaven ključ programa in kodo za Dropbox" msgid "Error configuring Google Drive storage" msgstr "Napaka nastavljanja shrambe Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Opozorilo: paket \"smbclient\" ni nameščen. Priklapljanje pogonov CIFS/SMB ne bo mogoče." -#: lib/config.php:457 +#: lib/config.php:465 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 ne bo mogoče." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index d720815172..47b8914bda 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-12 18:40+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index bc8f3dca13..47fd426771 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-15 21:10+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -72,25 +72,25 @@ msgstr "spletne storitve pod vašim nadzorom" msgid "cannot open \"%s\"" msgstr "ni mogoče odpreti \"%s\"" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "Prejemanje datotek v paketu ZIP je onemogočeno." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Datoteke je mogoče prejeti le posamično." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Nazaj na datoteke" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Izbrane datoteke so prevelike za ustvarjanje datoteke arhiva zip." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -135,17 +135,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Programska mapa že obstaja" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 28cfbf3a7d..c09a9b8224 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-18 20: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" @@ -30,7 +30,7 @@ msgstr "Napaka med overjanjem" #: ajax/changedisplayname.php:31 msgid "Your full name has been changed." -msgstr "" +msgstr "Vaše polno ime je spremenjeno." #: ajax/changedisplayname.php:34 msgid "Unable to change full name" @@ -92,7 +92,7 @@ msgstr "Napačno geslo" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "Ni navedenega uporabnika" #: changepassword/controller.php:74 msgid "" @@ -113,7 +113,7 @@ msgstr "" #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" -msgstr "" +msgstr "Ni mogoče spremeniti gesla" #: js/apps.js:43 msgid "Update to {appversion}" @@ -133,11 +133,11 @@ msgstr "Počakajte ..." #: js/apps.js:79 js/apps.js:80 js/apps.js:101 msgid "Error while disabling app" -msgstr "" +msgstr "Napaka onemogočanja programa" #: js/apps.js:100 js/apps.js:114 js/apps.js:115 msgid "Error while enabling app" -msgstr "" +msgstr "Napaka omogočanja programa" #: js/apps.js:125 msgid "Updating...." @@ -161,11 +161,11 @@ msgstr "Posodobljeno" #: js/personal.js:220 msgid "Select a profile picture" -msgstr "" +msgstr "Izbor slike profila" #: js/personal.js:265 msgid "Decrypting files... Please wait, this can take some time." -msgstr "" +msgstr "Poteka odšifriranje datotek ... Opravilo je lahko dolgotrajno." #: js/personal.js:287 msgid "Saving..." @@ -214,7 +214,7 @@ msgstr "Navedeno mora biti veljavno geslo" #: js/users.js:481 msgid "Warning: Home directory for user \"{user}\" already exists" -msgstr "" +msgstr "Opozorilo: osebna mapa uporabnika \"{user}\" že obstaja" #: personal.php:45 personal.php:46 msgid "__language_name__" @@ -222,23 +222,23 @@ msgstr "Slovenščina" #: templates/admin.php:8 msgid "Everything (fatal issues, errors, warnings, info, debug)" -msgstr "" +msgstr "Vse (podrobnosti, opozorila, hrošče, napake in usodne dogodke)" #: templates/admin.php:9 msgid "Info, warnings, errors and fatal issues" -msgstr "" +msgstr "Podrobnosti, opozorila, napake in usodne dogodke" #: templates/admin.php:10 msgid "Warnings, errors and fatal issues" -msgstr "" +msgstr "Opozorila, napake in usodne dogodke" #: templates/admin.php:11 msgid "Errors and fatal issues" -msgstr "" +msgstr "Napake in usodne dogodke" #: templates/admin.php:12 msgid "Fatal issues only" -msgstr "" +msgstr "Le usodne dogodke" #: templates/admin.php:22 msgid "Security Warning" @@ -368,7 +368,7 @@ msgstr "Uporabnikom dovoli souporabo z ostalimi uporabniki njihove skupine" #: templates/admin.php:177 msgid "Allow mail notification" -msgstr "" +msgstr "Dovoli obvestila preko elektronske pošte" #: templates/admin.php:178 msgid "Allow user to send mail notification for shared files" @@ -527,11 +527,11 @@ msgstr "Slika profila" #: templates/personal.php:90 msgid "Upload new" -msgstr "" +msgstr "Pošlji novo" #: templates/personal.php:92 msgid "Select new from Files" -msgstr "" +msgstr "Izberi novo iz menija datotek" #: templates/personal.php:93 msgid "Remove image" @@ -547,7 +547,7 @@ msgstr "Prekini" #: templates/personal.php:98 msgid "Choose as profile image" -msgstr "" +msgstr "Izberi kot sliko profila" #: templates/personal.php:106 templates/personal.php:107 msgid "Language" @@ -566,7 +566,7 @@ msgstr "WebDAV" msgid "" "Use this address to access your Files via " "WebDAV" -msgstr "" +msgstr "Uporabite naslov za dostop do datotek rpeko sistema WebDAV." #: templates/personal.php:146 msgid "Encryption" @@ -578,7 +578,7 @@ msgstr "" #: templates/personal.php:154 msgid "Log-in password" -msgstr "" +msgstr "Prijavno geslo" #: templates/personal.php:159 msgid "Decrypt all Files" @@ -594,13 +594,13 @@ msgstr "Ustvari" #: templates/users.php:36 msgid "Admin Recovery Password" -msgstr "Obnovitev administratorjevega gesla" +msgstr "Obnovitev skrbniškega gesla" #: templates/users.php:37 templates/users.php:38 msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "Vnesite geslo za obnovitev, ki ga boste uporabljali za obnovitev datotek uporabnikov med spremembo gesla" +msgstr "Vnesite geslo, ki omogoča obnovitev uporabniških datotek med spreminjanjem gesla" #: templates/users.php:42 msgid "Default Storage" @@ -608,7 +608,7 @@ msgstr "Privzeta shramba" #: templates/users.php:44 templates/users.php:139 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" -msgstr "" +msgstr "Vnesite količinsko omejitev prostora (na primer: \"512 MB\" ali \"12 GB\")" #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index afcde261bc..99fd594ff8 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-19 18:40+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" @@ -21,7 +21,7 @@ msgstr "" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." -msgstr "Preslikav ni bilo mogoče izbrisati" +msgstr "Čiščenje preslikav je spodletelo." #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" @@ -35,30 +35,30 @@ msgstr "Nastavitev je veljavna, zato je povezavo mogoče vzpostaviti!" msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "Nastavitev je veljavna, vendar pa je vez Bind spodletela. Preveriti je treba nastavitve strežnika in ustreznost poveril." +msgstr "Nastavitev je veljavna, vendar pa je vez spodletela. Preveriti je treba nastavitve strežnika in ustreznost poveril." #: ajax/testConfiguration.php:44 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "" +msgstr "Nastavitev ni veljavna. Več podrobnosti o napaki je zabeleženih v dnevniku." #: ajax/wizard.php:32 msgid "No action specified" -msgstr "" +msgstr "Ni določenega dejanja" #: ajax/wizard.php:38 msgid "No configuration specified" -msgstr "" +msgstr "Ni določenih nastavitev" #: ajax/wizard.php:78 msgid "No data specified" -msgstr "" +msgstr "Ni navedenih podatkov" #: ajax/wizard.php:86 #, php-format msgid " Could not set configuration %s" -msgstr "" +msgstr "Ni mogoče uveljaviti nastavitev %s" #: js/settings.js:67 msgid "Deletion failed" @@ -66,11 +66,11 @@ msgstr "Brisanje je spodletelo." #: js/settings.js:83 msgid "Take over settings from recent server configuration?" -msgstr "Ali naj se prevzame nastavitve nedavne nastavitve strežnika?" +msgstr "Ali naj bodo prevzete nedavne nastavitve strežnika?" #: js/settings.js:84 msgid "Keep settings?" -msgstr "Ali nas se nastavitve ohranijo?" +msgstr "Ali naj se nastavitve ohranijo?" #: js/settings.js:99 msgid "Cannot add server configuration" @@ -78,7 +78,7 @@ msgstr "Ni mogoče dodati nastavitev strežnika" #: js/settings.js:127 msgid "mappings cleared" -msgstr "Preslikave so izbrisane" +msgstr "preslikave so izbrisane" #: js/settings.js:128 msgid "Success" @@ -90,15 +90,15 @@ msgstr "Napaka" #: js/settings.js:674 msgid "Configuration OK" -msgstr "" +msgstr "Nastavitev je ustrezna" #: js/settings.js:683 msgid "Configuration incorrect" -msgstr "" +msgstr "Nastavitev ni ustrezna" #: js/settings.js:692 msgid "Configuration incomplete" -msgstr "" +msgstr "Nastavitev je nepopolna" #: js/settings.js:709 js/settings.js:718 msgid "Select groups" @@ -106,7 +106,7 @@ msgstr "Izberi skupine" #: js/settings.js:712 js/settings.js:721 msgid "Select object classes" -msgstr "" +msgstr "Izbor razredov predmeta" #: js/settings.js:715 msgid "Select attributes" @@ -132,19 +132,19 @@ msgstr "Potrdi brisanje" #, php-format msgid "%s group found" msgid_plural "%s groups found" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%s najdena skupina" +msgstr[1] "%s najdeni skupini" +msgstr[2] "%s najdene skupine" +msgstr[3] "%s najdenih skupin" #: lib/wizard.php:119 #, php-format msgid "%s user found" msgid_plural "%s users found" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%s najden uporabnik" +msgstr[1] "%s najdena uporabnika" +msgstr[2] "%s najdeni uporabniki" +msgstr[3] "%s najdenih uporabnikov" #: lib/wizard.php:740 lib/wizard.php:752 msgid "Invalid Host" @@ -152,7 +152,7 @@ msgstr "Neveljaven gostitelj" #: lib/wizard.php:913 msgid "Could not find the desired feature" -msgstr "" +msgstr "Želene zmožnosti ni mogoče najti" #: templates/part.settingcontrols.php:2 msgid "Save" @@ -169,53 +169,53 @@ msgstr "Pomoč" #: templates/part.wizard-groupfilter.php:4 #, php-format msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "" +msgstr "Omeji dostop %s do skupin glede na kriterij:" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 msgid "only those object classes:" -msgstr "" +msgstr "le razredi predmeta:" #: templates/part.wizard-groupfilter.php:17 #: templates/part.wizard-userfilter.php:17 msgid "only from those groups:" -msgstr "" +msgstr "le iz skupin:" #: templates/part.wizard-groupfilter.php:25 #: templates/part.wizard-userfilter.php:25 msgid "Edit raw filter instead" -msgstr "" +msgstr "Uredi surov filter" #: templates/part.wizard-groupfilter.php:30 #: templates/part.wizard-userfilter.php:30 msgid "Raw LDAP filter" -msgstr "" +msgstr "Surovi filter LDAP" #: templates/part.wizard-groupfilter.php:31 #, php-format msgid "" "The filter specifies which LDAP groups shall have access to the %s instance." -msgstr "" +msgstr "Filter določa, katere skupine LDAP bodo imele dostop do %s." #: templates/part.wizard-groupfilter.php:38 msgid "groups found" -msgstr "" +msgstr "najdenih skupin" #: templates/part.wizard-loginfilter.php:4 msgid "What attribute shall be used as login name:" -msgstr "" +msgstr "Kateri atribut naj bo uporabljen kot prijavno ime:" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" -msgstr "" +msgstr "Uporabniško ime LDAP:" #: templates/part.wizard-loginfilter.php:16 msgid "LDAP Email Address:" -msgstr "" +msgstr "Elektronski naslov LDAP:" #: templates/part.wizard-loginfilter.php:24 msgid "Other Attributes:" -msgstr "" +msgstr "Drugi atributi:" #: templates/part.wizard-server.php:18 msgid "Add Server Configuration" @@ -236,14 +236,14 @@ msgstr "Vrata" #: templates/part.wizard-server.php:44 msgid "User DN" -msgstr "Uporabnik DN" +msgstr "Uporabnikovo enolično ime" #: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "DN uporabnikovega odjemalca, s katerim naj se opravi vezava, npr. uid=agent,dc=example,dc=com. Za brezimni dostop sta polji DN in geslo prazni." +msgstr "Enolično ime uporabnikovega odjemalca, s katerim naj se opravi vezava, npr. uid=agent,dc=example,dc=com. Za brezimni dostop sta polji prikaznega imena in gesla prazni." #: templates/part.wizard-server.php:52 msgid "Password" @@ -251,30 +251,30 @@ msgstr "Geslo" #: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." -msgstr "Za brezimni dostop sta polji DN in geslo prazni." +msgstr "Za brezimni dostop naj bosta polji imena in gesla prazni." #: templates/part.wizard-server.php:60 msgid "One Base DN per line" -msgstr "En osnovni DN na vrstico" +msgstr "Eno osnovno enolično ime na vrstico" #: templates/part.wizard-server.php:61 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "Osnovni DN za uporabnike in skupine lahko določite v zavihku naprednih možnosti." +msgstr "Osnovno enolično ime za uporabnike in skupine lahko določite v zavihku naprednih možnosti." #: templates/part.wizard-userfilter.php:4 #, php-format msgid "Limit the access to %s to users meeting this criteria:" -msgstr "" +msgstr "Omeji dostop do %s uporabnikom, za katere velja kriterij:" #: templates/part.wizard-userfilter.php:31 #, php-format msgid "" "The filter specifies which LDAP users shall have access to the %s instance." -msgstr "" +msgstr "Filter določa, kateri uporabniki LDAP bodo imeli dostop do %s." #: templates/part.wizard-userfilter.php:38 msgid "users found" -msgstr "" +msgstr "najdenih uporabnikov" #: templates/part.wizardcontrols.php:5 msgid "Back" @@ -289,7 +289,7 @@ msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "Opozorilo: določili user_ldap in user_webdavauth sta neskladni, kar lahko vpliva na delovanje sistema. O napaki pošljite poročilo skrbniku sistema in opozorite, da je treba eno izmed možnosti onemogočiti." #: templates/settings.php:14 msgid "" @@ -318,7 +318,7 @@ msgstr "Filter prijav uporabnikov" msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action. Example: \"uid=%%uid\"" -msgstr "" +msgstr "Določi filter, ki bo uveljavljen ob poskusu prijave. %%uid zamenja uporabniško ime pri prijavi, na primer: \"uid=%%uid\"" #: templates/settings.php:26 msgid "Backup (Replica) Host" @@ -332,7 +332,7 @@ msgstr "Podati je treba izbirno varnostno kopijo gostitelja. Ta mora biti natan #: templates/settings.php:27 msgid "Backup (Replica) Port" -msgstr "Varnostna kopija (replika) podatka vrat" +msgstr "Vrata varnostne kopije (replike)" #: templates/settings.php:28 msgid "Disable Main Server" @@ -375,7 +375,7 @@ msgstr "Polje za uporabnikovo prikazano ime" #: templates/settings.php:35 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "Atribut LDAP za uporabo pri ustvarjanju prikaznega imena uporabnika." #: templates/settings.php:36 msgid "Base User Tree" @@ -383,11 +383,11 @@ msgstr "Osnovno uporabniško drevo" #: templates/settings.php:36 msgid "One User Base DN per line" -msgstr "Eno osnovno uporabniško ime DN na vrstico" +msgstr "Eno osnovno uporabniško ime na vrstico" #: templates/settings.php:37 msgid "User Search Attributes" -msgstr "Uporabi atribute iskanja" +msgstr "Uporabnikovi atributi iskanja" #: templates/settings.php:37 templates/settings.php:40 msgid "Optional; one attribute per line" @@ -399,7 +399,7 @@ msgstr "Polje za prikazano ime skupine" #: templates/settings.php:38 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "Atribut LDAP za uporabo pri ustvarjanju prikaznega imena skupine." #: templates/settings.php:39 msgid "Base Group Tree" @@ -407,11 +407,11 @@ msgstr "Osnovno drevo skupine" #: templates/settings.php:39 msgid "One Group Base DN per line" -msgstr "Eno osnovno ime skupine DN na vrstico" +msgstr "Eno osnovno ime skupine na vrstico" #: templates/settings.php:40 msgid "Group Search Attributes" -msgstr "Atributi iskanja skupine" +msgstr "Skupinski atributi iskanja" #: templates/settings.php:41 msgid "Group-Member association" @@ -449,7 +449,7 @@ msgstr "Pustite prazno za uporabniško ime (privzeto), sicer navedite atribut LD #: templates/settings.php:54 msgid "Internal Username" -msgstr "Interno uporabniško ime" +msgstr "Programsko uporabniško ime" #: templates/settings.php:55 msgid "" @@ -469,7 +469,7 @@ msgstr "" #: templates/settings.php:56 msgid "Internal Username Attribute:" -msgstr "Atribut Interno uporabniško ime" +msgstr "Programski atribut uporabniškega imena:" #: templates/settings.php:57 msgid "Override UUID detection" @@ -488,15 +488,15 @@ msgstr "" #: templates/settings.php:59 msgid "UUID Attribute for Users:" -msgstr "" +msgstr "Atribut UUID za uporabnike:" #: templates/settings.php:60 msgid "UUID Attribute for Groups:" -msgstr "" +msgstr "Atribut UUID za skupine:" #: templates/settings.php:61 msgid "Username-LDAP User Mapping" -msgstr "Preslikava uporabniško ime - LDAP-uporabnik" +msgstr "Uporabniška preslikava Uporabniško_ime-LDAP" #: templates/settings.php:62 msgid "" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 8895991ebb..392edeac57 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -278,12 +278,12 @@ msgstr "Ndarë" msgid "Share" msgstr "Nda" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Veprim i gabuar" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Veprim i gabuar gjatë ndarjes" @@ -303,115 +303,115 @@ msgstr "Ndarë me ju dhe me grupin {group} nga {owner}" msgid "Shared with you by {owner}" msgstr "Ndarë me ju nga {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Mbro me kod" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Kodi" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Lejo Ngarkimin Publik" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Dërgo email me lidhjen" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Dërgo" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Cakto datën e përfundimit" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Data e përfundimit" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Nda me email:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Nuk u gjet asnjë person" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "grupi" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Rindarja nuk lejohet" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Ndarë në {item} me {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Hiq ndarjen" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "mund të ndryshosh" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "kontrollimi i hyrjeve" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "krijo" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "azhurno" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "elimino" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "nda" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Mbrojtur me kod" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Veprim i gabuar gjatë heqjes së datës së përfundimit" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Veprim i gabuar gjatë caktimit të datës së përfundimit" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Duke dërguar..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Email-i u dërgua" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -581,14 +581,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -735,11 +733,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 5a0e32698c..3c0a44be98 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -156,11 +156,11 @@ msgstr "Skedari duke u ngarkuar. Largimi nga faqja do të anullojë ngarkimin" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} është ekzistues " @@ -184,39 +184,43 @@ msgstr "Fshi përfundimisht" msgid "Rename" msgstr "Riemëro" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Në vijim" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "u zëvendësua {new_name} me {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "anullo" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dosje" msgstr[1] "%n dosje" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n skedar" msgstr[1] "%n skedarë" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} dhe {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Po ngarkoj %n skedar" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 4d5a8185e4..62b645b85d 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-27 02:28-0400\n" -"PO-Revision-Date: 2013-10-24 10:30+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: lib/config.php:461 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:457 +#: lib/config.php:465 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:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index 490689ccc9..64b4a4e742 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/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-10-27 02:28-0400\n" -"PO-Revision-Date: 2013-10-24 10:30+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "Nuk munda ta rivendos %s" msgid "Error" msgstr "Veprim i gabuar" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "rivendosur" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 2d8440162b..5bdd4df17f 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "shërbime web nën kontrollin tënd" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "Shkarimi i skedarëve ZIP është i çaktivizuar." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Skedarët duhet të shkarkohen një nga një." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Kthehu tek skedarët" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Skedarët e selektuar janë shumë të mëdhenj për të krijuar një skedar ZIP." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "Cakto emrin e administratorit." msgid "Set an admin password." msgstr "Cakto kodin e administratorit." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Ju lutemi kontrolloni mirë shoqëruesin e instalimit." @@ -332,6 +332,6 @@ msgstr "vitin e shkuar" msgid "years ago" msgstr "vite më parë" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index ef813d0922..c10d4af46c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index d12b606c96..73ff175963 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 39828d4955..3377061d55 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -281,12 +281,12 @@ msgstr "" msgid "Share" msgstr "Дели" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Грешка" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Грешка у дељењу" @@ -306,115 +306,115 @@ msgstr "Дељено са вама и са групом {group}. Поделио msgid "Shared with you by {owner}" msgstr "Поделио са вама {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Заштићено лозинком" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Лозинка" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Пошаљи" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Постави датум истека" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Датум истека" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Подели поштом:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Особе нису пронађене." -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "група" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Поновно дељење није дозвољено" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Подељено унутар {item} са {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Укини дељење" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "може да мења" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "права приступа" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "направи" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "ажурирај" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "обриши" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "подели" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Заштићено лозинком" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Грешка код поништавања датума истека" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Грешка код постављања датума истека" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Шаљем..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Порука је послата" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Упозорење" @@ -584,14 +584,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -738,11 +736,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 98ffe78702..9f6b7dd266 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -155,11 +155,11 @@ msgstr "Отпремање датотеке је у току. Ако сада н msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} већ постоји" @@ -183,41 +183,45 @@ msgstr "Обриши за стално" msgid "Rename" msgstr "Преименуј" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "На чекању" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "замењено {new_name} са {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "опозови" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index 1b2905c7fa..97c2ec3dbc 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: lib/config.php:461 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:457 +#: lib/config.php:465 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:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 7b0c084133..e0b12d92e3 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -31,7 +31,7 @@ msgstr "" msgid "Error" msgstr "Грешка" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index d45b73bf46..059422918a 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "веб сервиси под контролом" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "Преузимање ZIP-а је искључено." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Датотеке морате преузимати једну по једну." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Назад на датотеке" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Изабране датотеке су превелике да бисте направили ZIP датотеку." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Погледајте водиче за инсталацију." @@ -336,6 +336,6 @@ msgstr "прошле године" msgid "years ago" msgstr "година раније" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index bf2d8228d2..611a770e1d 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index d705f5ed6a..27f3e4ff73 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index e3889dd26c..6963673f70 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -282,12 +282,12 @@ msgstr "Deljeno" msgid "Share" msgstr "Podeli" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Greška" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Greška pri deljenju" @@ -307,115 +307,115 @@ msgstr "{owner} podelio sa Vama i grupom {group} " msgid "Shared with you by {owner}" msgstr "Sa vama podelio {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Zaštita lozinkom" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Lozinka" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Pošalji link e-mailom" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Pošalji" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Datum isteka" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Datum isteka" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Deli putem e-maila" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Nema pronađenih ljudi" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Dalje deljenje nije dozvoljeno" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Deljeno u {item} sa {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Ukljoni deljenje" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "dozvoljene izmene" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "kontrola pristupa" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "napravi" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "ažuriranje" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "brisanje" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "deljenje" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Zaštćeno lozinkom" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Greška u uklanjanju datuma isteka" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Greška u postavljanju datuma isteka" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Slanje..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Email poslat" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -585,14 +585,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -739,11 +737,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 6f65e3bcc1..b4030101e1 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -155,11 +155,11 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,41 +183,45 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index cc36587c34..d2e140796d 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: lib/config.php:461 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:457 +#: lib/config.php:465 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:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 2c962a0d96..54363eaf89 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -31,7 +31,7 @@ msgstr "" msgid "Error" msgstr "Greška" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index e7d11bc30f..bd33829331 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -336,6 +336,6 @@ msgstr "prošle godine" msgid "years ago" msgstr "pre nekoliko godina" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 99e1256b9d..d33ad07665 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index a000813f65..0f3ec162d8 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 252918fff7..3245f5e1a2 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -283,12 +283,12 @@ msgstr "Delad" msgid "Share" msgstr "Dela" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Fel" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Fel vid delning" @@ -308,115 +308,115 @@ msgstr "Delad med dig och gruppen {group} av {owner}" msgid "Shared with you by {owner}" msgstr "Delad med dig av {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "Dela med användare eller grupp..." -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "Dela länk" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Lösenordsskydda" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Lösenord" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Tillåt publik uppladdning" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "E-posta länk till person" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Skicka" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Sätt utgångsdatum" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Utgångsdatum" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Dela via e-post:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Hittar inga användare" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "Grupp" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Dela vidare är inte tillåtet" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Delad i {item} med {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Sluta dela" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "informera via e-post" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "kan redigera" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "åtkomstkontroll" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "skapa" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "uppdatera" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "radera" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "dela" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Lösenordsskyddad" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Fel vid borttagning av utgångsdatum" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Fel vid sättning av utgångsdatum" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Skickar ..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "E-post skickat" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Varning" @@ -586,14 +586,12 @@ msgid "" "\n" msgstr "Hej där,⏎\n⏎\nville bara meddela dig att %s delade %s med dig.⏎\nTitta på den: %s⏎\n⏎\n" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" -msgstr "Utdelningen kommer att upphöra %s.⏎\n⏎\n" +msgid "The share will expire on %s." +msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "Vi höres!" @@ -740,11 +738,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "Hej där,

ville bara informera dig om att %s delade »%s« med dig.
Titta på den!

" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "Utdelningen kommer att upphöra %s.

" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 71c1093237..13a1f42bc5 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -162,11 +162,11 @@ msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." msgid "URL cannot be empty" msgstr "URL kan ej vara tomt" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "I hemma katalogen 'Delat' är ett reserverat filnamn" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} finns redan" @@ -190,39 +190,43 @@ msgstr "Radera permanent" msgid "Rename" msgstr "Byt namn" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Väntar" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "Kan ej byta filnamn" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "ersatt {new_name} med {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "ångra" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapp" msgstr[1] "%n mappar" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} och {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laddar upp %n fil" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 174aab0fd3..db436300c6 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -38,20 +38,20 @@ msgstr "Ange en giltig Dropbox nyckel och hemlighet." msgid "Error configuring Google Drive storage" msgstr "Fel vid konfigurering av Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varning: \"smb-klienten\" är inte installerad. Montering av CIFS/SMB delningar är inte möjligt. Kontakta din systemadministratör för att få den installerad." -#: lib/config.php:457 +#: lib/config.php:465 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 "Varning: Stöd för FTP i PHP är inte aktiverat eller installerat. Montering av FTP-delningar är inte möjligt. Kontakta din systemadministratör för att få det installerat." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index ceb1560879..b0e25cc1df 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -33,7 +33,7 @@ msgstr "Kunde inte återställa %s" msgid "Error" msgstr "Fel" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "återställd" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index bcd21449c6..8849d9cd23 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -74,27 +74,27 @@ msgstr "webbtjänster under din kontroll" msgid "cannot open \"%s\"" msgstr "Kan inte öppna \"%s\"" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "Nerladdning av ZIP är avstängd." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Filer laddas ner en åt gången." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Tillbaka till Filer" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Valda filer är för stora för att skapa zip-fil." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Ladda ner filerna i mindre bitar, separat eller fråga din administratör." +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -137,17 +137,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "Appen kan inte installeras eftersom att den innehåller etiketten true vilket inte är tillåtet för icke inkluderade appar" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Appen kan inte installeras eftersom versionen i info.xml inte är samma som rapporteras från app store" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "Appens mapp finns redan" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Kan inte skapa appens mapp. Var god åtgärda rättigheterna. %s" @@ -272,13 +272,13 @@ msgstr "Ange ett användarnamn för administratören." msgid "Set an admin password." msgstr "Ange ett administratörslösenord." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din webbserver är inte korrekt konfigurerad för att tillåta filsynkronisering eftersom WebDAV inte verkar fungera." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Var god kontrollera installationsguiden." @@ -336,6 +336,6 @@ msgstr "förra året" msgid "years ago" msgstr "år sedan" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Orsakad av:" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index b205e52c30..6455564d8b 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 6b04d33acf..a5162828b3 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index 9bf0a5cd11..40242f9323 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-30 03:32-0400\n" -"PO-Revision-Date: 2013-10-30 07:32+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -276,12 +276,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:690 -#: js/share.js:702 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:730 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -301,115 +301,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:272 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:275 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:305 js/share.js:342 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:316 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:358 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:380 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:388 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:391 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:393 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:396 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:399 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:402 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:405 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:447 js/share.js:677 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:690 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:702 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:717 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:728 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:752 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -579,14 +579,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -733,11 +731,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po index 2c29518583..09d3e0a5a8 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-03 17:38+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:27 +#: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:127 +#: ajax/newfile.php:128 msgid "Error when creating the file" msgstr "" @@ -114,15 +114,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:153 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:143 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" @@ -142,24 +142,24 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:345 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:437 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:519 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:524 js/filelist.js:364 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:526 js/filelist.js:366 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,104 +183,108 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:392 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:582 js/filelist.js:649 js/files.js:587 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:583 js/filelist.js:650 js/files.js:593 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:590 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:793 js/filelist.js:831 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:34 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:46 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:50 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:63 +#: js/files.js:110 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:67 +#: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:71 +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:302 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error" msgstr "" -#: js/files.js:569 templates/index.php:56 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:570 templates/index.php:68 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:571 templates/index.php:70 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index f3230ae400..213951f61b 100644 --- a/l10n/sw_KE/lib.po +++ b/l10n/sw_KE/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-17 13:47-0400\n" -"PO-Revision-Date: 2013-10-17 17:47+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -24,31 +24,31 @@ msgid "" " of ownCloud." msgstr "" -#: private/app.php:254 +#: private/app.php:255 msgid "No app name specified" msgstr "" -#: private/app.php:359 +#: private/app.php:360 msgid "Help" msgstr "" -#: private/app.php:372 +#: private/app.php:373 msgid "Personal" msgstr "" -#: private/app.php:383 +#: private/app.php:384 msgid "Settings" msgstr "" -#: private/app.php:395 +#: private/app.php:396 msgid "Users" msgstr "" -#: private/app.php:408 +#: private/app.php:409 msgid "Admin" msgstr "" -#: private/app.php:872 +#: private/app.php:873 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -284,54 +284,54 @@ msgstr "" msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:122 +#: private/template/functions.php:130 msgid "seconds ago" msgstr "" -#: private/template/functions.php:123 +#: private/template/functions.php:131 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:124 +#: private/template/functions.php:132 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:125 +#: private/template/functions.php:133 msgid "today" msgstr "" -#: private/template/functions.php:126 +#: private/template/functions.php:134 msgid "yesterday" msgstr "" -#: private/template/functions.php:128 +#: private/template/functions.php:136 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:130 +#: private/template/functions.php:138 msgid "last month" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:139 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:141 msgid "last year" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:142 msgid "years ago" msgstr "" -#: private/template.php:297 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 762d8faf17..9d87e75723 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -276,12 +276,12 @@ msgstr "" msgid "Share" msgstr "பகிர்வு" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "வழு" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "பகிரும் போதான வழு" @@ -301,115 +301,115 @@ msgstr "உங்களுடனும் குழுவுக்கிடை msgid "Shared with you by {owner}" msgstr "உங்களுடன் பகிரப்பட்டுள்ளது {உரிமையாளர்}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "கடவுச்சொல்லை பாதுகாத்தல்" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "கடவுச்சொல்" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "காலாவதி தேதியை குறிப்பிடுக" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "காலவதியாகும் திகதி" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "மின்னஞ்சலினூடான பகிர்வு: " -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "நபர்கள் யாரும் இல்லை" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "குழு" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "மீள்பகிர்வதற்கு அனுமதி இல்லை " -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "{பயனாளர்} உடன் {உருப்படி} பகிரப்பட்டுள்ளது" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "பகிரப்படாதது" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "தொகுக்க முடியும்" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "கட்டுப்பாடான அணுகல்" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "உருவவாக்கல்" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "இற்றைப்படுத்தல்" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "நீக்குக" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "பகிர்தல்" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "கடவுச்சொல் பாதுகாக்கப்பட்டது" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடாமைக்கான வழு" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடுவதில் வழு" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "எச்சரிக்கை" @@ -579,14 +579,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -733,11 +731,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 9c650339e6..2cdcbf30f2 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -155,11 +155,11 @@ msgstr "கோப்பு பதிவேற்றம் செயல்பா msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} ஏற்கனவே உள்ளது" @@ -183,39 +183,43 @@ msgstr "" msgid "Rename" msgstr "பெயர்மாற்றம்" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "நிலுவையிலுள்ள" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ஆனது {old_name} இனால் மாற்றப்பட்டது" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "முன் செயல் நீக்கம் " -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 2f3a6e88b5..cffd95fe90 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "தயவுசெய்து ஒரு செல்லுபடிய msgid "Error configuring Google Drive storage" msgstr "Google இயக்க சேமிப்பகத்தை தகமைப்பதில் வழு" -#: lib/config.php:453 +#: lib/config.php:461 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:457 +#: lib/config.php:465 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:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 770827b9b9..357812b351 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -31,7 +31,7 @@ msgstr "" msgid "Error" msgstr "வழு" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 621fc79d7c..89caac8deb 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "வலைய சேவைகள் உங்களுடைய கட் msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "வீசொலிப் பூட்டு பதிவிறக்கம் நிறுத்தப்பட்டுள்ளது." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "கோப்புகள்ஒன்றன் பின் ஒன்றாக பதிவிறக்கப்படவேண்டும்." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "கோப்புகளுக்கு செல்க" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "வீ சொலிக் கோப்புகளை உருவாக்குவதற்கு தெரிவுசெய்யப்பட்ட கோப்புகள் மிகப்பெரியவை" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -332,6 +332,6 @@ msgstr "கடந்த வருடம்" msgid "years ago" msgstr "வருடங்களுக்கு முன்" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 82d8931bc1..9f5aab2470 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index a8ce79802a..8893a6e0f9 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/te/core.po b/l10n/te/core.po index cb616d262b..54e4d2e43c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -276,12 +276,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "పొరపాటు" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -301,115 +301,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "సంకేతపదం" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "పంపించు" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "కాలం చెల్లు తేదీ" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "తొలగించు" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -579,14 +579,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -733,11 +731,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/te/files.po b/l10n/te/files.po index 9a159c1bf8..85fdb46c56 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -155,11 +155,11 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,39 +183,43 @@ msgstr "శాశ్వతంగా తొలగించు" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 41c836e21d..8cd62f867f 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: lib/config.php:461 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:457 +#: lib/config.php:465 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:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index 0d93ad1234..a8ea979cc3 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -31,7 +31,7 @@ msgstr "" msgid "Error" msgstr "పొరపాటు" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 2aeb9ed2d0..48589c9c61 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -332,6 +332,6 @@ msgstr "పోయిన సంవత్సరం" msgid "years ago" msgstr "సంవత్సరాల క్రితం" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 06237faff1..0db9956552 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index 7f9fa6f55b..15b8f7c024 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 45cc919134..829ce126cb 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -277,12 +277,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -302,115 +302,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -580,14 +580,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -734,11 +732,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 1adf4db9f8..a54dca42a0 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -183,7 +183,7 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:863 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" @@ -199,23 +199,27 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:584 js/filelist.js:658 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:585 js/filelist.js:659 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:592 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:802 js/filelist.js:840 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index b9c24d298b..70b2c4e0c3 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\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 44f800ec2c..c35a442325 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\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 92a9317d73..f556c6fb4a 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\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 2a49666231..32ee60833e 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\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 fcb37243a6..e389e280ef 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\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 ad700d71c1..a427c76d93 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -71,25 +71,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -134,17 +134,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 53897145c3..ea3db0275f 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -71,25 +71,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: files.php:226 +#: files.php:228 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: files.php:230 files.php:258 msgid "Back to Files" msgstr "" -#: files.php:253 +#: files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -134,17 +134,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: installer.php:152 +#: installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:162 +#: installer.php:169 msgid "App directory already exists" msgstr "" -#: installer.php:175 +#: installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 195c49a533..5c2b075527 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\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 9288bf6f24..839b301e42 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\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 c559944905..5f403c94da 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\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 ffb0c864ab..07dc3d732b 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -271,12 +271,12 @@ msgstr "แชร์แล้ว" msgid "Share" msgstr "แชร์" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "ข้อผิดพลาด" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล" @@ -296,115 +296,115 @@ msgstr "ได้แชร์ให้กับคุณ และกลุ่ msgid "Shared with you by {owner}" msgstr "ถูกแชร์ให้กับคุณโดย {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "รหัสผ่าน" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "ส่งลิงก์ให้ทางอีเมล" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "ส่ง" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "กำหนดวันที่หมดอายุ" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "วันที่หมดอายุ" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "แชร์ผ่านทางอีเมล" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "ไม่พบบุคคลที่ต้องการ" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "กลุ่มผู้ใช้งาน" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "ไม่อนุญาตให้แชร์ข้อมูลซ้ำได้" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "ได้แชร์ {item} ให้กับ {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "ยกเลิกการแชร์" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "สามารถแก้ไข" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "ระดับควบคุมการเข้าใช้งาน" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "สร้าง" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "อัพเดท" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "ลบ" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "แชร์" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "เกิดข้อผิดพลาดในการยกเลิกการตั้งค่าวันที่หมดอายุ" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "เกิดข้อผิดพลาดในการตั้งค่าวันที่หมดอายุ" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "กำลังส่ง..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "ส่งอีเมล์แล้ว" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "คำเตือน" @@ -574,14 +574,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -728,11 +726,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 273556bb7a..cc42c88711 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -155,11 +155,11 @@ msgstr "การอัพโหลดไฟล์กำลังอยู่ใ msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} มีอยู่แล้วในระบบ" @@ -183,37 +183,41 @@ msgstr "" msgid "Rename" msgstr "เปลี่ยนชื่อ" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "แทนที่ {new_name} ด้วย {old_name} แล้ว" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "เลิกทำ" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index cbfb20ddd2..eef3790b5b 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "กรุณากรอกรหัส app key ของ Dropbox แล msgid "Error configuring Google Drive storage" msgstr "เกิดข้อผิดพลาดในการกำหนดค่าการจัดเก็บข้อมูลในพื้นที่ของ Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "คำเตือน: \"smbclient\" ยังไม่ได้ถูกติดตั้ง. การชี้ CIFS/SMB เพื่อแชร์ข้อมูลไม่สามารถกระทำได้ กรุณาสอบถามข้อมูลเพิ่มเติมจากผู้ดูแลระบบเพื่อติดตั้ง." -#: lib/config.php:457 +#: lib/config.php:465 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 "คำเตือน: การสนับสนุนการใช้งาน FTP ในภาษา PHP ยังไม่ได้ถูกเปิดใช้งานหรือถูกติดตั้ง. การชี้ FTP เพื่อแชร์ข้อมูลไม่สามารถดำเนินการได้ กรุณาสอบถามข้อมูลเพิ่มเติมจากผู้ดูแลระบบเพื่อติดตั้ง" -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index bf17554c81..658dfef49d 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -31,7 +31,7 @@ msgstr "" msgid "Error" msgstr "ข้อผิดพลาด" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 6bbf0d91d8..7da12a80c0 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "เว็บเซอร์วิสที่คุณควบคุม msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "คุณสมบัติการดาวน์โหลด zip ถูกปิดการใช้งานไว้" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "ไฟล์สามารถดาวน์โหลดได้ทีละครั้งเท่านั้น" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "กลับไปที่ไฟล์" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "ไฟล์ที่เลือกมีขนาดใหญ่เกินกว่าที่จะสร้างเป็นไฟล์ zip" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -328,6 +328,6 @@ msgstr "ปีที่แล้ว" msgid "years ago" msgstr "ปี ที่ผ่านมา" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index cfca481eef..631b48e86b 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index dd9d167f18..178fcf9a45 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 9a7846e960..473fc8c217 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -280,12 +280,12 @@ msgstr "Paylaşılan" msgid "Share" msgstr "Paylaş" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Hata" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Paylaşım sırasında hata " @@ -305,115 +305,115 @@ msgstr " {owner} tarafından sizinle ve {group} ile paylaştırılmış" msgid "Shared with you by {owner}" msgstr "{owner} trafından sizinle paylaştırıldı" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "Kullanıcı veya grup ile paylaş.." -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "Paylaşma bağlantısı" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Parola koruması" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Parola" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "Herkes tarafından yüklemeye izin ver" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Bağlantıyı e-posta ile gönder" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Gönder" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Son kullanma tarihini ayarla" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Son kullanım tarihi" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "E-posta ile paylaş" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Kişi bulunamadı" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "grup" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Tekrar paylaşmaya izin verilmiyor" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr " {item} içinde {user} ile paylaşılanlarlar" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Paylaşılmayan" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "e-posta ile bildir" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "düzenleyebilir" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "erişim kontrolü" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "oluştur" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "güncelle" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "sil" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "paylaş" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Parola korumalı" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Geçerlilik tarihi tanımlama kaldırma hatası" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Geçerlilik tarihi tanımlama hatası" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Gönderiliyor..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "E-posta gönderildi" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Uyarı" @@ -583,14 +583,12 @@ msgid "" "\n" msgstr "Merhaba,\n\nSadece %s sizinle %s paylaşımını yaptığını bildiriyoruz.\nBuradan bakabilirsiniz: %s\n\n" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" -msgstr "Paylaşım %s tarihinde bitecektir.\n\n" +msgid "The share will expire on %s." +msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "Şerefe!" @@ -737,11 +735,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "Merhaba,

%s sizinle »%s« paylaşımında bulundu.
Paylaşımı gör!

İyi günler!" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "Bu paylaşım %s tarihinde dolacaktır.

" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 27fff0bd68..4ac71b235b 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" -"Last-Translator: ismail yenigül \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -159,11 +159,11 @@ msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işlem msgid "URL cannot be empty" msgstr "URL boş olamaz" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Ev klasöründeki 'Paylaşılan', ayrılmış bir dosya adıdır" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} zaten mevcut" @@ -187,39 +187,43 @@ msgstr "Kalıcı olarak sil" msgid "Rename" msgstr "İsim değiştir." -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Bekliyor" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "Dosya adlandırılamadı" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ismi {old_name} ile değiştirildi" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "geri al" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dizin" msgstr[1] "%n dizin" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n dosya" msgstr[1] "%n dosya" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} ve {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n dosya yükleniyor" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 27e114d101..849b546954 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.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-10-27 02:28-0400\n" -"PO-Revision-Date: 2013-10-21 18:50+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -38,20 +38,20 @@ msgstr "Lütfen Dropbox app key ve secret temin ediniz" msgid "Error configuring Google Drive storage" msgstr "Google Drive depo yapılandırma hatası" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Uyarı: \"smbclient\" kurulu değil. CIFS/SMB paylaşımlarını bağlama işlemi mümkün olmadı. Lütfen kurulumu için sistem yöneticinize danışın." -#: lib/config.php:457 +#: lib/config.php:465 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 "Uyarı: PHP içerisinde FTP desteği etkin veya yüklü değil. FTP paylaşımlarını bağlama işlemi mümkün olmadı. Lütfen kurulumu için sistem yöneticinize danışın." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index 122f62c6bf..261cd7d30c 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.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-10-27 02:28-0400\n" -"PO-Revision-Date: 2013-10-21 18:00+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "%s eri yüklenemedi" msgid "Error" msgstr "Hata" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "geri yüklendi" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 7d4f7f1a62..29da329bfa 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -73,27 +73,27 @@ msgstr "Bilgileriniz güvenli ve şifreli" msgid "cannot open \"%s\"" msgstr "\"%s\" açılamıyor" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "ZIP indirmeleri kapatılmıştır." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Dosyaların birer birer indirilmesi gerekmektedir." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Dosyalara dön" -#: private/files.php:253 +#: private/files.php:255 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." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Dosyaları ayrı ayrı, küçük parçalar halinde indirin ya da yöneticinizden yardım isteyin. " +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -136,17 +136,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "Uygulama kurulamıyor. Çünkü \"non shipped\" uygulamalar için true tag içermektedir." -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Uygulama kurulamıyor çünkü info.xml/version ile uygulama marketde belirtilen sürüm aynı değil." -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "App dizini zaten mevcut" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "app dizini oluşturulamıyor. Lütfen izinleri düzeltin. %s" @@ -271,13 +271,13 @@ msgstr "Bir adi kullanici vermek. " msgid "Set an admin password." msgstr "Parola yonetici birlemek. " -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Lütfen kurulum kılavuzlarını iki kez kontrol edin." @@ -335,6 +335,6 @@ msgstr "geçen yıl" msgid "years ago" msgstr "yıl önce" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "Neden olan:" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 65f3662774..9e19c79583 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 50f27508a2..2cf78feef2 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 14:58+0000\n" +"Last-Translator: volkangezer \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" @@ -91,15 +91,15 @@ msgstr "Hata" #: js/settings.js:674 msgid "Configuration OK" -msgstr "" +msgstr "Yapılandırma tamam" #: js/settings.js:683 msgid "Configuration incorrect" -msgstr "" +msgstr "Yapılandırma geçersiz" #: js/settings.js:692 msgid "Configuration incomplete" -msgstr "" +msgstr "Yapılandırma tamamlanmamış" #: js/settings.js:709 js/settings.js:718 msgid "Select groups" diff --git a/l10n/tzm/core.po b/l10n/tzm/core.po index fb1ee2be48..d561811c9d 100644 --- a/l10n/tzm/core.po +++ b/l10n/tzm/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-02 11:38+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -276,12 +276,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -301,115 +301,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -579,14 +579,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -733,11 +731,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/tzm/files.po b/l10n/tzm/files.po index ea200b5377..ceca3a8769 100644 --- a/l10n/tzm/files.po +++ b/l10n/tzm/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-03 17:38+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:27 +#: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:127 +#: ajax/newfile.php:128 msgid "Error when creating the file" msgstr "" @@ -114,15 +114,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:153 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:143 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" @@ -142,24 +142,24 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:345 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:437 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:519 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:524 js/filelist.js:364 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:526 js/filelist.js:366 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,104 +183,108 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:392 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:582 js/filelist.js:649 js/files.js:587 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:583 js/filelist.js:650 js/files.js:593 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:590 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:793 js/filelist.js:831 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:34 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:46 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:50 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:63 +#: js/files.js:110 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:67 +#: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:71 +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:302 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error" msgstr "" -#: js/files.js:569 templates/index.php:56 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:570 templates/index.php:68 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:571 templates/index.php:70 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" diff --git a/l10n/tzm/lib.po b/l10n/tzm/lib.po index 54ecccfd7d..b9e60cfdc0 100644 --- a/l10n/tzm/lib.po +++ b/l10n/tzm/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-02 11:38+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index b66f4de055..e1c5feef26 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -271,12 +271,12 @@ msgstr "" msgid "Share" msgstr "ھەمبەھىر" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "خاتالىق" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -296,115 +296,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "ئىم" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "يوللا" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "گۇرۇپپا" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "ھەمبەھىرلىمە" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "ئۆچۈر" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "ھەمبەھىر" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "ئاگاھلاندۇرۇش" @@ -574,14 +574,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -728,11 +726,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 8500604496..c5193ecfe4 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -155,11 +155,11 @@ msgstr "ھۆججەت يۈكلەش مەشغۇلاتى ئېلىپ بېرىلىۋا msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} مەۋجۇت" @@ -183,37 +183,41 @@ msgstr "مەڭگۈلۈك ئۆچۈر" msgid "Rename" msgstr "ئات ئۆزگەرت" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "كۈتۈۋاتىدۇ" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "يېنىۋال" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index 0b0070f309..013bb4e3bb 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -37,20 +37,20 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: lib/config.php:461 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:457 +#: lib/config.php:465 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:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 5b6c67d9e3..47ee287491 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -31,7 +31,7 @@ msgstr "" msgid "Error" msgstr "خاتالىق" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 10087c2846..6568520d29 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "سىزنىڭ تور مۇلازىمېتىرىڭىز ھۆججەت قەدەمداشلاشقا يول قويىدىغان قىلىپ توغرا تەڭشەلمەپتۇ، چۈنكى WebDAV نىڭ ئېغىزى بۇزۇلغاندەك تۇرىدۇ." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -328,6 +328,6 @@ msgstr "" msgid "years ago" msgstr "" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 9e62fa563c..0675d1da83 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index e951706195..a701aabaa5 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 477a1cd772..4a814123b8 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -281,12 +281,12 @@ msgstr "Опубліковано" msgid "Share" msgstr "Поділитися" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Помилка" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Помилка під час публікації" @@ -306,115 +306,115 @@ msgstr " {owner} опублікував для Вас та для групи {gr msgid "Shared with you by {owner}" msgstr "{owner} опублікував для Вас" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Захистити паролем" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Пароль" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Ел. пошта належить Пану" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Надіслати" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Встановити термін дії" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Термін дії" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Опублікувати через Ел. пошту:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Жодної людини не знайдено" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "група" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Пере-публікація не дозволяється" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Опубліковано {item} для {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Закрити доступ" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "може редагувати" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "контроль доступу" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "створити" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "оновити" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "видалити" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "опублікувати" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Захищено паролем" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Помилка при відміні терміна дії" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Помилка при встановленні терміна дії" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Надсилання..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Ел. пошта надіслана" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Попередження" @@ -584,14 +584,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -738,11 +736,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/uk/files.po b/l10n/uk/files.po index d297453d15..457d0880f5 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" -"Last-Translator: zubr139 \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -156,11 +156,11 @@ msgstr "Виконується завантаження файлу. Закрит msgid "URL cannot be empty" msgstr "URL не може бути порожнім" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} вже існує" @@ -184,41 +184,45 @@ msgstr "Видалити назавжди" msgid "Rename" msgstr "Перейменувати" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Очікування" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "Неможливо перейменувати файл" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "замінено {new_name} на {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "відмінити" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n тека" msgstr[1] "%n тека" msgstr[2] "%n теки" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n файл" msgstr[1] "%n файлів" msgstr[2] "%n файли" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 04a0714762..09086c8728 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: Soul Kim \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -38,20 +38,20 @@ msgstr "Будь ласка, надайте дійсний ключ та пар msgid "Error configuring Google Drive storage" msgstr "Помилка при налаштуванні сховища Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Попередження: Клієнт \"smbclient\" не встановлено. Під'єднанатися до CIFS/SMB тек неможливо. Попрохайте системного адміністратора встановити його." -#: lib/config.php:457 +#: lib/config.php:465 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 "Попередження: Підтримка FTP в PHP не увімкнута чи не встановлена. Під'єднанатися до FTP тек неможливо. Попрохайте системного адміністратора встановити її." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 2de60eeacd..786eb3db30 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "Неможливо відновити %s" msgid "Error" msgstr "Помилка" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "відновлено" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index fe69809afb..5df09e88f1 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "підконтрольні Вам веб-сервіси" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "ZIP завантаження вимкнено." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Файли повинні бути завантаженні послідовно." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Повернутися до файлів" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Вибрані фали завеликі для генерування zip файлу." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "Встановіть ім'я адміністратора." msgid "Set an admin password." msgstr "Встановіть пароль адміністратора." -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш Web-сервер ще не налаштований належним чином для того, щоб дозволити синхронізацію файлів, через те що інтерфейс WebDAV, здається, зламаний." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "Будь ласка, перевірте інструкції по встановленню." @@ -336,6 +336,6 @@ msgstr "минулого року" msgid "years ago" msgstr "роки тому" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 88310ce37d..874b63ae57 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index fd57460116..5b5f1b2b93 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index a5cada0e8a..f924398729 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -276,12 +276,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "ایرر" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "شئیرنگ کے دوران ایرر" @@ -301,115 +301,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "پاسورڈ سے محفوظ کریں" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "پاسورڈ" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "تاریخ معیاد سیٹ کریں" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "تاریخ معیاد" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "کوئی لوگ نہیں ملے۔" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "دوبارہ شئیر کرنے کی اجازت نہیں" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "شئیرنگ ختم کریں" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "ایڈٹ کر سکے" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "اسیس کنٹرول" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "نیا بنائیں" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "اپ ڈیٹ" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "ختم کریں" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "شئیر کریں" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "پاسورڈ سے محفوظ کیا گیا ہے" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -579,14 +579,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -733,11 +731,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 080601de87..63c813d6b6 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-03 17:38+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:27 +#: ajax/newfile.php:56 js/files.js:74 msgid "File name cannot be empty." msgstr "" @@ -51,7 +51,7 @@ msgstr "" msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:127 +#: ajax/newfile.php:128 msgid "Error when creating the file" msgstr "" @@ -114,15 +114,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:153 +#: ajax/upload.php:127 ajax/upload.php:154 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:143 +#: ajax/upload.php:144 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:170 +#: ajax/upload.php:172 msgid "Invalid directory." msgstr "" @@ -142,24 +142,24 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:345 +#: js/file-upload.js:344 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:437 +#: js/file-upload.js:436 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:520 +#: js/file-upload.js:519 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:524 js/filelist.js:364 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:526 js/filelist.js:366 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,104 +183,108 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:854 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:392 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:511 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:582 js/filelist.js:649 js/files.js:587 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:583 js/filelist.js:650 js/files.js:593 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:590 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:793 js/filelist.js:831 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:25 +#: js/files.js:72 msgid "'.' is an invalid file name." msgstr "" -#: js/files.js:34 +#: js/files.js:81 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: js/files.js:46 +#: js/files.js:93 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:50 +#: js/files.js:97 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:63 +#: js/files.js:110 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:67 +#: js/files.js:114 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:71 +#: js/files.js:118 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:302 +#: js/files.js:349 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error moving file" msgstr "" -#: js/files.js:514 js/files.js:552 +#: js/files.js:558 js/files.js:596 msgid "Error" msgstr "ایرر" -#: js/files.js:569 templates/index.php:56 +#: js/files.js:613 templates/index.php:56 msgid "Name" msgstr "" -#: js/files.js:570 templates/index.php:68 +#: js/files.js:614 templates/index.php:68 msgid "Size" msgstr "" -#: js/files.js:571 templates/index.php:70 +#: js/files.js:615 templates/index.php:70 msgid "Modified" msgstr "" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 2f0b1d1abf..6399726397 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "آپ کے اختیار میں ویب سروسیز" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -332,6 +332,6 @@ msgstr "" msgid "years ago" msgstr "" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/uz/core.po b/l10n/uz/core.po index 551a6f43ce..43f4bf98d5 100644 --- a/l10n/uz/core.po +++ b/l10n/uz/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-09 01:44-0500\n" -"PO-Revision-Date: 2013-11-07 08:41+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -271,12 +271,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "" @@ -296,115 +296,115 @@ msgstr "" msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -574,14 +574,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -728,11 +726,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/uz/files.po b/l10n/uz/files.po index 704307b907..057338298f 100644 --- a/l10n/uz/files.po +++ b/l10n/uz/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-09 01:44-0500\n" -"PO-Revision-Date: 2013-11-07 08:41+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -155,11 +155,11 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,37 +183,41 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/uz/lib.po b/l10n/uz/lib.po index 1d55cef596..d013e234e1 100644 --- a/l10n/uz/lib.po +++ b/l10n/uz/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-09 01:44-0500\n" -"PO-Revision-Date: 2013-11-07 08:41+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index b8032cd753..2c9e33d17b 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -272,12 +272,12 @@ msgstr "Được chia sẻ" msgid "Share" msgstr "Chia sẻ" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "Lỗi" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "Lỗi trong quá trình chia sẻ" @@ -297,115 +297,115 @@ msgstr "Đã được chia sẽ với bạn và nhóm {group} bởi {owner}" msgid "Shared with you by {owner}" msgstr "Đã được chia sẽ bởi {owner}" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "Mật khẩu bảo vệ" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "Mật khẩu" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "Liên kết email tới cá nhân" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "Gởi" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "Đặt ngày kết thúc" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "Ngày kết thúc" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "Chia sẻ thông qua email" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "Không tìm thấy người nào" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "nhóm" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "Chia sẻ lại không được cho phép" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "Đã được chia sẽ trong {item} với {user}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "Bỏ chia sẻ" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "có thể chỉnh sửa" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "quản lý truy cập" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "tạo" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "cập nhật" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "xóa" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "chia sẻ" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "Mật khẩu bảo vệ" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "Lỗi không thiết lập ngày kết thúc" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "Lỗi cấu hình ngày kết thúc" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "Đang gởi ..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Email đã được gửi" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "Cảnh báo" @@ -575,14 +575,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -729,11 +727,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 78edaf1cc0..617438e88b 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -156,11 +156,11 @@ msgstr "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi t msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} đã tồn tại" @@ -184,37 +184,41 @@ msgstr "Xóa vĩnh vễn" msgid "Rename" msgstr "Sửa tên" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "Đang chờ" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "đã thay thế {new_name} bằng {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "lùi lại" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index a05ce08216..fed63a6861 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+0000\n" "Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -38,20 +38,20 @@ msgstr "Xin vui lòng cung cấp một ứng dụng Dropbox hợp lệ và mã b msgid "Error configuring Google Drive storage" msgstr "Lỗi cấu hình lưu trữ Google Drive" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "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ó." -#: lib/config.php:457 +#: lib/config.php:465 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 "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ó." -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index dec54c2a7a..92e604b2a5 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -31,7 +31,7 @@ msgstr "Không thể khôi phục %s" msgid "Error" msgstr "Lỗi" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 4e07bc8526..43f748a621 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "dịch vụ web dưới sự kiểm soát của bạn" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "Tải về ZIP đã bị tắt." -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "Tập tin cần phải được tải về từng người một." -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "Trở lại tập tin" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "Tập tin được chọn quá lớn để tạo tập tin ZIP." -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -328,6 +328,6 @@ msgstr "năm trước" msgid "years ago" msgstr "năm trước" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 3c50f8716f..60c424af43 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index 3f9aea99b6..4f1b7961a9 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 0edf746a2a..b157d75548 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -275,12 +275,12 @@ msgstr "已共享" msgid "Share" msgstr "分享" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "错误" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "共享时出错" @@ -300,115 +300,115 @@ msgstr "{owner} 共享给您及 {group} 组" msgid "Shared with you by {owner}" msgstr "{owner} 与您共享" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "密码保护" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "密码" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "允许公开上传" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "发送链接到个人" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "发送" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "设置过期日期" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "过期日期" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "通过Email共享" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "未找到此人" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "组" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "不允许二次共享" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "在 {item} 与 {user} 共享。" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "取消共享" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "可以修改" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "访问控制" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "创建" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "更新" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "删除" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "共享" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "密码已受保护" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "取消设置过期日期时出错" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "设置过期日期时出错" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "正在发送..." -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "邮件已发送" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "警告" @@ -578,14 +578,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -732,11 +730,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 2d79d408f7..e0a975a63f 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -158,11 +158,11 @@ msgstr "文件正在上传中。现在离开此页会导致上传动作被取消 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} 已存在" @@ -186,37 +186,41 @@ msgstr "永久删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "等待" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "已将 {old_name}替换成 {new_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "撤销" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 文件夹" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n个文件" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 240f27b238..935872a3fc 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "请提供有效的Dropbox应用key和secret" msgid "Error configuring Google Drive storage" msgstr "配置Google Drive存储时出错" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "警告:“smbclient” 尚未安装。CIFS/SMB 分享挂载无法实现。请咨询系统管理员进行安装。" -#: lib/config.php:457 +#: lib/config.php:465 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 "警告:PHP中尚未启用或安装FTP。FTP 分享挂载无法实现。请咨询系统管理员进行安装。" -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 62a8ff751d..07256e5e8c 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "无法恢复%s" msgid "Error" msgstr "错误" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "已恢复" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 4ba1f2321d..72e710ab4f 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -73,25 +73,25 @@ msgstr "您控制的web服务" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "ZIP 下载已经关闭" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "需要逐一下载文件" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "回到文件" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "选择的文件太大,无法生成 zip 文件。" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -136,17 +136,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -271,13 +271,13 @@ msgstr "请设置一个管理员用户名。" msgid "Set an admin password." msgstr "请设置一个管理员密码。" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏." -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "请认真检查安装指南." @@ -331,6 +331,6 @@ msgstr "去年" msgid "years ago" msgstr "年前" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 62105026a1..4287fbd0fd 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 87c39010e9..9bc79cc636 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index aad9f6c9fe..9734c1db77 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -271,12 +271,12 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "錯誤" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -296,115 +296,115 @@ msgstr "{owner}與你及群組的分享" msgid "Shared with you by {owner}" msgstr "{owner}與你的分享" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "密碼保護" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "密碼" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "傳送" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "設定分享期限" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "分享期限" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "以電郵分享" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "找不到" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "取消分享" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "新增" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "更新" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "刪除" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "分享" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "密碼保護" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "傳送中" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "郵件已傳" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "" @@ -574,14 +574,12 @@ msgid "" "\n" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" +msgid "The share will expire on %s." msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "" @@ -728,11 +726,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 350b57efaa..4b8c237971 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -155,11 +155,11 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "" @@ -183,37 +183,41 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index 3cd38cee71..5bd454412d 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -37,20 +37,20 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: lib/config.php:461 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:457 +#: lib/config.php:465 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:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 962276b300..173849a4d3 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -31,7 +31,7 @@ msgstr "" msgid "Error" msgstr "錯誤" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 0f6a5adbf8..2909df350a 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -70,25 +70,25 @@ msgstr "" msgid "cannot open \"%s\"" msgstr "" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" @@ -133,17 +133,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "" @@ -328,6 +328,6 @@ msgstr "" msgid "years ago" msgstr "" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index b3871b71b9..b29d607695 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 9925f221e6..af9dc3b465 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 2039a265c1..e61c6cb120 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -273,12 +273,12 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:692 -#: js/share.js:704 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 +#: js/share.js:719 msgid "Error" msgstr "錯誤" -#: js/share.js:160 js/share.js:732 +#: js/share.js:160 js/share.js:747 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -298,115 +298,115 @@ msgstr "由 {owner} 分享給您和 {group}" msgid "Shared with you by {owner}" msgstr "{owner} 已經和您分享" -#: js/share.js:212 +#: js/share.js:213 msgid "Share with user or group …" msgstr "與用戶或群組分享" -#: js/share.js:218 +#: js/share.js:219 msgid "Share link" msgstr "分享連結" -#: js/share.js:221 +#: js/share.js:222 msgid "Password protect" msgstr "密碼保護" -#: js/share.js:223 templates/installation.php:57 templates/login.php:32 +#: js/share.js:224 templates/installation.php:57 templates/login.php:32 msgid "Password" msgstr "密碼" -#: js/share.js:228 +#: js/share.js:229 msgid "Allow Public Upload" msgstr "允許任何人上傳" -#: js/share.js:232 +#: js/share.js:233 msgid "Email link to person" msgstr "將連結 email 給別人" -#: js/share.js:233 +#: js/share.js:234 msgid "Send" msgstr "寄出" -#: js/share.js:238 +#: js/share.js:239 msgid "Set expiration date" msgstr "指定到期日" -#: js/share.js:239 +#: js/share.js:240 msgid "Expiration date" msgstr "到期日" -#: js/share.js:274 +#: js/share.js:275 msgid "Share via email:" msgstr "透過電子郵件分享:" -#: js/share.js:277 +#: js/share.js:278 msgid "No people found" msgstr "沒有找到任何人" -#: js/share.js:307 js/share.js:344 +#: js/share.js:322 js/share.js:359 msgid "group" msgstr "群組" -#: js/share.js:318 +#: js/share.js:333 msgid "Resharing is not allowed" msgstr "不允許重新分享" -#: js/share.js:360 +#: js/share.js:375 msgid "Shared in {item} with {user}" msgstr "已和 {user} 分享 {item}" -#: js/share.js:382 +#: js/share.js:397 msgid "Unshare" msgstr "取消分享" -#: js/share.js:390 +#: js/share.js:405 msgid "notify by email" msgstr "以 email 通知" -#: js/share.js:393 +#: js/share.js:408 msgid "can edit" msgstr "可編輯" -#: js/share.js:395 +#: js/share.js:410 msgid "access control" msgstr "存取控制" -#: js/share.js:398 +#: js/share.js:413 msgid "create" msgstr "建立" -#: js/share.js:401 +#: js/share.js:416 msgid "update" msgstr "更新" -#: js/share.js:404 +#: js/share.js:419 msgid "delete" msgstr "刪除" -#: js/share.js:407 +#: js/share.js:422 msgid "share" msgstr "分享" -#: js/share.js:449 js/share.js:679 +#: js/share.js:464 js/share.js:694 msgid "Password protected" msgstr "受密碼保護" -#: js/share.js:692 +#: js/share.js:707 msgid "Error unsetting expiration date" msgstr "取消到期日設定失敗" -#: js/share.js:704 +#: js/share.js:719 msgid "Error setting expiration date" msgstr "設定到期日發生錯誤" -#: js/share.js:719 +#: js/share.js:734 msgid "Sending ..." msgstr "正在傳送…" -#: js/share.js:730 +#: js/share.js:745 msgid "Email sent" msgstr "Email 已寄出" -#: js/share.js:754 +#: js/share.js:769 msgid "Warning" msgstr "警告" @@ -576,14 +576,12 @@ msgid "" "\n" msgstr "嗨,\n\n%s 和你分享了 %s ,到這裡看它:%s\n" -#: templates/altmail.php:4 +#: templates/altmail.php:4 templates/mail.php:17 #, php-format -msgid "" -"The share will expire on %s.\n" -"\n" -msgstr "分享將於 %s 過期\n" +msgid "The share will expire on %s." +msgstr "" -#: templates/altmail.php:6 templates/mail.php:19 +#: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" msgstr "太棒了!" @@ -730,11 +728,6 @@ msgid "" "href=\"%s\">View it!

" msgstr "嗨,

%s 和你分享了 %s ,到這裡看它

" -#: templates/mail.php:17 -#, php-format -msgid "The share will expire on %s.

" -msgstr "分享將於 %s 過期

" - #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 9404c1d53d..94fa43e3fd 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-11 05:45-0500\n" -"PO-Revision-Date: 2013-11-09 07:01+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -157,11 +157,11 @@ msgstr "檔案上傳中,離開此頁面將會取消上傳。" msgid "URL cannot be empty" msgstr "URL 不能留空" -#: js/file-upload.js:523 js/filelist.js:371 +#: js/file-upload.js:523 js/filelist.js:377 msgid "In the home folder 'Shared' is a reserved filename" msgstr "在家目錄中不能使用「共享」作為檔名" -#: js/file-upload.js:525 js/filelist.js:373 +#: js/file-upload.js:525 js/filelist.js:379 msgid "{new_name} already exists" msgstr "{new_name} 已經存在" @@ -185,37 +185,41 @@ msgstr "永久刪除" msgid "Rename" msgstr "重新命名" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:857 +#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:873 msgid "Pending" msgstr "等候中" -#: js/filelist.js:399 +#: js/filelist.js:405 msgid "Could not rename file" msgstr "無法重新命名" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "replaced {new_name} with {old_name}" msgstr "使用 {new_name} 取代 {old_name}" -#: js/filelist.js:518 +#: js/filelist.js:524 msgid "undo" msgstr "復原" -#: js/filelist.js:578 js/filelist.js:652 js/files.js:631 +#: js/filelist.js:576 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 個資料夾" -#: js/filelist.js:579 js/filelist.js:653 js/files.js:637 +#: js/filelist.js:595 js/filelist.js:669 js/files.js:637 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n 個檔案" -#: js/filelist.js:586 +#: js/filelist.js:602 msgid "{dirs} and {files}" msgstr "{dirs} 和 {files}" -#: js/filelist.js:796 js/filelist.js:834 +#: js/filelist.js:812 js/filelist.js:850 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n 個檔案正在上傳" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index eb02a27d71..16bf605635 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -38,20 +38,20 @@ msgstr "請提供有效的 Dropbox app key 和 app secret 。" msgid "Error configuring Google Drive storage" msgstr "設定 Google Drive 儲存時發生錯誤" -#: lib/config.php:453 +#: lib/config.php:461 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "警告:未安裝 \"smbclient\" ,因此無法掛載 CIFS/SMB 分享,請洽您的系統管理員將其安裝。" -#: lib/config.php:457 +#: lib/config.php:465 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 "警告:PHP 並未啓用 FTP 的支援,因此無法掛載 FTP 分享,請洽您的系統管理員將其安裝並啓用。" -#: lib/config.php:460 +#: lib/config.php:468 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 8f4bf86f67..77074528dd 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/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-10-16 00:26-0400\n" -"PO-Revision-Date: 2013-10-14 00:42+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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" @@ -32,7 +32,7 @@ msgstr "無法還原 %s" msgid "Error" msgstr "錯誤" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:815 lib/trashbin.php:817 msgid "restored" msgstr "已還原" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 075c16ef80..fe70bec8ba 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/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-10-29 07:28-0400\n" -"PO-Revision-Date: 2013-10-28 10:45+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-21 15:01+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" @@ -71,27 +71,27 @@ msgstr "由您控制的網路服務" msgid "cannot open \"%s\"" msgstr "無法開啓 %s" -#: private/files.php:226 +#: private/files.php:228 msgid "ZIP download is turned off." msgstr "ZIP 下載已關閉。" -#: private/files.php:227 +#: private/files.php:229 msgid "Files need to be downloaded one by one." msgstr "檔案需要逐一下載。" -#: private/files.php:228 private/files.php:256 +#: private/files.php:230 private/files.php:258 msgid "Back to Files" msgstr "回到檔案列表" -#: private/files.php:253 +#: private/files.php:255 msgid "Selected files too large to generate zip file." msgstr "選擇的檔案太大以致於無法產生壓縮檔。" -#: private/files.php:254 +#: private/files.php:256 msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " +"Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "以小分割下載您的檔案,請詢問您的系統管理員。" +msgstr "" #: private/installer.php:63 msgid "No source specified when installing app" @@ -134,17 +134,17 @@ msgid "" "which is not allowed for non shipped apps" msgstr "無法安裝應用程式,因為它包含了 true 標籤,在未發行的應用程式當中這是不允許的" -#: private/installer.php:152 +#: private/installer.php:159 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "無法安裝應用程式,因為它在 info.xml/version 宣告的版本與 app store 當中記載的版本不同" -#: private/installer.php:162 +#: private/installer.php:169 msgid "App directory already exists" msgstr "應用程式目錄已經存在" -#: private/installer.php:175 +#: private/installer.php:182 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "無法建立應用程式目錄,請檢查權限:%s" @@ -269,13 +269,13 @@ msgstr "設定管理員帳號。" msgid "Set an admin password." msgstr "設定管理員密碼。" -#: private/setup.php:184 +#: private/setup.php:195 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。" -#: private/setup.php:185 +#: private/setup.php:196 #, php-format msgid "Please double check the installation guides." msgstr "請參考安裝指南。" @@ -329,6 +329,6 @@ msgstr "去年" msgid "years ago" msgstr "幾年前" -#: private/template.php:297 public/util.php:103 +#: private/template.php:297 public/util.php:108 msgid "Caused by:" msgstr "原因:" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 2fb2282dcd..e454750b18 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:44+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_ldap.po b/l10n/zh_TW/user_ldap.po index 93d14fd4c6..71fffa41ac 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-16 03:54+0000\n" +"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"PO-Revision-Date: 2013-11-16 07:45+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/lib/l10n/ca.php b/lib/l10n/ca.php index f0cbe6a5a0..01457275cf 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Els fitxers s'han de baixar d'un en un.", "Back to Files" => "Torna a Fitxers", "Selected files too large to generate zip file." => "Els fitxers seleccionats son massa grans per generar un fitxer zip.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Baixeu els fitxers en trossos petits, de forma separada, o pregunteu a l'administrador.", "No source specified when installing app" => "No heu especificat la font en instal·lar l'aplicació", "No href specified when installing app from http" => "No heu especificat href en instal·lar l'aplicació des de http", "No path specified when installing app from local file" => "No heu seleccionat el camí en instal·lar una aplicació des d'un fitxer local", diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 0b09997ee2..0e44dd2a4b 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Soubory musí být stahovány jednotlivě.", "Back to Files" => "Zpět k souborům", "Selected files too large to generate zip file." => "Vybrané soubory jsou příliš velké pro vytvoření ZIP souboru.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Stáhněte soubory po menších částech, samostatně, nebo se obraťte na správce.", "No source specified when installing app" => "Nebyl zadán zdroj při instalaci aplikace", "No href specified when installing app from http" => "Nebyl zadán odkaz pro instalaci aplikace z HTTP", "No path specified when installing app from local file" => "Nebyla zadána cesta pro instalaci aplikace z místního souboru", diff --git a/lib/l10n/da.php b/lib/l10n/da.php index bf233e0338..f95aa30d7a 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Filer skal downloades en for en.", "Back to Files" => "Tilbage til Filer", "Selected files too large to generate zip file." => "De markerede filer er for store til at generere en ZIP-fil.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Download filerne i små bider, seperat, eller kontakt venligst din administrator.", "No source specified when installing app" => "Ingen kilde angivet under installation af app", "No href specified when installing app from http" => "Ingen href angivet under installation af app via http", "No path specified when installing app from local file" => "Ingen sti angivet under installation af app fra lokal fil", diff --git a/lib/l10n/de.php b/lib/l10n/de.php index 84543fa75d..7ab0345209 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Die Dateien müssen einzeln heruntergeladen werden.", "Back to Files" => "Zurück zu \"Dateien\"", "Selected files too large to generate zip file." => "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Lade die Dateien in kleineren, separaten, Stücken herunter oder bitte deinen Administrator.", "No source specified when installing app" => "Für die Installation der Applikation wurde keine Quelle angegeben", "No href specified when installing app from http" => "Der Link (href) wurde nicht angegeben um die Applikation per http zu installieren", "No path specified when installing app from local file" => "Bei der Installation der Applikation aus einer lokalen Datei wurde kein Pfad angegeben", diff --git a/lib/l10n/de_CH.php b/lib/l10n/de_CH.php index c4f06520b5..502791ff57 100644 --- a/lib/l10n/de_CH.php +++ b/lib/l10n/de_CH.php @@ -14,7 +14,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Die Dateien müssen einzeln heruntergeladen werden.", "Back to Files" => "Zurück zu \"Dateien\"", "Selected files too large to generate zip file." => "Die gewählten Dateien sind zu gross, um eine ZIP-Datei zu erstellen.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Laden Sie die Dateien in kleineren, separaten, Stücken herunter oder bitten Sie Ihren Administrator.", "App can't be installed because of not allowed code in the App" => "Anwendung kann wegen nicht erlaubten Codes nicht installiert werden", "App directory already exists" => "Anwendungsverzeichnis existiert bereits", "Application is not enabled" => "Die Anwendung ist nicht aktiviert", diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index a84b954eb4..b14bafbf69 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Die Dateien müssen einzeln heruntergeladen werden.", "Back to Files" => "Zurück zu \"Dateien\"", "Selected files too large to generate zip file." => "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Laden Sie die Dateien in kleineren, separaten, Stücken herunter oder bitten Sie Ihren Administrator.", "No source specified when installing app" => "Für die Installation der Applikation wurde keine Quelle angegeben", "No href specified when installing app from http" => "Der Link (href) wurde nicht angegeben um die Applikation per http zu installieren", "No path specified when installing app from local file" => "Bei der Installation der Applikation aus einer lokalen Datei wurde kein Pfad angegeben", diff --git a/lib/l10n/el.php b/lib/l10n/el.php index aed5e052a8..f620e1b354 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -14,7 +14,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Τα αρχεία πρέπει να ληφθούν ένα-ένα.", "Back to Files" => "Πίσω στα Αρχεία", "Selected files too large to generate zip file." => "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Λήψη των αρχείων σε μικρότερα κομμάτια, χωριστά ή ρωτήστε τον διαχειριστή σας.", "Application is not enabled" => "Δεν ενεργοποιήθηκε η εφαρμογή", "Authentication error" => "Σφάλμα πιστοποίησης", "Token expired. Please reload page." => "Το αναγνωριστικό έληξε. Παρακαλώ φορτώστε ξανά την σελίδα.", diff --git a/lib/l10n/en_GB.php b/lib/l10n/en_GB.php index 73697d101c..68c541b5d9 100644 --- a/lib/l10n/en_GB.php +++ b/lib/l10n/en_GB.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Files need to be downloaded one by one.", "Back to Files" => "Back to Files", "Selected files too large to generate zip file." => "Selected files too large to generate zip file.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Download the files in smaller chunks, seperately or kindly ask your administrator.", "No source specified when installing app" => "No source specified when installing app", "No href specified when installing app from http" => "No href specified when installing app from http", "No path specified when installing app from local file" => "No path specified when installing app from local file", diff --git a/lib/l10n/es.php b/lib/l10n/es.php index 7e56e31aea..8e79c9f105 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Los archivos deben ser descargados uno por uno.", "Back to Files" => "Volver a Archivos", "Selected files too large to generate zip file." => "Los archivos seleccionados son demasiado grandes para generar el archivo zip.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Descargue los archivos en trozos más pequeños, por separado o solicítelos amablemente su administrador.", "No source specified when installing app" => "No se ha especificado origen cuando se ha instalado la aplicación", "No href specified when installing app from http" => "No href especificado cuando se ha instalado la aplicación", "No path specified when installing app from local file" => "Sin path especificado cuando se ha instalado la aplicación desde el fichero local", diff --git a/lib/l10n/es_AR.php b/lib/l10n/es_AR.php index 4e65755ba8..e2c771d47a 100644 --- a/lib/l10n/es_AR.php +++ b/lib/l10n/es_AR.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Los archivos deben ser descargados de a uno.", "Back to Files" => "Volver a Archivos", "Selected files too large to generate zip file." => "Los archivos seleccionados son demasiado grandes para generar el archivo zip.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Descargá los archivos en partes más chicas, de forma separada, o pedíselos al administrador", "No source specified when installing app" => "No se especificó el origen al instalar la app", "No href specified when installing app from http" => "No se especificó href al instalar la app", "No path specified when installing app from local file" => "No se especificó PATH al instalar la app desde el archivo local", diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index e307979fa7..9cdeb39021 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Failid tuleb alla laadida ükshaaval.", "Back to Files" => "Tagasi failide juurde", "Selected files too large to generate zip file." => "Valitud failid on ZIP-faili loomiseks liiga suured.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Laadi failid alla eraldi väiksemate osadena või küsi nõu oma süsteemiadminstraatorilt.", "No source specified when installing app" => "Ühegi lähteallikat pole rakendi paigalduseks määratletud", "No href specified when installing app from http" => "Ühtegi aadressi pole määratletud rakendi paigalduseks veebist", "No path specified when installing app from local file" => "Ühtegi teed pole määratletud paigaldamaks rakendit kohalikust failist", diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php index 9758fdd1f3..f28a77eeb0 100644 --- a/lib/l10n/eu.php +++ b/lib/l10n/eu.php @@ -12,7 +12,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Fitxategiak banan-banan deskargatu behar dira.", "Back to Files" => "Itzuli fitxategietara", "Selected files too large to generate zip file." => "Hautatuko fitxategiak oso handiak dira zip fitxategia sortzeko.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Deskargatu fitzategiak zati txikiagoetan, banan-banan edo eskatu mesedez zure administradoreari", "Application is not enabled" => "Aplikazioa ez dago gaituta", "Authentication error" => "Autentifikazio errorea", "Token expired. Please reload page." => "Tokena iraungitu da. Mesedez birkargatu orria.", diff --git a/lib/l10n/fr.php b/lib/l10n/fr.php index 895daa5b45..c9767565b1 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Les fichiers nécessitent d'être téléchargés un par un.", "Back to Files" => "Retour aux Fichiers", "Selected files too large to generate zip file." => "Les fichiers sélectionnés sont trop volumineux pour être compressés.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Télécharger les fichiers en parties plus petites, séparément ou demander avec bienveillance à votre administrateur.", "No source specified when installing app" => "Aucune source spécifiée pour installer l'application", "No href specified when installing app from http" => "Aucun href spécifié pour installer l'application par http", "No path specified when installing app from local file" => "Aucun chemin spécifié pour installer l'application depuis un fichier local", diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php index 72ee66b6f5..d6366022e6 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Os ficheiros necesitan seren descargados dun en un.", "Back to Files" => "Volver aos ficheiros", "Selected files too large to generate zip file." => "Os ficheiros seleccionados son demasiado grandes como para xerar un ficheiro zip.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Descargue os ficheiros en cachos máis pequenos e por separado, ou pídallos amabelmente ao seu administrador.", "No source specified when installing app" => "Non foi especificada ningunha orixe ao instalar aplicativos", "No href specified when installing app from http" => "Non foi especificada ningunha href ao instalar aplicativos", "No path specified when installing app from local file" => "Non foi especificada ningunha ruta ao instalar aplicativos desde un ficheiro local", diff --git a/lib/l10n/hu_HU.php b/lib/l10n/hu_HU.php index cf1e6c2f10..0d91b70b51 100644 --- a/lib/l10n/hu_HU.php +++ b/lib/l10n/hu_HU.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "A fájlokat egyenként kell letölteni.", "Back to Files" => "Vissza a Fájlokhoz", "Selected files too large to generate zip file." => "A kiválasztott fájlok túl nagyok a zip tömörítéshez.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Tölts le a fileokat kisebb chunkokban, kölün vagy kérj segitséget a rendszergazdádtól.", "No source specified when installing app" => "Az alkalmazás telepítéséhez nincs forrás megadva", "No href specified when installing app from http" => "Az alkalmazás http-n keresztül történő telepítéséhez nincs href hivetkozás megadva", "No path specified when installing app from local file" => "Az alkalmazás helyi telepítéséhez nincs útvonal (mappa) megadva", diff --git a/lib/l10n/it.php b/lib/l10n/it.php index 240442d396..2a1be30c7c 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "I file devono essere scaricati uno alla volta.", "Back to Files" => "Torna ai file", "Selected files too large to generate zip file." => "I file selezionati sono troppo grandi per generare un file zip.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Scarica i file in blocchi più piccoli, separatamente o chiedi al tuo amministratore.", "No source specified when installing app" => "Nessuna fonte specificata durante l'installazione dell'applicazione", "No href specified when installing app from http" => "Nessun href specificato durante l'installazione dell'applicazione da http", "No path specified when installing app from local file" => "Nessun percorso specificato durante l'installazione dell'applicazione da file locale", diff --git a/lib/l10n/ja_JP.php b/lib/l10n/ja_JP.php index f156c68715..f7af9b592a 100644 --- a/lib/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "ファイルは1つずつダウンロードする必要があります。", "Back to Files" => "ファイルに戻る", "Selected files too large to generate zip file." => "選択したファイルはZIPファイルの生成には大きすぎます。", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "ファイルは、小さいファイルに分割されてダウンロードされます。もしくは、管理者にお尋ねください。", "No source specified when installing app" => "アプリインストール時のソースが未指定", "No href specified when installing app from http" => "アプリインストール時のhttpの URL が未指定", "No path specified when installing app from local file" => "アプリインストール時のローカルファイルのパスが未指定", diff --git a/lib/l10n/ko.php b/lib/l10n/ko.php index 297e7ac580..102bf9f978 100644 --- a/lib/l10n/ko.php +++ b/lib/l10n/ko.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "파일을 개별적으로 다운로드해야 합니다.", "Back to Files" => "파일로 돌아가기", "Selected files too large to generate zip file." => "선택한 파일들은 ZIP 파일을 생성하기에 너무 큽니다.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "작은 조각들 안에 들어있는 파일들을 받고자 하신다면, 나누어서 받으시거나 혹은 시스템 관리자에게 정중하게 물어보십시오", "No source specified when installing app" => "앱을 설치할 때 소스가 지정되지 않았습니다.", "No href specified when installing app from http" => "http에서 앱을 설치할 대 href가 지정되지 않았습니다.", "No path specified when installing app from local file" => "로컬 파일에서 앱을 설치할 때 경로가 지정되지 않았습니다.", diff --git a/lib/l10n/lt_LT.php b/lib/l10n/lt_LT.php index e322c9141d..9c4eccd9d6 100644 --- a/lib/l10n/lt_LT.php +++ b/lib/l10n/lt_LT.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Failai turi būti parsiunčiami vienas po kito.", "Back to Files" => "Atgal į Failus", "Selected files too large to generate zip file." => "Pasirinkti failai per dideli archyvavimui į ZIP.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Atsisiųskite failus mažesnėmis dalimis atskirai, arba mandagiai prašykite savo administratoriaus.", "No source specified when installing app" => "Nenurodytas šaltinis diegiant programą", "No href specified when installing app from http" => "Nenurodytas href diegiant programą iš http", "No path specified when installing app from local file" => "Nenurodytas kelias diegiant programą iš vietinio failo", diff --git a/lib/l10n/lv.php b/lib/l10n/lv.php index cf96c4c4ab..ef5fd2d5ca 100644 --- a/lib/l10n/lv.php +++ b/lib/l10n/lv.php @@ -12,7 +12,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Datnes var lejupielādēt tikai katru atsevišķi.", "Back to Files" => "Atpakaļ pie datnēm", "Selected files too large to generate zip file." => "Izvēlētās datnes ir pārāk lielas, lai izveidotu zip datni.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Lejupielādējiet savus failus mazākās daļās, atsevišķi vai palūdziet tos administratoram.", "Application is not enabled" => "Lietotne nav aktivēta", "Authentication error" => "Autentifikācijas kļūda", "Token expired. Please reload page." => "Pilnvarai ir beidzies termiņš. Lūdzu, pārlādējiet lapu.", diff --git a/lib/l10n/nl.php b/lib/l10n/nl.php index 91ce25c13c..d3a94d20f5 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Bestanden moeten één voor één worden gedownload.", "Back to Files" => "Terug naar bestanden", "Selected files too large to generate zip file." => "De geselecteerde bestanden zijn te groot om een zip bestand te maken.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Download de bestanden in kleinere brokken, appart of vraag uw administrator.", "No source specified when installing app" => "Geen bron opgegeven bij installatie van de app", "No href specified when installing app from http" => "Geen href opgegeven bij installeren van de app vanaf http", "No path specified when installing app from local file" => "Geen pad opgegeven bij installeren van de app vanaf een lokaal bestand", diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index 72f01d784c..82d4f753a8 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Pliki muszą zostać pobrane pojedynczo.", "Back to Files" => "Wróć do plików", "Selected files too large to generate zip file." => "Wybrane pliki są zbyt duże, aby wygenerować plik zip.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Pobierz pliki w mniejszy kawałkach, oddzielnie lub poproś administratora o zwiększenie limitu.", "No source specified when installing app" => "Nie określono źródła podczas instalacji aplikacji", "No href specified when installing app from http" => "Nie określono linku skąd aplikacja ma być zainstalowana", "No path specified when installing app from local file" => "Nie określono lokalnego pliku z którego miała być instalowana aplikacja", diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index 784f9fe9f6..eed06956fd 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Arquivos precisam ser baixados um de cada vez.", "Back to Files" => "Voltar para Arquivos", "Selected files too large to generate zip file." => "Arquivos selecionados são muito grandes para gerar arquivo zip.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Baixe os arquivos em pedaços menores, separadamente ou solicite educadamente ao seu administrador.", "No source specified when installing app" => "Nenhuma fonte foi especificada enquanto instalava o aplicativo", "No href specified when installing app from http" => "Nenhuma href foi especificada enquanto instalava o aplicativo de httml", "No path specified when installing app from local file" => "Nenhum caminho foi especificado enquanto instalava o aplicativo do arquivo local", diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index 44b5f0831e..2b12b4d8a1 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Os ficheiros precisam de ser descarregados um por um.", "Back to Files" => "Voltar a Ficheiros", "Selected files too large to generate zip file." => "Os ficheiros seleccionados são grandes demais para gerar um ficheiro zip.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Descarregue os ficheiros em partes menores, separados ou peça gentilmente ao seu administrador.", "Archives of type %s are not supported" => "Arquivos do tipo %s não são suportados", "App does not provide an info.xml file" => "A aplicação não disponibiliza um ficheiro info.xml", "App can't be installed because of not allowed code in the App" => "A aplicação não pode ser instalado devido a código não permitido dentro da aplicação", diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index e77daa7dfd..371bf13f27 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Файлы должны быть загружены по одному.", "Back to Files" => "Назад к файлам", "Selected files too large to generate zip file." => "Выбранные файлы слишком велики, чтобы создать zip файл.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Загрузите файл маленьшими порциями, раздельно или вежливо попросите Вашего администратора.", "No source specified when installing app" => "Не указан источник при установке приложения", "No href specified when installing app from http" => "Не указан атрибут href при установке приложения через http", "No path specified when installing app from local file" => "Не указан путь при установке приложения из локального файла", diff --git a/lib/l10n/ru_RU.php b/lib/l10n/ru_RU.php index 622333c385..23e900721e 100644 --- a/lib/l10n/ru_RU.php +++ b/lib/l10n/ru_RU.php @@ -3,6 +3,7 @@ $TRANSLATIONS = array( "Help" => "Помощь", "Settings" => "Настройки", "Files" => "Файлы", +"Text" => "Текст", "_%n minute ago_::_%n minutes ago_" => array("","",""), "_%n hour ago_::_%n hours ago_" => array("","",""), "_%n day go_::_%n days ago_" => array("","",""), diff --git a/lib/l10n/sk_SK.php b/lib/l10n/sk_SK.php index 8bb97e7e6c..493374ade0 100644 --- a/lib/l10n/sk_SK.php +++ b/lib/l10n/sk_SK.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Súbory musia byť nahrávané jeden za druhým.", "Back to Files" => "Späť na súbory", "Selected files too large to generate zip file." => "Zvolené súbory sú príliš veľké na vygenerovanie zip súboru.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Stiahnite súbory po menších častiach, samostatne, alebo sa obráťte na správcu.", "No source specified when installing app" => "Nešpecifikovaný zdroj pri inštalácii aplikácie", "No href specified when installing app from http" => "Nešpecifikovaný atribút \"href\" pri inštalácii aplikácie pomocou protokolu \"http\"", "No path specified when installing app from local file" => "Nešpecifikovaná cesta pri inštalácii aplikácie z lokálneho súboru", diff --git a/lib/l10n/sv.php b/lib/l10n/sv.php index 5432eed585..66cd34f73d 100644 --- a/lib/l10n/sv.php +++ b/lib/l10n/sv.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Filer laddas ner en åt gången.", "Back to Files" => "Tillbaka till Filer", "Selected files too large to generate zip file." => "Valda filer är för stora för att skapa zip-fil.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Ladda ner filerna i mindre bitar, separat eller fråga din administratör.", "No source specified when installing app" => "Ingen källa angiven vid installation av app ", "No href specified when installing app from http" => "Ingen href angiven vid installation av app från http", "No path specified when installing app from local file" => "Ingen sökväg angiven vid installation av app från lokal fil", diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index eb838f6c53..9ac0761033 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Dosyaların birer birer indirilmesi gerekmektedir.", "Back to Files" => "Dosyalara dön", "Selected files too large to generate zip file." => "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyüktür.", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Dosyaları ayrı ayrı, küçük parçalar halinde indirin ya da yöneticinizden yardım isteyin. ", "No source specified when installing app" => "Uygulama kurulurken bir kaynak belirtilmedi", "No href specified when installing app from http" => "Uygulama kuruluyorken http'de href belirtilmedi.", "No path specified when installing app from local file" => "Uygulama yerel dosyadan kuruluyorken dosya yolu belirtilmedi", diff --git a/lib/l10n/zh_TW.php b/lib/l10n/zh_TW.php index 0081a37dad..187d40e540 100644 --- a/lib/l10n/zh_TW.php +++ b/lib/l10n/zh_TW.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "檔案需要逐一下載。", "Back to Files" => "回到檔案列表", "Selected files too large to generate zip file." => "選擇的檔案太大以致於無法產生壓縮檔。", -"Download the files in smaller chunks, seperately or kindly ask your administrator." => "以小分割下載您的檔案,請詢問您的系統管理員。", "No source specified when installing app" => "沒有指定應用程式安裝來源", "No href specified when installing app from http" => "從 http 安裝應用程式,找不到 href 屬性", "No path specified when installing app from local file" => "從本地檔案安裝應用程式時沒有指定路徑", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 0cd4a74c77..9f3b9f7a8f 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -2,6 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Nie można wczytać listy aplikacji", "Authentication error" => "Błąd uwierzytelniania", +"Your full name has been changed." => "Twoja pełna nazwa została zmieniona.", +"Unable to change full name" => "Nie można zmienić pełnej nazwy", "Group already exists" => "Grupa już istnieje", "Unable to add group" => "Nie można dodać grupy", "Email saved" => "E-mail zapisany", @@ -15,6 +17,10 @@ $TRANSLATIONS = array( "Unable to remove user from group %s" => "Nie można usunąć użytkownika z grupy %s", "Couldn't update app." => "Nie można uaktualnić aplikacji.", "Wrong password" => "Złe hasło", +"No user supplied" => "Niedostarczony użytkownik", +"Please provide an admin recovery password, otherwise all user data will be lost" => "Podaj hasło odzyskiwania administratora, w przeciwnym razie wszystkie dane użytkownika zostaną utracone", +"Wrong admin recovery password. Please check the password and try again." => "Błędne hasło odzyskiwania. Sprawdź hasło i spróbuj ponownie.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "Zaplecze nie obsługuje zmiany hasła, ale klucz szyfrowania użytkownika został pomyślnie zaktualizowany.", "Unable to change password" => "Nie można zmienić hasła", "Update to {appversion}" => "Aktualizacja do {appversion}", "Disable" => "Wyłącz", @@ -40,7 +46,13 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Należy podać prawidłową nazwę użytkownika", "Error creating user" => "Błąd podczas tworzenia użytkownika", "A valid password must be provided" => "Należy podać prawidłowe hasło", +"Warning: Home directory for user \"{user}\" already exists" => "Ostrzeżenie: Katalog domowy dla użytkownika \"{user}\" już istnieje", "__language_name__" => "polski", +"Everything (fatal issues, errors, warnings, info, debug)" => "Wszystko (Informacje, ostrzeżenia, błędy i poważne problemy, debug)", +"Info, warnings, errors and fatal issues" => "Informacje, ostrzeżenia, błędy i poważne problemy", +"Warnings, errors and fatal issues" => "Ostrzeżenia, błędy i poważne problemy", +"Errors and fatal issues" => "Błędy i poważne problemy", +"Fatal issues only" => "Tylko poważne problemy", "Security Warning" => "Ostrzeżenie o zabezpieczeniach", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Twój katalog danych i pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess, który dostarcza ownCloud nie działa. Sugerujemy, aby skonfigurować serwer WWW w taki sposób, aby katalog danych nie był dostępny lub przenieść katalog danych poza główny katalog serwera WWW.", "Setup Warning" => "Ostrzeżenia konfiguracji", @@ -99,6 +111,7 @@ $TRANSLATIONS = array( "Current password" => "Bieżące hasło", "New password" => "Nowe hasło", "Change password" => "Zmień hasło", +"Full Name" => "Pełna nazwa", "Email" => "Email", "Your email address" => "Twój adres e-mail", "Fill in an email address to enable password recovery" => "Podaj adres e-mail, aby uzyskać możliwość odzyskania hasła", @@ -112,6 +125,7 @@ $TRANSLATIONS = array( "Language" => "Język", "Help translate" => "Pomóż w tłumaczeniu", "WebDAV" => "WebDAV", +"Use this address to access your Files via WebDAV" => "Użyj tego adresu do dostępu do twoich plików przez WebDAV", "Encryption" => "Szyfrowanie", "The encryption app is no longer enabled, decrypt all your file" => "Aplikacja szyfrowanie nie jest włączona, odszyfruj wszystkie plik", "Log-in password" => "Hasło logowania", @@ -121,10 +135,12 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "Odzyskiwanie hasła administratora", "Enter the recovery password in order to recover the users files during password change" => "Wpisz hasło odzyskiwania, aby odzyskać pliki użytkowników podczas zmiany hasła", "Default Storage" => "Magazyn domyślny", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Proszę ustawić ograniczenie zasobów (np. \"512 MB\" albo \"12 GB)", "Unlimited" => "Bez limitu", "Other" => "Inne", "Username" => "Nazwa użytkownika", "Storage" => "Magazyn", +"change full name" => "Zmień pełna nazwę", "set new password" => "ustaw nowe hasło", "Default" => "Domyślny" ); diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php index 1686cb5aa0..938c0b1642 100644 --- a/settings/l10n/ru_RU.php +++ b/settings/l10n/ru_RU.php @@ -1,8 +1,10 @@ "Ошибка", +"Delete" => "Удалить", "More" => "Подробнее", "Password" => "Пароль", +"Create" => "Создать", "Username" => "Имя пользователя" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 7cd00ca069..ddd75d2372 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -2,6 +2,7 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Ni mogoče naložiti seznama iz programskega središča", "Authentication error" => "Napaka med overjanjem", +"Your full name has been changed." => "Vaše polno ime je spremenjeno.", "Unable to change full name" => "Ni mogoče spremeniti polnega imena", "Group already exists" => "Skupina že obstaja", "Unable to add group" => "Skupine ni mogoče dodati", @@ -16,15 +17,21 @@ $TRANSLATIONS = array( "Unable to remove user from group %s" => "Uporabnika ni mogoče odstraniti iz skupine %s", "Couldn't update app." => "Programa ni mogoče posodobiti.", "Wrong password" => "Napačno geslo", +"No user supplied" => "Ni navedenega uporabnika", +"Unable to change password" => "Ni mogoče spremeniti gesla", "Update to {appversion}" => "Posodobi na {appversion}", "Disable" => "Onemogoči", "Enable" => "Omogoči", "Please wait...." => "Počakajte ...", +"Error while disabling app" => "Napaka onemogočanja programa", +"Error while enabling app" => "Napaka omogočanja programa", "Updating...." => "Poteka posodabljanje ...", "Error while updating app" => "Prišlo je do napake med posodabljanjem programa.", "Error" => "Napaka", "Update" => "Posodobi", "Updated" => "Posodobljeno", +"Select a profile picture" => "Izbor slike profila", +"Decrypting files... Please wait, this can take some time." => "Poteka odšifriranje datotek ... Opravilo je lahko dolgotrajno.", "Saving..." => "Poteka shranjevanje ...", "deleted" => "izbrisano", "undo" => "razveljavi", @@ -36,7 +43,13 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Navedeno mora biti veljavno uporabniško ime", "Error creating user" => "Napaka ustvarjanja uporabnika", "A valid password must be provided" => "Navedeno mora biti veljavno geslo", +"Warning: Home directory for user \"{user}\" already exists" => "Opozorilo: osebna mapa uporabnika \"{user}\" že obstaja", "__language_name__" => "Slovenščina", +"Everything (fatal issues, errors, warnings, info, debug)" => "Vse (podrobnosti, opozorila, hrošče, napake in usodne dogodke)", +"Info, warnings, errors and fatal issues" => "Podrobnosti, opozorila, napake in usodne dogodke", +"Warnings, errors and fatal issues" => "Opozorila, napake in usodne dogodke", +"Errors and fatal issues" => "Napake in usodne dogodke", +"Fatal issues only" => "Le usodne dogodke", "Security Warning" => "Varnostno opozorilo", "Setup Warning" => "Opozorilo nastavitve", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena.", @@ -56,6 +69,7 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Uporabnikom dovoli nadaljnjo souporabo predmetov", "Allow users to share with anyone" => "Uporabnikom dovoli souporabo s komerkoli", "Allow users to only share with users in their groups" => "Uporabnikom dovoli souporabo z ostalimi uporabniki njihove skupine", +"Allow mail notification" => "Dovoli obvestila preko elektronske pošte", "Security" => "Varnost", "Enforce HTTPS" => "Zahtevaj uporabo HTTPS", "Log" => "Dnevnik", @@ -89,18 +103,24 @@ $TRANSLATIONS = array( "Your email address" => "Osebni elektronski naslov", "Fill in an email address to enable password recovery" => "Vpišite osebni elektronski naslov in s tem omogočite obnovitev gesla", "Profile picture" => "Slika profila", +"Upload new" => "Pošlji novo", +"Select new from Files" => "Izberi novo iz menija datotek", "Remove image" => "Odstrani sliko", "Abort" => "Prekini", +"Choose as profile image" => "Izberi kot sliko profila", "Language" => "Jezik", "Help translate" => "Sodelujte pri prevajanju", "WebDAV" => "WebDAV", +"Use this address to access your Files via WebDAV" => "Uporabite naslov za dostop do datotek rpeko sistema WebDAV.", "Encryption" => "Šifriranje", +"Log-in password" => "Prijavno geslo", "Decrypt all Files" => "Odšifriraj vse datoteke", "Login Name" => "Prijavno ime", "Create" => "Ustvari", -"Admin Recovery Password" => "Obnovitev administratorjevega gesla", -"Enter the recovery password in order to recover the users files during password change" => "Vnesite geslo za obnovitev, ki ga boste uporabljali za obnovitev datotek uporabnikov med spremembo gesla", +"Admin Recovery Password" => "Obnovitev skrbniškega gesla", +"Enter the recovery password in order to recover the users files during password change" => "Vnesite geslo, ki omogoča obnovitev uporabniških datotek med spreminjanjem gesla", "Default Storage" => "Privzeta shramba", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Vnesite količinsko omejitev prostora (na primer: \"512 MB\" ali \"12 GB\")", "Unlimited" => "Neomejeno", "Other" => "Drugo", "Username" => "Uporabniško ime", From 39cbdca42975e4eb9da8906c45930117fa21e483 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 20 Nov 2013 18:14:42 +0100 Subject: [PATCH 36/84] Fixed path normalization to prevent dot dirs Fixes #5945 where stat(.) would cause the backend OC to cache a dot dir (only in older versions) --- apps/files_external/lib/webdav.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/apps/files_external/lib/webdav.php b/apps/files_external/lib/webdav.php index 9ee7f55528..5857c59dcf 100644 --- a/apps/files_external/lib/webdav.php +++ b/apps/files_external/lib/webdav.php @@ -323,11 +323,9 @@ class DAV extends \OC\Files\Storage\Common{ } public function cleanPath($path) { - if ( ! $path || $path[0]=='/') { - return substr($path, 1); - } else { - return $path; - } + $path = \OC\Files\Filesystem::normalizePath($path); + // remove leading slash + return substr($path, 1); } private function simpleResponse($method, $path, $body, $expected) { From 0b2c9b823c7b421d4305cb25a85074dbde14bc12 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 21 Nov 2013 17:21:51 +0100 Subject: [PATCH 37/84] Prevent using root as mount point for external storage Fixes #5981 --- apps/files_external/lib/config.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 4364307651..de42fe2f75 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -266,6 +266,11 @@ class OC_Mount_Config { $mountType, $applicable, $isPersonal = false) { + $mountPoint = OC\Files\Filesystem::normalizePath($mountPoint); + if ($mountPoint === '' || $mountPoint === '/') { + // can't mount at root + return false; + } if ($isPersonal) { // Verify that the mount point applies for the current user // Prevent non-admin users from mounting local storage From 476d8e6de073a095dda012079e7a6697e481c3c3 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 21 Nov 2013 17:26:13 +0100 Subject: [PATCH 38/84] Added unit test for root mount point validation --- apps/files_external/tests/mountconfig.php | 49 +++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 apps/files_external/tests/mountconfig.php diff --git a/apps/files_external/tests/mountconfig.php b/apps/files_external/tests/mountconfig.php new file mode 100644 index 0000000000..77241c4dd2 --- /dev/null +++ b/apps/files_external/tests/mountconfig.php @@ -0,0 +1,49 @@ + + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see . + * + */ + +require_once __DIR__ . '/../../../lib/base.php'; + +require __DIR__ . '/../lib/config.php'; + +class Test_Mount_Config_Dummy_Storage { + public function test() { + return true; + } +} + +/** + * Class Test_Mount_Config + */ +class Test_Mount_Config extends \PHPUnit_Framework_TestCase { + /** + * Test mount point validation + */ + public function testAddMountPointValidation() { + $storageClass = 'Test_Mount_Config_Dummy_Storage'; + $mountType = 'user'; + $applicable = 'all'; + $isPersonal = false; + $this->assertEquals(false, OC_Mount_Config::addMountPoint('', $storageClass, array(), $mountType, $applicable, $isPersonal)); + $this->assertEquals(false, OC_Mount_Config::addMountPoint('/', $storageClass, array(), $mountType, $applicable, $isPersonal)); + + } +} From aa5d5a422f6faf47e323040858a577cf140959e6 Mon Sep 17 00:00:00 2001 From: raghunayyar Date: Fri, 22 Nov 2013 02:10:22 +0530 Subject: [PATCH 39/84] Doesn't Cut the top arrow from navigation --- core/css/styles.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index f2561dd462..1761115903 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -564,7 +564,7 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } position: fixed; float: left; width: 80px; - padding-top: 3.5em; + margin-top:45px; z-index: 75; height: 100%; background:#383c43 url('../img/noise.png') repeat; @@ -624,10 +624,10 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } /* Apps management as sticky footer, less obtrusive in the list */ #navigation .wrapper { min-height: 100%; - margin: 0 auto -72px; + margin: 0 auto -120px; } #apps-management, #navigation .push { - height: 70px; + height: 120px; } #apps-management { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)"; From 00071401d7c16e700becf5447bebdc70441736ea Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 21 Nov 2013 23:40:25 +0100 Subject: [PATCH 40/84] Round out Avatar Public API --- lib/avatarmanager.php | 55 ----------------------------------- lib/private/avatar.php | 2 +- lib/private/avatarmanager.php | 26 +++++++++++++++++ lib/public/iavatarmanager.php | 25 ++++------------ tests/lib/avatar.php | 15 ++++++++++ 5 files changed, 47 insertions(+), 76 deletions(-) delete mode 100644 lib/avatarmanager.php create mode 100644 lib/private/avatarmanager.php diff --git a/lib/avatarmanager.php b/lib/avatarmanager.php deleted file mode 100644 index 51481e412d..0000000000 --- a/lib/avatarmanager.php +++ /dev/null @@ -1,55 +0,0 @@ -avatar = new \OC\Avatar($user); - } - - /** - * @brief get the users avatar - * @param $size integer size in px of the avatar, defaults to 64 - * @return boolean|\OC_Image containing the avatar or false if there's no image - */ - function get($size = 64) { - $this->avatar->get($size); - } - - /** - * @brief sets the users avatar - * @param $data mixed imagedata or path to set a new avatar - * @throws Exception if the provided file is not a jpg or png image - * @throws Exception if the provided image is not valid - * @throws \OC\NotSquareException if the image is not square - * @return void - */ - function set($data) { - $this->avatar->set($data); - } - - /** - * @brief remove the users avatar - * @return void - */ - function remove() { - $this->avatar->remove(); - } -} diff --git a/lib/private/avatar.php b/lib/private/avatar.php index e9b02a7d34..e82e517b09 100644 --- a/lib/private/avatar.php +++ b/lib/private/avatar.php @@ -10,7 +10,7 @@ * This class gets and sets users avatars. */ -class OC_Avatar { +class OC_Avatar implements \OCP\IAvatar { private $view; diff --git a/lib/private/avatarmanager.php b/lib/private/avatarmanager.php new file mode 100644 index 0000000000..3ca46868ea --- /dev/null +++ b/lib/private/avatarmanager.php @@ -0,0 +1,26 @@ +remove(); $this->assertEquals(false, $avatar->get()); } + + public function testAvatarApi() { + $avatarManager = \OC::$server->getAvatarManager(); + $avatar = $avatarManager->getAvatar(\OC_User::getUser()); + + $this->assertEquals(false, $avatar->get()); + + $expected = new OC_Image(\OC::$SERVERROOT.'/tests/data/testavatar.png'); + $expected->resize(64); + $avatar->set($expected->data()); + $this->assertEquals($expected->data(), $avatar->get()->data()); + + $avatar->remove(); + $this->assertEquals(false, $avatar->get()); + } } From f94a6eb1669cbdae45ccd76ecc4c07988ecddecf Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 22 Nov 2013 00:43:23 +0100 Subject: [PATCH 41/84] Add missing Avatar Interface --- lib/public/iavatar.php | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 lib/public/iavatar.php diff --git a/lib/public/iavatar.php b/lib/public/iavatar.php new file mode 100644 index 0000000000..2cbec0d45c --- /dev/null +++ b/lib/public/iavatar.php @@ -0,0 +1,38 @@ + Date: Thu, 21 Nov 2013 21:07:12 -0500 Subject: [PATCH 42/84] [tx-robot] updated from transifex --- apps/files/l10n/en_GB.php | 1 + apps/files/l10n/fi_FI.php | 2 + apps/files/l10n/pt_BR.php | 1 + apps/files/l10n/sl.php | 1 + apps/files/l10n/tr.php | 3 +- core/l10n/en_GB.php | 1 + core/l10n/fi_FI.php | 3 ++ core/l10n/pt_BR.php | 1 + core/l10n/sl.php | 1 + core/l10n/tr.php | 1 + l10n/ach/settings.po | 81 +++++++++++++++------------- l10n/ady/settings.po | 81 +++++++++++++++------------- l10n/af/settings.po | 81 +++++++++++++++------------- l10n/af_ZA/settings.po | 81 +++++++++++++++------------- l10n/ar/settings.po | 81 +++++++++++++++------------- l10n/be/settings.po | 81 +++++++++++++++------------- l10n/bg_BG/settings.po | 81 +++++++++++++++------------- l10n/bn_BD/settings.po | 81 +++++++++++++++------------- l10n/bs/settings.po | 81 +++++++++++++++------------- l10n/ca/settings.po | 81 +++++++++++++++------------- l10n/cs_CZ/settings.po | 81 +++++++++++++++------------- l10n/cy_GB/settings.po | 81 +++++++++++++++------------- l10n/da/settings.po | 79 +++++++++++++++------------ l10n/de/settings.po | 81 +++++++++++++++------------- l10n/de_AT/settings.po | 81 +++++++++++++++------------- l10n/de_CH/settings.po | 79 +++++++++++++++------------ l10n/de_DE/settings.po | 81 +++++++++++++++------------- l10n/el/settings.po | 81 +++++++++++++++------------- l10n/en@pirate/settings.po | 81 +++++++++++++++------------- l10n/en_GB/core.po | 8 +-- l10n/en_GB/files.po | 8 +-- l10n/en_GB/lib.po | 8 +-- l10n/en_GB/settings.po | 81 +++++++++++++++------------- l10n/eo/settings.po | 81 +++++++++++++++------------- l10n/es/settings.po | 81 +++++++++++++++------------- l10n/es_AR/settings.po | 79 +++++++++++++++------------ l10n/es_MX/settings.po | 81 +++++++++++++++------------- l10n/et_EE/settings.po | 81 +++++++++++++++------------- l10n/eu/settings.po | 81 +++++++++++++++------------- l10n/fa/settings.po | 81 +++++++++++++++------------- l10n/fi_FI/core.po | 12 ++--- l10n/fi_FI/files.po | 10 ++-- l10n/fi_FI/settings.po | 83 ++++++++++++++++------------- l10n/fr/settings.po | 81 +++++++++++++++------------- l10n/gl/settings.po | 81 +++++++++++++++------------- l10n/he/settings.po | 81 +++++++++++++++------------- l10n/hi/settings.po | 81 +++++++++++++++------------- l10n/hr/settings.po | 81 +++++++++++++++------------- l10n/hu_HU/settings.po | 81 +++++++++++++++------------- l10n/hy/settings.po | 81 +++++++++++++++------------- l10n/ia/settings.po | 81 +++++++++++++++------------- l10n/id/settings.po | 81 +++++++++++++++------------- l10n/is/settings.po | 81 +++++++++++++++------------- l10n/it/settings.po | 81 +++++++++++++++------------- l10n/ja_JP/settings.po | 81 +++++++++++++++------------- l10n/ka/settings.po | 81 +++++++++++++++------------- l10n/ka_GE/settings.po | 81 +++++++++++++++------------- l10n/km/settings.po | 81 +++++++++++++++------------- l10n/kn/settings.po | 81 +++++++++++++++------------- l10n/ko/settings.po | 81 +++++++++++++++------------- l10n/ku_IQ/settings.po | 81 +++++++++++++++------------- l10n/lb/settings.po | 81 +++++++++++++++------------- l10n/lt_LT/settings.po | 79 +++++++++++++++------------ l10n/lv/settings.po | 79 +++++++++++++++------------ l10n/mk/settings.po | 81 +++++++++++++++------------- l10n/ml_IN/settings.po | 81 +++++++++++++++------------- l10n/ms_MY/settings.po | 81 +++++++++++++++------------- l10n/my_MM/settings.po | 81 +++++++++++++++------------- l10n/nb_NO/settings.po | 81 +++++++++++++++------------- l10n/nds/settings.po | 81 +++++++++++++++------------- l10n/ne/settings.po | 81 +++++++++++++++------------- l10n/nl/settings.po | 81 +++++++++++++++------------- l10n/nn_NO/settings.po | 79 +++++++++++++++------------ l10n/nqo/settings.po | 81 +++++++++++++++------------- l10n/oc/settings.po | 81 +++++++++++++++------------- l10n/pa/settings.po | 81 +++++++++++++++------------- l10n/pl/settings.po | 81 +++++++++++++++------------- l10n/pt_BR/core.po | 8 +-- l10n/pt_BR/files.po | 8 +-- l10n/pt_BR/lib.po | 8 +-- l10n/pt_BR/settings.po | 81 +++++++++++++++------------- l10n/pt_PT/settings.po | 79 +++++++++++++++------------ l10n/ro/settings.po | 81 +++++++++++++++------------- l10n/ru/lib.po | 9 ++-- l10n/ru/settings.po | 81 +++++++++++++++------------- l10n/ru_RU/settings.po | 81 +++++++++++++++------------- l10n/si_LK/settings.po | 81 +++++++++++++++------------- l10n/sk/settings.po | 81 +++++++++++++++------------- l10n/sk_SK/settings.po | 81 +++++++++++++++------------- l10n/sl/core.po | 8 +-- l10n/sl/files.po | 8 +-- l10n/sl/lib.po | 12 ++--- l10n/sl/settings.po | 83 ++++++++++++++++------------- l10n/sq/settings.po | 81 +++++++++++++++------------- l10n/sr/settings.po | 81 +++++++++++++++------------- l10n/sr@latin/settings.po | 81 +++++++++++++++------------- l10n/sv/settings.po | 79 +++++++++++++++------------ l10n/sw_KE/settings.po | 81 +++++++++++++++------------- l10n/ta_LK/settings.po | 81 +++++++++++++++------------- l10n/te/settings.po | 81 +++++++++++++++------------- 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/private.pot | 2 +- l10n/templates/settings.pot | 79 +++++++++++++++------------ l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/settings.po | 81 +++++++++++++++------------- l10n/tr/core.po | 8 +-- l10n/tr/files.po | 10 ++-- l10n/tr/lib.po | 9 ++-- l10n/tr/settings.po | 81 +++++++++++++++------------- l10n/tzm/settings.po | 81 +++++++++++++++------------- l10n/ug/settings.po | 81 +++++++++++++++------------- l10n/uk/settings.po | 81 +++++++++++++++------------- l10n/ur_PK/settings.po | 81 +++++++++++++++------------- l10n/uz/settings.po | 81 +++++++++++++++------------- l10n/vi/settings.po | 81 +++++++++++++++------------- l10n/zh_CN/settings.po | 79 +++++++++++++++------------ l10n/zh_HK/settings.po | 81 +++++++++++++++------------- l10n/zh_TW/settings.po | 79 +++++++++++++++------------ lib/l10n/en_GB.php | 1 + lib/l10n/pt_BR.php | 1 + lib/l10n/ru.php | 1 + lib/l10n/sl.php | 6 +-- lib/l10n/tr.php | 1 + settings/l10n/ca.php | 1 - settings/l10n/cs_CZ.php | 1 - settings/l10n/da.php | 1 - settings/l10n/de.php | 1 - settings/l10n/de_CH.php | 1 - settings/l10n/de_DE.php | 1 - settings/l10n/en_GB.php | 1 - settings/l10n/es.php | 1 - settings/l10n/es_AR.php | 1 - settings/l10n/et_EE.php | 1 - settings/l10n/fr.php | 1 - settings/l10n/gl.php | 1 - settings/l10n/hu_HU.php | 1 - settings/l10n/it.php | 1 - settings/l10n/ja_JP.php | 1 - settings/l10n/lt_LT.php | 1 - settings/l10n/lv.php | 1 - settings/l10n/nl.php | 1 - settings/l10n/nn_NO.php | 1 - settings/l10n/pl.php | 1 - settings/l10n/pt_BR.php | 1 - settings/l10n/pt_PT.php | 1 - settings/l10n/ru.php | 1 - settings/l10n/sk_SK.php | 1 - settings/l10n/sv.php | 1 - settings/l10n/tr.php | 1 - settings/l10n/zh_CN.php | 1 - settings/l10n/zh_TW.php | 1 - 159 files changed, 4141 insertions(+), 3340 deletions(-) diff --git a/apps/files/l10n/en_GB.php b/apps/files/l10n/en_GB.php index 454d623a4d..b613723ff7 100644 --- a/apps/files/l10n/en_GB.php +++ b/apps/files/l10n/en_GB.php @@ -43,6 +43,7 @@ $TRANSLATIONS = array( "Could not rename file" => "Could not rename file", "replaced {new_name} with {old_name}" => "replaced {new_name} with {old_name}", "undo" => "undo", +"Error deleting file." => "Error deleting file.", "_%n folder_::_%n folders_" => array("%n folder","%n folders"), "_%n file_::_%n files_" => array("%n file","%n files"), "{dirs} and {files}" => "{dirs} and {files}", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 93d29aba67..dfce39bae8 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -6,6 +6,7 @@ $TRANSLATIONS = array( "File name must not contain \"/\". Please choose a different name." => "Tiedoston nimessä ei saa olla merkkiä \"/\". Valitse toinen nimi.", "The name %s is already used in the folder %s. Please choose a different name." => "Nimi %s on jo käytössä kansiossa %s. Valitse toinen nimi.", "Not a valid source" => "Virheellinen lähde", +"Error while downloading %s to %s" => "Virhe ladatessa kohdetta %s sijaintiin %s", "Error when creating the file" => "Virhe tiedostoa luotaessa", "Folder name cannot be empty." => "Kansion nimi ei voi olla tyhjä.", "Folder name must not contain \"/\". Please choose a different name." => "Kansion nimessä ei saa olla merkkiä \"/\". Valitse toinen nimi.", @@ -36,6 +37,7 @@ $TRANSLATIONS = array( "Pending" => "Odottaa", "Could not rename file" => "Tiedoston nimeäminen uudelleen epäonnistui", "undo" => "kumoa", +"Error deleting file." => "Virhe tiedostoa poistaessa.", "_%n folder_::_%n folders_" => array("%n kansio","%n kansiota"), "_%n file_::_%n files_" => array("%n tiedosto","%n tiedostoa"), "{dirs} and {files}" => "{dirs} ja {files}", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 217e9f4599..1bc612af77 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -43,6 +43,7 @@ $TRANSLATIONS = array( "Could not rename file" => "Não foi possível renomear o arquivo", "replaced {new_name} with {old_name}" => "Substituído {old_name} por {new_name} ", "undo" => "desfazer", +"Error deleting file." => "Erro eliminando o arquivo.", "_%n folder_::_%n folders_" => array("%n pasta","%n pastas"), "_%n file_::_%n files_" => array("%n arquivo","%n arquivos"), "{dirs} and {files}" => "{dirs} e {files}", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index d61442738e..819fb632d1 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -43,6 +43,7 @@ $TRANSLATIONS = array( "Could not rename file" => "Ni mogoče preimenovati datoteke", "replaced {new_name} with {old_name}" => "preimenovano ime {new_name} z imenom {old_name}", "undo" => "razveljavi", +"Error deleting file." => "Napaka brisanja datoteke.", "_%n folder_::_%n folders_" => array("%n mapa","%n mapi","%n mape","%n map"), "_%n file_::_%n files_" => array("%n datoteka","%n datoteki","%n datoteke","%n datotek"), "{dirs} and {files}" => "{dirs} in {files}", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 1faa3547fb..f844125112 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -1,6 +1,6 @@ "%s taşınamadı. Bu isimde dosya zaten var.", +"Could not move %s - File with this name already exists" => "%s taşınamadı - Bu isimde dosya zaten var", "Could not move %s" => "%s taşınamadı", "File name cannot be empty." => "Dosya adı boş olamaz.", "File name must not contain \"/\". Please choose a different name." => "Dosya adı \"/\" içermemelidir. Lütfen farklı bir isim seçin.", @@ -43,6 +43,7 @@ $TRANSLATIONS = array( "Could not rename file" => "Dosya adlandırılamadı", "replaced {new_name} with {old_name}" => "{new_name} ismi {old_name} ile değiştirildi", "undo" => "geri al", +"Error deleting file." => "Dosya silinirken hata.", "_%n folder_::_%n folders_" => array("%n dizin","%n dizin"), "_%n file_::_%n files_" => array("%n dosya","%n dosya"), "{dirs} and {files}" => "{dirs} ve {files}", diff --git a/core/l10n/en_GB.php b/core/l10n/en_GB.php index b13e44b64c..1ad9031e75 100644 --- a/core/l10n/en_GB.php +++ b/core/l10n/en_GB.php @@ -132,6 +132,7 @@ $TRANSLATIONS = array( "Access forbidden" => "Access denied", "Cloud not found" => "Cloud not found", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n", +"The share will expire on %s." => "The share will expire on %s.", "Cheers!" => "Cheers!", "Security Warning" => "Security Warning", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index e6f5512808..5e7a65d609 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -121,6 +121,7 @@ $TRANSLATIONS = array( "Access forbidden" => "Pääsy estetty", "Cloud not found" => "Pilveä ei löydy", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hei sinä!\n\n%s jakoi kohteen %s kanssasi.\nTutustu siihen: %s\n\n", +"The share will expire on %s." => "Jakaminen päättyy %s.", "Security Warning" => "Turvallisuusvaroitus", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "PHP-asennuksesi on haavoittuvainen NULL Byte -hyökkäykselle (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Päivitä PHP-asennus varmistaaksesi, että %s on turvallinen käyttää.", @@ -152,6 +153,8 @@ $TRANSLATIONS = array( "Alternative Logins" => "Vaihtoehtoiset kirjautumiset", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "Hei sinä!

%s jakoi kohteen »%s« kanssasi.
Tutustu siihen!

", "Updating ownCloud to version %s, this may take a while." => "Päivitetään ownCloud versioon %s, tämä saattaa kestää hetken.", +"This ownCloud instance is currently being updated, which may take a while." => "Tätä ownCloud-asennusta päivitetään parhaillaan, siinä saattaa kestää hetki.", +"Please reload this page after a short time to continue using ownCloud." => "Päivitä tämä sivu hetken kuluttua jatkaaksesi ownCloudin käyttämistä.", "Thank you for your patience." => "Kiitos kärsivällisyydestäsi." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 6978e9e17a..4fd427217d 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -132,6 +132,7 @@ $TRANSLATIONS = array( "Access forbidden" => "Acesso proibido", "Cloud not found" => "Cloud não encontrado", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Olá,\n\ngostaria que você soubesse que %s compartilhou %s com vecê.\nVeja isto: %s\n\n", +"The share will expire on %s." => "O compartilhamento irá expirar em %s.", "Cheers!" => "Saúde!", "Security Warning" => "Aviso de Segurança", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Sua versão do PHP está vulnerável ao ataque NULL Byte (CVE-2006-7243)", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 85958b0e81..ce1df56679 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -132,6 +132,7 @@ $TRANSLATIONS = array( "Access forbidden" => "Dostop je prepovedan", "Cloud not found" => "Oblaka ni mogoče najti", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Pozdravljeni,\n\noseba %s vam je omogočila souporabo %s.\nVir si lahko ogledate: %s\n\n", +"The share will expire on %s." => "Povezava souporabe bo potekla %s.", "Cheers!" => "Na zdravje!", "Security Warning" => "Varnostno opozorilo", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Uporabljena različica PHP je ranljiva za napad NULL Byte (CVE-2006-7243)", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index c97f2842f1..74eff9317c 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -132,6 +132,7 @@ $TRANSLATIONS = array( "Access forbidden" => "Erişim yasaklı", "Cloud not found" => "Bulut bulunamadı", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Merhaba,\n\nSadece %s sizinle %s paylaşımını yaptığını bildiriyoruz.\nBuradan bakabilirsiniz: %s\n\n", +"The share will expire on %s." => "Bu paylaşım %s tarihinde sona erecek.", "Cheers!" => "Şerefe!", "Security Warning" => "Güvenlik Uyarisi", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "PHP sürümünüz NULL Byte saldırısına açık (CVE-2006-7243)", diff --git a/l10n/ach/settings.po b/l10n/ach/settings.po index 4dfea85a8b..e61edf72f6 100644 --- a/l10n/ach/settings.po +++ b/l10n/ach/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-06 21:43-0500\n" -"PO-Revision-Date: 2013-11-07 02:43+0000\n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-22 02:06+0000\n" "Last-Translator: I Robot \n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Afrikaans (http://www.transifex.com/projects/p/owncloud/language/af/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "اللغه لا تعمل" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "الاتصال بالانترنت لا يعمل" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "مجدول" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "قم بتنفيذ مهمة واحدة مع كل صفحة تم تحميلها" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "مشاركة" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "السماح بالمشاركة عن طريق الAPI " -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "السماح للتطبيقات بالمشاركة عن طريق الAPI" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "السماح بالعناوين" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "السماح للمستعملين بمشاركة البنود للعموم عن طريق الروابط " -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "السماح بإعادة المشاركة " -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "السماح للمستخدمين باعادة مشاركة الملفات التي تم مشاركتها معهم" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "السماح للمستعملين بإعادة المشاركة مع أي أحد " -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "السماح للمستعمينٍ لإعادة المشاركة فقط مع المستعملين في مجموعاتهم" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "حماية" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "فرض HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "سجل" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "مستوى السجل" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "المزيد" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "أقل" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "إصدار" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Крон" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Споделяне" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Още" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "По-малко" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Версия" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "বেশী" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "কম" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "ভার্সন" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \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" @@ -283,18 +283,27 @@ msgid "Locale not working" msgstr "Locale no funciona" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "Les locale del sistema no es poden establir en %s. Això significa que hi poden haver problemes amb alguns caràcters en el nom dels fitxers. Us recomanem instal·lar els paquets necessaris al sistema per donar suport a %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "La connexió a internet no funciona" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -303,118 +312,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Aquest servidor no té cap connexió a internet que funcioni. Això significa que algunes de les característiques com el muntatge d'emmagatzemament extern, les notificacions quant a actualitzacions o la instal·lació d'aplicacions de tercers no funcionarà. L'accés remot a fitxers i l'enviament de correus electrònics podria tampoc no funcionar. Us suggerim que habiliteu la connexió a internet per aquest servidor si voleu tenir totes les característiques." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Executa una tasca per cada paquet carregat" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php està registrat en un servei webcron que fa una crida a cron.php cada 15 minuts a través de http." -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Utilitza el servei cron del sistema per fer una crida al fitxer cron.php cada 15 minuts." -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Compartir" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Habilita l'API de compartir" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Permet que les aplicacions utilitzin l'API de compartir" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Permet enllaços" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Permet als usuaris compartir elements amb el públic amb enllaços" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Permet pujada pública" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permet als usuaris habilitar pujades de tercers en les seves carpetes compartides al públic" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Permet compartir de nou" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Permet als usuaris compartir de nou elements ja compartits amb ells" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Permet compartir amb qualsevol" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Permet als usuaris compartir només amb els usuaris del seu grup" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "Permet notificacions per correu electrónic" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "Permet a l'usuari enviar notificacions de fitxers compartits per correu " -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Seguretat" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Força HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Força la connexió dels clients a %s a través d'una connexió encriptada." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Connecteu a %s a través de HTTPS per habilitar o inhabilitar l'accés SSL." -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Registre" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Nivell de registre" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Més" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Menys" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Versió" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \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" @@ -286,18 +286,27 @@ msgid "Locale not working" msgstr "Lokalizace nefunguje" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "Systémové nastavení lokalizace nemohlo být nastaveno na %s. To znamená, že se mohou vyskytnout problémy s některými znaky v názvech souborů. Důrazně doporučujeme nainstalovat do vašeho systému balíčky potřebné pro podporu %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Připojení k internetu nefunguje" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -306,118 +315,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Server nemá funkční připojení k internetu. Některé moduly jako např. externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Spustit jednu úlohu s každým načtením stránky" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php je registrován u služby webcron, aby zavolal cron.php jednou za 15 minut přes http." -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Použít systémovou službu cron pro zavolání cron.php každých 15 minut." -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Sdílení" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Povolit API sdílení" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Povolit aplikacím používat API sdílení" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Povolit odkazy" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Povolit uživatelům sdílet položky veřejně pomocí odkazů" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Povolit veřejné nahrávání souborů" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Povolit uživatelům, aby mohli ostatním umožnit nahrávat do jejich veřejně sdílené složky" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Povolit znovu-sdílení" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Povolit uživatelům sdílet s kýmkoliv" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "Povolit e-mailová upozornění" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Zabezpečení" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Vynutit HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Vynutí připojování klientů k %s šifrovaným spojením." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Připojte se k %s skrze HTTPS pro povolení nebo zakázání vynucování SSL." -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Záznam" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Úroveň zaznamenávání" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Více" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Méně" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Verze" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -284,18 +284,27 @@ msgid "Locale not working" msgstr "Landestandard fungerer ikke" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "Systemet kan ikke indstille systemets landestandard for %s. Det betyder, at der kan være problemer med visse tegn i filnavne. Vi anbefaler kraftigt, at installere de nødvendige pakker på dit system til at understøtte %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Internetforbindelse fungerer ikke" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -304,118 +313,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Denne ownCloud-server har ikke en fungerende forbindelse til internettet. Det betyder, at visse funktioner som montering af eksterne drev, oplysninger om opdatering eller installation af 3.-parts applikationer ikke fungerer. Det vil sandsynligvis heller ikke fungere at tilgå filer fra eksterne drev eller informationsemails. Vi opfordrer til at etablere forbindelse til internettet for denne server, såfremt du ønsker samtlige funktioner." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Udføre en opgave med hver side indlæst" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Aktiver Share API" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Tillad apps til at bruge Share API" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Tillad links" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Tillad brugere at dele elementer til offentligheden med links" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Tillad offentlig upload" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Tillad brugere at give andre mulighed for at uploade i deres offentligt delte mapper" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Tillad videredeling" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Tillad brugere at dele elementer delt med dem igen" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Tillad brugere at dele med alle" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Tillad brugere at kun dele med brugerne i deres grupper" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "Tillad mail underretninger" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "Tillad brugere at sende mail underretninger for delte filer" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Sikkerhed" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Gennemtving HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tving klienten til at forbinde til %s via en kryptetet forbindelse." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Forbind venligst til din %s via HTTPS for at aktivere eller deaktivere SSL tvang." -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Log" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Mere" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Mindre" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Version" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-22 02:06+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -287,18 +287,27 @@ msgid "Locale not working" msgstr "Ländereinstellung funktioniert nicht" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "Die System-Ländereinstellung kann nicht auf %s geändert werden. 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." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Keine Netzwerkverbindung" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -307,118 +316,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. 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 Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Führe eine Aufgabe mit jeder geladenen Seite aus" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php ist als Webcron-Dienst registriert, der die cron.php alle 15 Minuten per HTTP aufruft." -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Benutze den System-Crondienst um die cron.php alle 15 Minuten aufzurufen." -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Aktiviere Sharing-API" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Erlaubt Apps die Nutzung der Share-API" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Erlaubt Links" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Erlaubt Benutzern, Inhalte über öffentliche Links zu teilen" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Öffentliches Hochladen erlauben" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Erlaubt Benutzern die Freigabe anderer Benutzer in ihren öffentlich freigegebene Ordner hochladen zu dürfen" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Erlaubt erneutes Teilen" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Benutzern ihrer Gruppe zu teilen" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "Mail-Benachrichtigung erlauben" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Erzwinge HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Bitte verbinde dich zu deinem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Log" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Loglevel" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Mehr" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Weniger" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Version" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -282,18 +282,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -302,118 +311,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -290,18 +290,27 @@ msgid "Locale not working" msgstr "Die Lokalisierung funktioniert nicht" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "Die System-Ländereinstellung kann nicht auf %s geändert werden. 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." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Keine Internetverbindung" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -310,118 +319,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. 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 Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Eine Aufgabe bei jedem Laden der Seite ausführen" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Share-API aktivieren" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Anwendungen erlauben, die Share-API zu benutzen" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Links erlauben" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Erlaube öffentliches hochladen" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Erlaubt Benutzern die Freigabe anderer Benutzer in ihren öffentlich freigegebene Ordner hochladen zu dürfen" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Erlaube Weiterverteilen" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "HTTPS erzwingen" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Bitte verbinden Sie sich zu Ihrem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Log" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Mehr" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Weniger" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Version" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-22 02:06+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -288,18 +288,27 @@ msgid "Locale not working" msgstr "Die Lokalisierung funktioniert nicht" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "Die System-Ländereinstellung kann nicht auf %s geändert werden. 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." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Keine Internetverbindung" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -308,118 +317,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. 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 Internetverbindung für diesen Server zu aktivieren, wenn Sie alle Funktionen nutzen wollen." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Eine Aufgabe bei jedem Laden der Seite ausführen" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php ist als Webcron-Dienst registriert, der die cron.php alle 15 Minuten per HTTP aufruft." -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Benutzen Sie den System-Crondienst, um die cron.php alle 15 Minuten aufzurufen." -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Share-API aktivieren" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Anwendungen erlauben, die Share-API zu benutzen" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Links erlauben" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Öffentliches Hochladen erlauben" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Erlaubt Benutzern die Freigabe anderer Benutzer in ihren öffentlich freigegebene Ordner hochladen zu dürfen" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Erlaube Weiterverteilen" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "Mail-Benachrichtigung erlauben" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "HTTPS erzwingen" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Bitte verbinden Sie sich zu Ihrem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Log" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Mehr" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Weniger" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Version" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -287,18 +287,27 @@ msgid "Locale not working" msgstr "Η μετάφραση δεν δουλεύει" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Η σύνδεση στο διαδίκτυο δεν δουλεύει" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -307,118 +316,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Εκτέλεση μιας διεργασίας με κάθε σελίδα που φορτώνεται" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Διαμοιρασμός" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Ενεργοποίηση API Διαμοιρασμού" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Να επιτρέπονται σύνδεσμοι" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν δημόσια με συνδέσμους" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Να επιτρέπεται ο επαναδιαμοιρασμός" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Να επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Ασφάλεια" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Επιβολή χρήσης HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Καταγραφές" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Επίπεδο καταγραφής" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Περισσότερα" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Λιγότερα" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Έκδοση" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-11-21 21:05-0500\n" +"PO-Revision-Date: 2013-11-21 15:22+0000\n" +"Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -583,7 +583,7 @@ msgstr "Hey there,\n\njust letting you know that %s shared %s with you.\nView it #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "The share will expire on %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index 9b22108cae..8309d35dd6 100644 --- a/l10n/en_GB/files.po +++ b/l10n/en_GB/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 21:05-0500\n" +"PO-Revision-Date: 2013-11-21 15:22+0000\n" +"Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -202,7 +202,7 @@ msgstr "undo" #: js/filelist.js:576 msgid "Error deleting file." -msgstr "" +msgstr "Error deleting file." #: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" diff --git a/l10n/en_GB/lib.po b/l10n/en_GB/lib.po index 61cce784e0..3857ebb302 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_GB/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-21 15:22+0000\n" +"Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -91,7 +91,7 @@ msgstr "Selected files too large to generate zip file." msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "Please download the files separately in smaller chunks or kindly ask your administrator." #: private/installer.php:63 msgid "No source specified when installing app" diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index 689d713edc..8912a27e47 100644 --- a/l10n/en_GB/settings.po +++ b/l10n/en_GB/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-22 02:06+0000\n" +"Last-Translator: I Robot \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -282,18 +282,27 @@ msgid "Locale not working" msgstr "Locale not working" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "System locale can't be set 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." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Internet connection not working" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -302,118 +311,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don't work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Execute one task with each page loaded" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Use system's cron service to call the cron.php file every 15 minutes." -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Sharing" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Enable Share API" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Allow apps to use the Share API" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Allow links" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Allow users to share items to the public with links" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Allow public uploads" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Allow users to enable others to upload into their publicly shared folders" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Allow resharing" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Allow users to share items shared with them again" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Allow users to share with anyone" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Allow users to only share with users in their groups" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "Allow mail notification" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "Allow user to send mail notification for shared files" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Security" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Enforce HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forces the clients to connect to %s via an encrypted connection." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Log" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Log level" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "More" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Less" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Version" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Kunhavigo" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Kapabligi API-on por Kunhavigo" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Kapabligi aplikaĵojn uzi la API-on pri Kunhavigo" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Kapabligi ligilojn" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Kapabligi uzantojn kunhavigi erojn kun la publiko perligile" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Kapabligi rekunhavigon" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Kapabligi uzantojn rekunhavigi erojn kunhavigitajn kun ili" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Kapabligi uzantojn kunhavigi kun ĉiu ajn" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Kapabligi uzantojn nur kunhavigi kun uzantoj el siaj grupoj" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Protokolo" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Registronivelo" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Pli" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Malpli" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Eldono" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-22 02:06+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" @@ -293,18 +293,27 @@ msgid "Locale not working" msgstr "La configuración regional no está funcionando" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "La configuración regional del sistema no se puede ajustar a %s. Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivo. Le recomendamos instalar los paquetes necesarios en el sistema para soportar %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "La conexión a Internet no está funcionando" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -313,118 +322,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Este servidor no tiene conexión a Internet. Esto significa que algunas de las características no funcionarán, como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones, la instalación de aplicaciones de terceros, el acceso a los archivos de forma remota o el envío de correos electrónicos de notificación. Sugerimos habilitar una conexión a Internet en este servidor para disfrutar de todas las funciones." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Ejecutar una tarea con cada página cargada" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php se registra en un servicio webcron para llamar a cron.php cada 15 minutos a través de HTTP." -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Utiliza el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos." -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Compartiendo" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Activar API de Compartición" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones utilizar la API de Compartición" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Permitir a los usuarios compartir elementos con el público mediante enlaces" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Permitir subidas públicas" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir a los usuarios habilitar a otros para subir archivos en sus carpetas compartidas públicamente" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Permitir re-compartición" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Permitir a los usuarios compartir de nuevo elementos ya compartidos" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Permitir a los usuarios compartir con cualquier persona" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Permitir a los usuarios compartir sólo con los usuarios en sus grupos" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "Permitir notificaciones por correo electrónico" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor, conéctese a su %s a través de HTTPS para habilitar o deshabilitar la aplicación de SSL." -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Registro" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Nivel de registro" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Más" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Menos" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Versión" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 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" @@ -284,18 +284,27 @@ msgid "Locale not working" msgstr "\"Locale\" no está funcionando" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "No se pudo asignar la localización del sistema a %s. Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos. Recomendamos fuertemente instalar los paquetes de sistema requeridos para poder dar soporte a %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "La conexión a Internet no esta funcionando. " -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -304,118 +313,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "El servidor no posee una conexión a Internet activa. Esto significa que algunas características como el montaje de un almacenamiento externo, las notificaciones acerca de actualizaciones o la instalación de aplicaciones de terceros no funcionarán. El acceso a archivos de forma remota y el envío de correos con notificaciones es posible que tampoco funcionen. Sugerimos habilitar la conexión a Internet para este servidor si deseas tener todas estas características." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Ejecutá una tarea con cada pagina cargada." -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Compartiendo" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Habilitar Share API" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones usar la Share API" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Permitir a los usuarios compartir enlaces públicos" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Permitir subidas públicas" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir que los usuarios autoricen a otros a subir archivos en sus directorios públicos compartidos" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Permitir Re-Compartir" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Permite a los usuarios volver a compartir items que les fueron compartidos" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Permitir a los usuarios compartir con cualquiera." -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Permitir a los usuarios compartir sólo con los de sus mismos grupos" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Fuerza al cliente a conectarse a %s por medio de una conexión encriptada." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor conéctese a su %s por medio de HTTPS para habilitar o deshabilitar la característica SSL" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Log" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Nivel de Log" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Más" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Menos" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Versión" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-22 02:06+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" @@ -283,18 +283,27 @@ msgid "Locale not working" msgstr "Lokalisatsioon ei toimi" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "Süsteemi lokaliseeringut ei saa panna %s. See tähendab, et võib esineda probleeme teatud tähemärkidega failide nimedes. Soovitame tungivalt paigaldada süsteemi vajalikud pakid toetamaks %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Internetiühendus ei toimi" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -303,118 +312,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Serveril puudub toimiv internetiühendus. See tähendab, et mõned funktsionaalsused, nagu näiteks väliste andmehoidlate ühendamine, teavitused uuendustest või kolmandate osapoolte rakenduste paigaldamine ei tööta. Eemalt failidele ligipääs ning teadete saatmine emailiga ei pruugi samuti toimida. Kui soovid täielikku funktsionaalsust, siis soovitame serverile tagada ligipääs internetti." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Käivita toiming igal lehe laadimisel" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php on registreeritud webcron teenuses, et käivitada fail cron.php iga 15 minuti tagant üle http." -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Kasuta süsteemi cron teenust, et käivitada fail cron.php iga 15 minuti tagant." -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Jagamine" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Luba Share API" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Luba rakendustel kasutada Share API-t" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Luba lingid" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Luba kasutajatel jagada kirjeid avalike linkidega" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Luba avalikud üleslaadimised" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Luba kasutajatel üleslaadimine teiste poolt oma avalikult jagatud kataloogidesse " -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Luba edasijagamine" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Luba kasutajatel jagada edasi kirjeid, mida on neile jagatud" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Luba kasutajatel kõigiga jagada" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "Luba teavitused e-postiga" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "Luba kasutajatel saata jagatud failide kohta e-postiga teavitusi" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Turvalisus" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Sunni peale HTTPS-i kasutamine" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Sunnib kliente %s ühenduma krüpteeritult." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Palun ühendu oma %s üle HTTPS või keela SSL kasutamine." -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Logi" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Logi tase" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Rohkem" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Vähem" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Versioon" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -284,18 +284,27 @@ msgid "Locale not working" msgstr "Lokala ez dabil" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Interneteko konexioak ez du funtzionatzen" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -304,118 +313,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Exekutatu zeregin bat orri karga bakoitzean" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Partekatzea" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Gaitu Elkarbanatze APIa" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Baimendu aplikazioak Elkarbanatze APIa erabiltzeko" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Baimendu loturak" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Baimendu erabiltzaileak loturen bidez fitxategiak publikoki elkarbanatzen" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Baimendu igoera publikoak" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Baimendu erabiltzaileak besteak bere partekatutako karpetetan fitxategiak igotzea" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Baimendu birpartekatzea" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Baimendu erabiltzaileak haiekin elkarbanatutako fitxategiak berriz ere elkarbanatzen" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Baimendu erabiltzaileak edonorekin elkarbanatzen" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin elkarbanatzen" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Segurtasuna" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Behartu HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Bezeroak %s-ra konexio enkriptatu baten bidez konektatzera behartzen ditu." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Mesedez konektatu zure %s-ra HTTPS bidez SSL zehaztapenak aldatzeko." -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Egunkaria" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Erregistro maila" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Gehiago" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Gutxiago" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Bertsioa" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -282,18 +282,27 @@ msgid "Locale not working" msgstr "زبان محلی کار نمی کند." #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "اتصال اینترنت کار نمی کند" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -302,118 +311,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "زمانبند" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "اجرای یک وظیفه با هر بار بارگذاری صفحه" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "اشتراک گذاری" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "فعال کردن API اشتراک گذاری" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "اجازه ی برنامه ها برای استفاده از API اشتراک گذاری" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "اجازه ی لینک ها" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "اجازه دادن به کاربران برای اشتراک گذاری آیتم ها با عموم از طریق پیوند ها" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "مجوز اشتراک گذاری مجدد" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "اجازه به کاربران برای اشتراک گذاری دوباره با آنها" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "اجازه به کابران برای اشتراک گذاری با همه" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "اجازه به کاربران برای اشتراک گذاری ، تنها با دیگر کابران گروه خودشان" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "امنیت" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "وادار کردن HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "کارنامه" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "سطح ورود" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "بیش‌تر" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "کم‌تر" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "نسخه" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-11-21 21:05-0500\n" +"PO-Revision-Date: 2013-11-21 15:22+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -584,7 +584,7 @@ msgstr "Hei sinä!\n\n%s jakoi kohteen %s kanssasi.\nTutustu siihen: %s\n\n" #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "Jakaminen päättyy %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" @@ -741,11 +741,11 @@ msgstr "Päivitetään ownCloud versioon %s, tämä saattaa kestää hetken." #: templates/update.user.php:3 msgid "" "This ownCloud instance is currently being updated, which may take a while." -msgstr "" +msgstr "Tätä ownCloud-asennusta päivitetään parhaillaan, siinä saattaa kestää hetki." #: templates/update.user.php:4 msgid "Please reload this page after a short time to continue using ownCloud." -msgstr "" +msgstr "Päivitä tämä sivu hetken kuluttua jatkaaksesi ownCloudin käyttämistä." #: templates/update.user.php:5 msgid "" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index de2ba9369b..51c1d1eae2 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 21:05-0500\n" +"PO-Revision-Date: 2013-11-21 15:22+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -50,7 +50,7 @@ msgstr "Virheellinen lähde" #: ajax/newfile.php:94 #, php-format msgid "Error while downloading %s to %s" -msgstr "" +msgstr "Virhe ladatessa kohdetta %s sijaintiin %s" #: ajax/newfile.php:128 msgid "Error when creating the file" @@ -202,7 +202,7 @@ msgstr "kumoa" #: js/filelist.js:576 msgid "Error deleting file." -msgstr "" +msgstr "Virhe tiedostoa poistaessa." #: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 3cb91db37c..c37bd2f1a4 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-22 02:06+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -282,18 +282,27 @@ msgid "Locale not working" msgstr "Maa-asetus ei toimi" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Internet-yhteys ei toimi" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -302,118 +311,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Käytä järjestelmän cron-palvelua cron.php-tiedoston kutsumiseen 15 minuutin välein" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Jakaminen" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Käytä jakamisen ohjelmointirajapintaa" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Salli sovellusten käyttää jakamisen ohjelmointirajapintaa" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Salli linkit" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Salli käyttäjien jakaa kohteita käyttäen linkkejä" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Salli julkiset lähetykset" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Salli uudelleenjakaminen" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Mahdollistaa käyttäjien jakavan uudelleen heidän kanssaan jaettuja kohteita" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Salli käyttäjien jakaa kenen tahansa kanssa" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Salli jakaminen vain samoissa ryhmissä olevien käyttäjien kesken" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "Salli sähköposti-ilmoitukset" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Tietoturva" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Pakota HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Pakottaa asiakasohjelmistot ottamaan yhteyden %siin salatun yhteyden kautta." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Loki" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Lokitaso" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Enemmän" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Vähemmän" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Versio" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-22 02:06+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" @@ -288,18 +288,27 @@ msgid "Locale not working" msgstr "Localisation non fonctionnelle" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "Le localisation du système n'a pu être configurée à %s. Cela signifie qu'il pourrait y avoir des problèmes avec certains caractères dans les noms de fichiers. Il est fortement recommandé d'installer les paquets requis pour le support de %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "La connexion internet ne fonctionne pas" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -308,118 +317,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Ce serveur ne peut se connecter à internet. Cela signifie que certaines fonctionnalités, telles que le montage de supports de stockage distants, les notifications de mises à jour ou l'installation d'applications tierces ne fonctionneront pas. L'accès aux fichiers à distance, ainsi que les notifications par mails ne seront pas fonctionnels également. Il est recommandé d'activer la connexion internet pour ce serveur si vous souhaitez disposer de l'ensemble des fonctionnalités offertes." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Exécute une tâche à chaque chargement de page" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php est enregistré en tant que service webcron pour appeler cron.php toutes les 15 minutes via http." -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Utilise le service cron du système pour appeler le fichier cron.php toutes les 15 minutes." -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Partage" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Activer l'API de partage" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Autoriser les applications à utiliser l'API de partage" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Autoriser les liens" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Autoriser les utilisateurs à partager des éléments publiquement à l'aide de liens" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Autoriser les téléversements publics" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permet d'autoriser les autres utilisateurs à téléverser dans le dossier partagé public de l'utilisateur" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Autoriser le repartage" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Autoriser les utilisateurs à partager des éléments qui ont été partagés avec eux" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Autoriser les utilisateurs à partager avec tout le monde" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Autoriser les utilisateurs à partager avec des utilisateurs de leur groupe uniquement" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "Autoriser les notifications par couriel" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "Autoriser l'utilisateur à envoyer une notification par couriel concernant les fichiers partagés" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Sécurité" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Forcer HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forcer les clients à se connecter à %s via une connexion chiffrée." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Veuillez vous connecter à cette instance %s via HTTPS pour activer ou désactiver SSL." -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Log" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Niveau de log" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Plus" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Moins" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Version" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-22 02:06+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" @@ -282,18 +282,27 @@ msgid "Locale not working" msgstr "A configuración rexional non funciona" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "A configuración rexional do sistema non pode estabelecerse a %s. Isto significa que pode haber problemas con certos caracteres nos nomes de ficheiro. Recomendámoslle que instale os paquetes necesarios no sistema para aceptar o %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "A conexión á Internet non funciona" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -302,118 +311,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Este servidor non ten conexión a Internet. Isto significa que algunhas das funcionalidades como a montaxe de almacenamento externo, as notificacións sobre actualizacións ou instalación de aplicativos de terceiros non funcionan. O acceso aos ficheiros de forma remota e o envío de mensaxes de notificación poderían non funcionar. Suxerímoslle que active a conexión a Internet deste servidor se quere dispor de todas as funcionalidades." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Executar unha tarefa con cada páxina cargada" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php está rexistrado nun servizo de WebCron para chamar a cron.php cada 15 minutos a través de HTTP." -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Use o servizo de sistema cron para chamar ao ficheiro cron.php cada 15 minutos." -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Compartindo" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Activar o API para compartir" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Permitir que os aplicativos empreguen o API para compartir" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Permitir ligazóns" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Permitir que os usuarios compartan elementos ao público con ligazóns" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Permitir os envíos públicos" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir que os usuarios lle permitan a outros enviar aos seus cartafoles compartidos publicamente" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Permitir compartir" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Permitir que os usuarios compartan de novo os elementos compartidos con eles" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Permitir que os usuarios compartan con calquera" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Permitir que os usuarios compartan só cos usuarios dos seus grupos" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "Permitir o envío de notificacións por correo" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "Permitir que os usuarios envíen notificacións por correo dos ficheiros compartidos" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Seguranza" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forzar que os clientes se conecten a %s empregando unha conexión cifrada." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Conéctese a %s empregando HTTPS para activar ou desactivar o forzado de SSL." -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Rexistro" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Nivel de rexistro" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Máis" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Menos" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Versión" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -282,18 +282,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "החיבור לאינטרנט אינו פעיל" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -302,118 +311,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "יש להפעיל משימה אחת עם כל עמוד שנטען" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "שיתוף" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "הפעלת API השיתוף" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "לאפשר ליישום להשתמש ב־API השיתוף" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "לאפשר קישורים" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "לאפשר למשתמשים לשתף פריטים " -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "לאפשר שיתוף מחדש" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "לאפשר למשתמשים לשתף הלאה פריטים ששותפו אתם" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "לאפשר למשתמשים לשתף עם כל אחד" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "לאפשר למשתמשים לשתף עם משתמשים בקבוצות שלהם בלבד" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "אבטחה" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "לאלץ HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "יומן" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "רמת הדיווח" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "יותר" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "פחות" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "גרסא" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "dnevnik" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "više" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-22 02:06+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -285,18 +285,27 @@ msgid "Locale not working" msgstr "A nyelvi lokalizáció nem működik" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "Ezen az ownCloud kiszolgálón nem használható a %s nyelvi beállítás. Ez azt jelenti, hogy a fájlnevekben gond lehet bizonyos karakterekkel. Nyomatékosan ajánlott, hogy telepítse a szükséges csomagokat annak érdekében, hogy a rendszer támogassa a %s beállítást." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Az internet kapcsolat nem működik" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -305,118 +314,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "A kiszolgálónak nincs müködő internet kapcsolata. Ez azt jelenti, hogy néhány képességét a kiszolgálónak mint például becsatolni egy külső tárolót, értesítések külső gyártók programjának frissítéséről nem fog müködni. A távolról való elérése a fileoknak és email értesítések küldése szintén nem fog müködni. Ha használni szeretnéd mindezeket a képességeit a szervernek, ahoz javasoljuk, hogy engedélyezzed az internet elérését a szervernek." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Ütemezett feladatok" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Egy-egy feladat végrehajtása minden alkalommal, amikor egy weboldalt letöltenek" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "A cron.php webcron szolgáltatásként van regisztrálva, hogy 15 percenként egyszer lefuttassa a cron.php-t." -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Használjuk a rendszer cron szolgáltatását, hogy 15 percenként egyszer futtassa le a cron.php-t." -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Megosztás" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "A megosztás API-jának engedélyezése" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Lehetővé teszi, hogy a programmodulok is használhassák a megosztást" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Linkek engedélyezése" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Lehetővé teszi, hogy a felhasználók linkek segítségével külsősökkel is megoszthassák az adataikat" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Feltöltést engedélyezése mindenki számára" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Engedélyezni a felhasználóknak, hogy beállíithassák, hogy mások feltölthetnek a nyilvánosan megosztott mappákba." -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "A továbbosztás engedélyezése" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Lehetővé teszi, hogy a felhasználók a velük megosztott állományokat megosszák egy további, harmadik féllel" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "A felhasználók bárkivel megoszthatják állományaikat" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "A felhasználók csak olyanokkal oszthatják meg állományaikat, akikkel közös csoportban vannak" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "E-mail értesítések engedélyezése" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "Engedélyezi, hogy a felhasználók e-mail értesítést küldhessenek a megosztott fájlokról." -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Biztonság" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Kötelező HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Kötelezővé teszi, hogy a böngészőprogramok titkosított csatornán kapcsolódjanak a %s szolgáltatáshoz." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Kérjük kapcsolodjon a %s rendszerhez HTTPS protokollon keresztül, hogy be vagy ki kapcsoljaa kötelező SSL beállítást." -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Naplózás" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Naplózási szint" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Több" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Kevesebb" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Verzió" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Registro" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Plus" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "Kode pelokalan tidak berfungsi" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Koneksi internet tidak berfungsi" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Jalankan tugas setiap kali halaman dimuat" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Berbagi" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Aktifkan API Pembagian" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Izinkan aplikasi untuk menggunakan API Pembagian" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Izinkan tautan" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Izinkan pengguna untuk berbagi item kepada publik lewat tautan" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Izinkan pembagian ulang" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Izinkan pengguna untuk berbagi kembali item yang dibagikan kepada mereka." -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Izinkan pengguna untuk berbagi kepada siapa saja" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Hanya izinkan pengguna untuk berbagi dengan pengguna pada grup mereka sendiri" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Keamanan" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Selalu Gunakan HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Catat" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Level pencatatan" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Lainnya" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Ciutkan" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Versi" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -282,18 +282,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -302,118 +311,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Meira" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Minna" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Útgáfa" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-22 02:06+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" @@ -285,18 +285,27 @@ msgid "Locale not working" msgstr "Locale non funzionante" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "La localizzazione di sistema è impostata a %s. Ciò significa che potrebbero verificarsi dei problemi con alcuni caratteri nei nomi dei file. Consigliamo vivamente di installare i pacchetti necessari a supportare %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Concessione Internet non funzionante" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -305,118 +314,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Questo server ownCloud non ha una connessione a Internet funzionante. Ciò significa che alcune delle funzionalità come il montaggio di archivi esterni, le notifiche degli aggiornamenti o l'installazione di applicazioni di terze parti non funzioneranno. L'accesso remoto ai file e l'invio di email di notifica potrebbero non funzionare. Ti suggeriamo di abilitare la connessione a Internet del server se desideri disporre di tutte le funzionalità." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Esegui un'operazione con ogni pagina caricata" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php è registrato su un servizio webcron per invocare cron.php ogni 15 minuti su http." -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Usa il servizio cron di sistema per invocare il file cron.php ogni 15 minuti." -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Condivisione" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Abilita API di condivisione" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Consenti alle applicazioni di utilizzare le API di condivisione" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Consenti collegamenti" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Consenti agli utenti di condividere pubblicamente elementi tramite collegamenti" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Consenti caricamenti pubblici" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Consenti agli utenti di abilitare altri al caricamento nelle loro cartelle pubbliche condivise" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Consenti la ri-condivisione" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Consenti agli utenti di condividere a loro volta elementi condivisi da altri" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Consenti agli utenti di condividere con chiunque" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Consenti agli utenti di condividere solo con utenti dei loro gruppi" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "Consenti le notifiche tramite posta elettronica" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "Consenti all'utente di inviare notifiche tramite posta elettronica per i file condivisi" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Protezione" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Forza HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forza i client a connettersi a %s tramite una connessione cifrata." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Connettiti al tuo %s tramite HTTPS per abilitare o disabilitare l'applicazione di SSL." -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Log" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Livello di log" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Altro" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Meno" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Versione" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-22 02:06+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -284,18 +284,27 @@ msgid "Locale not working" msgstr "ロケールが動作していません" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "システムロケールが %s に設定出来ません。この場合、ファイル名にそのロケールの文字が入っていたときに問題になる可能性があります。必要なパッケージをシステムにインストールして、%s をサポートすることを強くお勧めします。" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "インターネット接続が動作していません" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -304,118 +313,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "このサーバーはインターネットに接続していません。この場合、外部ストレージのマウント、更新の通知やサードパーティアプリといったいくつかの機能が使えません。また、リモート接続でのファイルアクセス、通知メールの送信と言った機能も利用できないかもしれません。全ての機能を利用したいのであれば、このサーバーからインターネットに接続できるようにすることをお勧めします。" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "各ページの読み込み時にタスクを実行する" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "HTTPを通して15分間隔で cron.php を実行するように、cron.php は webcron サービスに登録されています。" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "15分間隔で cron.php ファイルを実行するためにシステムの cron サービスを利用する" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "共有" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "共有APIを有効にする" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "アプリからの共有APIの利用を許可する" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "リンクを許可する" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "リンクによりアイテムを公開することを許可する" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "パブリックなアップロードを許可" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "公開している共有フォルダへのアップロードを共有しているメンバーにも許可" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "再共有を許可する" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "ユーザが共有しているアイテムの再共有を許可する" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "ユーザが誰とでも共有することを許可する" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "ユーザにグループ内のユーザとのみ共有を許可する" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "メール通知を許可" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "共有ファイルに関するメール通知の送信をユーザに許可する" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "セキュリティ" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "常にHTTPSを使用する" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "クライアントから %sへの接続を常に暗号化する。" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "強制的なSSL接続を有効/無効にするために、HTTPS経由で %s へ接続してください。" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "ログ" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "ログレベル" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "もっと見る" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "閉じる" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "バージョン" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -282,18 +282,27 @@ msgid "Locale not working" msgstr "ლოკალიზაცია არ მუშაობს" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "ინტერნეტ კავშირი არ მუშაობს" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -302,118 +311,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron–ი" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "გაუშვი თითო მოქმედება ყველა ჩატვირთულ გვერდზე" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "გაზიარება" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Share API–ის ჩართვა" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "დაუშვი აპლიკაციების უფლება Share API –ზე" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "ლინკების დაშვება" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "მიეცი მომხმარებლებს უფლება რომ გააზიაროს ელემენტები საჯაროდ ლინკებით" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "გადაზიარების დაშვება" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "მიეცით მომხმარებლებს უფლება რომ გააზიაროს მისთვის გაზიარებული" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "მიეცით უფლება მომხმარებლებს გააზიაროს ყველასთვის" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "მიეცით უფლება მომხმარებლებს რომ გააზიაროს მხოლოდ თავიანთი ჯგუფისთვის" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "უსაფრთხოება" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "HTTPS–ის ჩართვა" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "ლოგი" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "ლოგირების დონე" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "უფრო მეტი" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "უფრო ნაკლები" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "ვერსია" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -283,18 +283,27 @@ msgid "Locale not working" msgstr "로캘이 작동하지 않음" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "인터넷에 연결할 수 없음" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -303,118 +312,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "크론" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "개별 페이지를 불러올 때마다 실행" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "공유" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "공유 API 사용하기" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "앱에서 공유 API를 사용할 수 있도록 허용" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "링크 허용" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "사용자가 개별 항목의 링크를 공유할 수 있도록 허용" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "퍼블릭 업로드 허용" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "재공유 허용" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "사용자에게 공유된 항목을 다시 공유할 수 있도록 허용" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "누구나와 공유할 수 있도록 허용" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "사용자가 속해 있는 그룹의 사용자와만 공유할 수 있도록 허용" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "메일 알림을 허용" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "사용자에게 공유 파일에 대한 메일 알림을 허용합니다" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "보안" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "HTTPS 강제 사용" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "로그" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "로그 단계" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "더 중요함" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "덜 중요함" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "버전" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -282,18 +282,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -302,118 +311,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Share API aschalten" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Erlab Apps d'Share API ze benotzen" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Links erlaben" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Resharing erlaben" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Useren erlaben mat egal wiem ze sharen" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Useren nëmmen erlaben mat Useren aus hirer Grupp ze sharen" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Log" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Méi" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Manner" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -286,18 +286,27 @@ msgid "Locale not working" msgstr "Lokalė neveikia" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "Negalima nustatyti sistemos lokalės į %s. Tai reiškia, kad gali būti problemų su tam tikrais simboliais failų pavadinimuose. Labai rekomenduojame įdiegti reikalingus paketus Jūsų sistemoje, kad palaikyti %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Nėra interneto ryšio" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -306,118 +315,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Šis serveris neturi veikiančio ryšio. Tai reiškia, kas kai kurios funkcijos kaip išorinės saugyklos prijungimas, perspėjimai apie atnaujinimus ar trečių šalių programų įdiegimas neveikia. Failų pasiekimas iš kitur ir pranešimų siuntimas el. paštu gali taip pat neveikti. Rekomenduojame įjungti interneto ryšį šiame serveryje, jei norite naudoti visas funkcijas." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Įvykdyti vieną užduotį su kiekvieno puslapio įkėlimu" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php yra registruotas tinklapio suplanuotų užduočių paslaugose, kad iškviesti cron.php kas 15 minučių per http." -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Naudoti sistemos planuotų užduočių paslaugą, kad iškvieti cron.php kas 15 minučių." -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Dalijimasis" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Įjungti Share API" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Leidžia programoms naudoti Share API" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Lesti nuorodas" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Leisti naudotojams viešai dalintis elementais su nuorodomis" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Leisti viešus įkėlimus" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Leisti naudotojams įgalinti kitus įkelti į savo viešai dalinamus aplankus" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Leisti dalintis" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Leisti naudotojams toliau dalintis elementais pasidalintais su jais" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Leisti naudotojams dalintis su bet kuo" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Leisti naudotojams dalintis tik su naudotojais savo grupėje" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "Leisti el. pašto perspėjimą" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "Leisti naudotojui siųsti perspėjimą el. laišku dėl bendrinamų failų" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Saugumas" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Reikalauti HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Verčia klientus jungtis prie %s per šifruotą ryšį." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Prašome prisijungti prie savo %s per HTTPS, kad įjungti ar išjungti SSL reikalavimą." -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Žurnalas" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Žurnalo išsamumas" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Daugiau" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Mažiau" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Versija" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -282,18 +282,27 @@ msgid "Locale not working" msgstr "Lokāle nestrādā" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "Sistēmas lokalizāciju nevar nomainīt uz %s. Tas nozīmē ka var rasties sarežģījumi ar dažu burtu attēlošanu failu nosaukumos. Ir rekomendēts uzstādīt nepieciešamās pakotnes lai atbalstītu %s lokalizāciju." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Interneta savienojums nedarbojas" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -302,118 +311,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Šim serverim nav savienojums ar internetu. Tas nozīmē ka nebūs tādas iespējas kā ārējo datu nesēju montēšana, paziņojumi par atjauninājumiem vai citu izstrādātāju programmu uzstādīšana. Attālināta failu piekļuve vai paziņojumu epastu sūtīšana iespējams arī nedarbosies. Ir rekomendēts iespējot interneta savienojumu lai gūtu iespēju izmantotu visus risinājumus." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Izpildīt vienu uzdevumu ar katru ielādēto lapu" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Dalīšanās" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Aktivēt koplietošanas API" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Ļauj lietotnēm izmantot koplietošanas API" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Atļaut saites" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Ļaut lietotājiem publiski dalīties ar vienumiem, izmantojot saites" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Atļaut publisko augšupielādi" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Ļaut lietotājiem iespējot atļaut citiem augšupielādēt failus viņu publiskajās mapēs" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Atļaut atkārtotu koplietošanu" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Ļaut lietotājiem dalīties ar vienumiem atkārtoti" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Ļaut lietotājiem dalīties ar visiem" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Ļaut lietotājiem dalīties ar lietotājiem to grupās" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Drošība" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Uzspiest HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Uzspiest klientiem pieslēgties pie %s caur šifrētu savienojumu." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Lūdzu slēdzieties pie %s caur HTTPS lai iespējotu vai atspējotu SSL izpildīšanu" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Žurnāls" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Žurnāla līmenis" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Vairāk" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Mazāk" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Versija" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -282,18 +282,27 @@ msgid "Locale not working" msgstr "Локалето не функционира" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -302,118 +311,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Споделување" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Овозможи го API-то за споделување" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Дозволете апликациите да го користат API-то за споделување" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Дозволи врски" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Дозволи јавен аплоуд" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Овозможи повторно споделување" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Овозможи корисниците да споделуваат со секого" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Овозможи корисниците да споделуваат со корисници од своите групи" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "Овозможи известување по електронска пошта" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "Овозможи корисник да испраќа известување по електронска пошта за споделени датотеки" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Безбедност" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Наметни HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Записник" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Ниво на логирање" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Повеќе" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Помалку" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Верзија" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Log" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Tahap Log" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Lanjutan" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -283,18 +283,27 @@ msgid "Locale not working" msgstr "Språk virker ikke" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Ingen internettilkopling" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -303,118 +312,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Utfør en oppgave med hver side som blir lastet" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Aktiver API for Deling" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Tillat apps å bruke API for Deling" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Tillat lenker" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Tillat brukere å dele filer med lenker" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "TIllat videredeling" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Tillat brukere å dele filer som allerede har blitt delt med dem" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Tillat brukere å dele med alle" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Tillat kun deling med andre brukere i samme gruppe" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Sikkerhet" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Tving HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Logg" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Loggnivå" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Mer" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Mindre" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Versjon" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-22 02:06+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" @@ -285,18 +285,27 @@ msgid "Locale not working" msgstr "Taalbestand werkt niet" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "De systeemtaal kan niet worden ingesteld op %s. Hierdoor kunnen er problemen optreden met bepaalde karakters in bestandsnamen. Het wordt sterk aangeraden om de vereiste pakketen op uw systeem te installeren, zodat %s ondersteund wordt." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Internet verbinding werkt niet" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -305,118 +314,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Deze server heeft geen actieve internetverbinding. Dat betekent dat sommige functies, zoals aankoppelen van externe opslag, notificaties over updates of installatie van apps van 3e partijen niet werken. Ook het benaderen van bestanden vanaf een remote locatie en het versturen van notificatie emails kan mislukken. We adviseren om de internetverbinding voor deze server in te schakelen als u alle functies wilt gebruiken." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Bij laden van elke pagina één taak uitvoeren" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php is geregisteerd bij een webcron service om elke 15 minuten cron.php over http aan te roepen." -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Gebruik de systeem cron service om cron.php elke 15 minuten aan te roepen." -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Delen" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Activeren Share API" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Apps toestaan de Share API te gebruiken" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Toestaan links" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Toestaan dat gebruikers objecten met links delen met anderen" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Sta publieke uploads toe" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Sta gebruikers toe anderen in hun publiek gedeelde mappen bestanden te uploaden" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Toestaan opnieuw delen" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Toestaan dat gebruikers objecten die anderen met hun gedeeld hebben zelf ook weer delen met anderen" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Toestaan dat gebruikers met iedereen delen" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Instellen dat gebruikers alleen met leden binnen hun groepen delen" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "Toestaan e-mailnotificaties" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Beveiliging" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Afdwingen HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Dwingt de clients om een versleutelde verbinding te maken met %s" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Maak verbinding naar uw %s via HTTPS om een geforceerde versleutelde verbinding in- of uit te schakelen." -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Log" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Meer" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Minder" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Versie" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -284,18 +284,27 @@ msgid "Locale not working" msgstr "Regionaldata fungerer ikkje" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "Klarte ikkje endra regionaldata for systemet til %s. Dette vil seia at det kan verta problem med visse teikn i filnamn. Me rår deg sterkt til å installera dei kravde pakkene på systemet ditt så du får støtte for %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Nettilkoplinga fungerer ikkje" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -304,118 +313,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Denne tenaren har ikkje ei fungerande nettilkopling. Dette vil seia at visse funksjonar, som montering av ekstern lagring, meldingar om oppdateringar eller installering av tredjepartsprogram, ikkje vil fungera. Det kan òg henda at du ikkje får tilgang til filene dine utanfrå, eller ikkje får sendt varslingsepostar. Me rår deg til å skru på nettilkoplinga for denne tenaren viss du ønskjer desse funksjonane." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Utfør éi oppgåve for kvar sidelasting" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Slå på API-et for deling" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "La app-ar bruka API-et til deling" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Tillat lenkjer" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "La brukarar dela ting offentleg med lenkjer" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Tillat offentlege opplastingar" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "La brukarar tillata andre å lasta opp i deira offentleg delte mapper" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Tillat vidaredeling" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "La brukarar vidaredela delte ting" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "La brukarar dela med kven som helst" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "La brukarar dela berre med brukarar i deira grupper" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Tryggleik" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Krev HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tvingar klientar til å kopla til %s med ei kryptert tilkopling." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Ver venleg å kopla til %s med HTTPS (eller skru av SSL-kravet)." -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Logg" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Log nivå" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Meir" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Mindre" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Utgåve" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Executa un prètfach amb cada pagina cargada" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Al partejar" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Activa API partejada" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Jornal" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Mai d'aquò" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -282,18 +282,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -302,118 +311,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-22 02:06+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -283,18 +283,27 @@ msgid "Locale not working" msgstr "Lokalizacja nie działa" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "System lokalny nie może włączyć ustawień regionalnych %s. Może to oznaczać, że wystąpiły problemy z niektórymi znakami w nazwach plików. Zalecamy instalację wymaganych pakietów na tym systemie w celu wsparcia %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Połączenie internetowe nie działa" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -303,118 +312,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Ten serwer OwnCloud nie ma połączenia z Internetem. Oznacza to, że niektóre z funkcji, takich jak montowanie zewnętrznych zasobów, powiadomienia o aktualizacji lub 3-cie aplikacje mogą nie działać. Dostęp do plików z zewnątrz i wysyłanie powiadomienia e-mail nie może również działać. Sugerujemy, aby włączyć połączenia internetowego dla tego serwera, jeśli chcesz mieć wszystkie opcje." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Wykonuj jedno zadanie wraz z każdą wczytaną stroną" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php jest zarejestrowany w serwisie webcron do uruchamiania cron.php raz na 15 minut przez http." -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Użyj systemowego cron-a do uruchamiania cron.php raz na 15 minut." -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Udostępnianie" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Włącz API udostępniania" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Zezwalaj aplikacjom na korzystanie z API udostępniania" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Zezwalaj na odnośniki" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Zezwalaj użytkownikom na publiczne współdzielenie zasobów za pomocą odnośników" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Pozwól na publiczne wczytywanie" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Użytkownicy mogą włączyć dla innych wgrywanie do ich publicznych katalogów" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Zezwalaj na ponowne udostępnianie" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Zezwalaj użytkownikom na ponowne współdzielenie zasobów już z nimi współdzielonych" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Zezwalaj użytkownikom na współdzielenie z kimkolwiek" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "Pozwól na mailowe powiadomienia" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "Pozwól użytkownikom wysyłać maile powiadamiające o udostępnionych plikach" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Bezpieczeństwo" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Wymuś HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Wymusza na klientach na łączenie się %s za pośrednictwem połączenia szyfrowanego." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Proszę połącz się do twojego %s za pośrednictwem protokołu HTTPS, aby włączyć lub wyłączyć stosowanie protokołu SSL." -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Logi" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Poziom logów" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Więcej" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Mniej" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Wersja" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-11-21 21:05-0500\n" +"PO-Revision-Date: 2013-11-21 15:40+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" @@ -584,7 +584,7 @@ msgstr "Olá,\n\ngostaria que você soubesse que %s compartilhou %s com vecê.\n #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "O compartilhamento irá expirar em %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index bc8f7898ff..4b62034638 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 21:05-0500\n" +"PO-Revision-Date: 2013-11-21 15:40+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" @@ -204,7 +204,7 @@ msgstr "desfazer" #: js/filelist.js:576 msgid "Error deleting file." -msgstr "" +msgstr "Erro eliminando o arquivo." #: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 44e7e1338c..5d99ecda18 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-21 15:40+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" @@ -91,7 +91,7 @@ msgstr "Arquivos selecionados são muito grandes para gerar arquivo zip." msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "Por favor baixe os arquivos separadamente em pedaços ou educadamente pergunte ao seu administrador." #: private/installer.php:63 msgid "No source specified when installing app" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 70fc11ca92..e64a46368a 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-22 02:06+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" @@ -283,18 +283,27 @@ msgid "Locale not working" msgstr "Localização não funcionando" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "A localidade do sistema não pode ser definida para %s. Isso significa que pode haver problemas com certos caracteres em nomes de arquivos. Nós sugerimos instalar os pacotes necessários no seu sistema para suportar %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Sem conexão com a internet" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -303,118 +312,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Este servidor não tem conexão com a internet. Isso significa que algumas das características como a montagem de armazenamento externo, notificações sobre atualizações ou instalação de aplicativos de 3ºs terceiros não funcionam. Acessar arquivos remotamente e envio de e-mails de notificação também não podem funcionar. Sugerimos permitir conexão com a internet para esse servidor, se você deseja ter todas as funcionalidades." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Execute uma tarefa com cada página carregada" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php está registrado no serviço webcron para chamar cron.php a cada 15 minutos sobre http." -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Use o sistema de serviço cron para chamar o arquivo cron.php a cada 15 minutos." -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Compartilhamento" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Habilitar API de Compartilhamento" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Permitir que aplicativos usem a API de Compartilhamento" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Permitir links" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Permitir que usuários compartilhem itens com o público usando links" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Permitir envio público" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir que usuários deem permissão a outros para enviarem arquivios para suas pastas compartilhadas publicamente" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Permitir recompartilhamento" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Permitir que usuários compartilhem novamente itens compartilhados com eles" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Permitir que usuários compartilhem com qualquer um" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Permitir que usuários compartilhem somente com usuários em seus grupos" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "Permitir notificação por email" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "Permitir usuários enviar notificação por email de arquivos compartilhados" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Segurança" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Obrigar os clientes que se conectem a %s através de uma conexão criptografada." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor, se conectar ao seu %s via HTTPS para forçar ativar ou desativar SSL." -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Registro" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Nível de registro" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Mais" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Menos" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Versão" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -286,18 +286,27 @@ msgid "Locale not working" msgstr "Internacionalização não está a funcionar" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 de ownCloud não consegue definir a codificação de caracteres para %s. Isto significa que pode haver problemas com alguns caracteres nos nomes dos ficheiros. É fortemente recomendado que instale o pacote recomendado para ser possível ver caracteres codificados em %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "A ligação à internet não está a funcionar" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -306,118 +315,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Este servidor ownCloud não tem uma ligação de internet a funcionar. Isto significa que algumas funcionalidades como o acesso a locais externos (dropbox, gdrive, etc), notificações sobre actualizções, ou a instalação de aplicações não irá funcionar. Sugerimos que active uma ligação à internet se pretender obter todas as funcionalidades do ownCloud." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Executar uma tarefa com cada página carregada" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php está registado num serviço webcron para chamar a página cron.php por http a cada 15 minutos." -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Use o serviço cron do sistema para chamar o ficheiro cron.php a cada 15 minutos." -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Partilha" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Activar a API de partilha" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Permitir que os utilizadores usem a API de partilha" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Permitir links" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Permitir que os utilizadores partilhem itens com o público utilizando um link." -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Permitir Envios Públicos" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir aos utilizadores que possam definir outros utilizadores para carregar ficheiros para as suas pastas publicas" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Permitir repartilha" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Permitir que os utilizadores partilhem itens partilhados com eles" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Permitir que os utilizadores partilhem com todos" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Permitir que os utilizadores partilhem somente com utilizadores do seu grupo" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "Permitir notificação por email" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "Permitir que o utilizador envie notificações por correio electrónico para ficheiros partilhados" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Segurança" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forçar os clientes a ligar a %s através de uma ligação encriptada" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor ligue-se a %s através de uma ligação HTTPS para ligar/desligar o uso de ligação por SSL" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Registo" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Nível do registo" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Mais" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Menos" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Versão" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -283,18 +283,27 @@ msgid "Locale not working" msgstr "Localizarea nu funcționează" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Conexiunea la internet nu funcționează" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -303,118 +312,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Execută o sarcină la fiecare pagină încărcată" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Partajare" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Activare API partajare" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Permite aplicațiilor să folosească API-ul de partajare" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Pemite legături" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Permite utilizatorilor să partajeze fișiere în mod public prin legături" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Permite încărcări publice" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Permite repartajarea" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Permite utilizatorilor să repartajeze fișiere partajate cu ei" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Permite utilizatorilor să partajeze cu oricine" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Permite utilizatorilor să partajeze doar cu utilizatori din același grup" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Securitate" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Jurnal de activitate" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Nivel jurnal" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Mai mult" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Mai puțin" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Versiunea" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the , 2013 # eurekafag , 2013 # sk.avenger , 2013 +# unixoid , 2013 # navigator666 , 2013 # Friktor , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-21 18:10+0000\n" +"Last-Translator: unixoid \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" @@ -96,7 +97,7 @@ msgstr "Выбранные файлы слишком велики, чтобы с msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "Загрузите файлы раздельно маленькими частями или вежливо попросите вашего администратора." #: private/installer.php:63 msgid "No source specified when installing app" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 52ef3ad91e..b0b781d33d 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -20,9 +20,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: unixoid \n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-22 02:06+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -294,18 +294,27 @@ msgid "Locale not working" msgstr "Локализация не работает" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "Системный язык не может быть установлен в %s. Это значит, что могут возникнуть проблемы с некоторыми символами в именах файлов. Мы настойчиво предлагаем установить требуемые пакеты в Вашей системе для поддержки %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Интернет-соединение не работает" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -314,118 +323,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Этот сервер не имеет подключения к сети интернет. Это значит, что некоторые возможности, такие как подключение внешних дисков, уведомления об обновлениях или установка сторонних приложений – не работают. Удалённый доступ к файлам и отправка уведомлений по электронной почте вероятнее всего тоже не будут работать. Предлагаем включить соединение с интернетом для этого сервера, если Вы хотите иметь все возможности." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Планировщик задач по расписанию" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Выполнять одно задание с каждой загруженной страницей" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php зарегестрирован в webcron и будет вызываться каждые 15 минут по http." -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Использовать системный cron для вызова cron.php каждые 15 минут." -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Общий доступ" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Включить API общего доступа" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Позволить приложениям использовать API общего доступа" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Разрешить ссылки" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Разрешить пользователям открывать в общий доступ элементы с публичной ссылкой" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Разрешить открытые загрузки" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Разрешить пользователям позволять другим загружать в их открытые папки" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Разрешить переоткрытие общего доступа" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Позволить пользователям открывать общий доступ к эллементам уже открытым в общий доступ" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Разрешить пользователя делать общий доступ любому" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Разрешить пользователям делать общий доступ только для пользователей их групп" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "Разрешить уведомление по почте" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "Разрешить пользователю оповещать почтой о расшаренных файлах" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Безопасность" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Принудить к HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Принудить клиентов подключаться к %s через шифрованное соединение." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Пожалуйста, подключитесь к %s используя HTTPS чтобы включить или отключить принудительное SSL." -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Журнал" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Уровень детализации журнала" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Больше" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Меньше" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Версия" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Подробнее" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "හුවමාරු කිරීම" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "යොමු සලසන්න" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "යළි යළිත් හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "හුවමාරු කළ හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "ඕනෑම අයෙකු හා හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "තම කණ්ඩායමේ අයෙකු හා පමණක් හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "ලඝුව" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "වැඩි" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "අඩු" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-22 02:06+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" @@ -283,18 +283,27 @@ msgid "Locale not working" msgstr "Lokalizácia nefunguje" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "Systémové nastavenie lokalizácie nemohlo byť nastavené na %s. To znamená, že sa môžu vyskytnúť problémy s niektorými znakmi v názvoch súborov. Odporúčame nainštalovať do vášho systému balíčky potrebné pre podporu %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Pripojenie na internet nefunguje" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -303,118 +312,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Server nemá funkčné pripojenie k internetu. Niektoré moduly ako napr. externé úložisko, oznámenie o dostupných aktualizáciách alebo inštalácia aplikácií tretích strán nebudú fungovať. Prístup k súborom z iných miest a odosielanie oznamovacích emailov tiež nemusí fungovať. Ak chcete využívať všetky vlastnosti ownCloudu, odporúčame povoliť pripojenie k internetu tomuto serveru." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Vykonať jednu úlohu s každým načítaní stránky" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php je zaregistrovaná v službe WebCron a zavolá cron.php každých 15 minút cez http." -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Použite systémovú službu cron, ktorá zavolá súbor cron.php každých 15 minút." -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Zdieľanie" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Povoliť API zdieľania" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Povoliť aplikáciám používať API na zdieľanie" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Povoliť odkazy" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Povoliť používateľom zdieľať položky pre verejnosť cez odkazy" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Povoliť verejné nahrávanie súborov" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Povoliť používateľom umožniť iným používateľom nahrávať do ich zdieľaného priečinka" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Povoliť zdieľanie ďalej" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Povoliť používateľom ďalej zdieľať zdieľané položky" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Povoliť používateľom zdieľať s kýmkoľvek" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Povoliť používateľom zdieľať len s používateľmi v ich skupinách" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "Povoliť upozornenia emailom" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "Povoliť používateľom upozornenia emailom pre svoje zdieľané súbory" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Zabezpečenie" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Vynútiť HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Vynúti pripájanie klientov k %s šifrovaným pripojením." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Pripojte sa k %s cez HTTPS pre povolenie alebo zakázanie vynútenia SSL." -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Záznam" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Úroveň záznamu" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Viac" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Menej" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Verzia" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-11-21 21:05-0500\n" +"PO-Revision-Date: 2013-11-21 19: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" @@ -594,7 +594,7 @@ msgstr "Pozdravljeni,\n\noseba %s vam je omogočila souporabo %s.\nVir si lahko #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "Povezava souporabe bo potekla %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 251673b9c1..2292831b52 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 21:05-0500\n" +"PO-Revision-Date: 2013-11-21 19: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" @@ -203,7 +203,7 @@ msgstr "razveljavi" #: js/filelist.js:576 msgid "Error deleting file." -msgstr "" +msgstr "Napaka brisanja datoteke." #: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 47fd426771..42f5adc81b 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-21 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" @@ -234,7 +234,7 @@ msgstr "Uporabnik MySQL '%s'@'localhost' že obstaja." #: private/setup/mysql.php:86 msgid "Drop this user from MySQL" -msgstr "Odstrani uporabnika s podatkovne zbirke MySQL" +msgstr "Odstrani uporabnika iz podatkovne zbirke MySQL" #: private/setup/mysql.php:91 #, php-format @@ -243,11 +243,11 @@ msgstr "Uporabnik MySQL '%s'@'%%' že obstaja." #: private/setup/mysql.php:92 msgid "Drop this user from MySQL." -msgstr "Odstrani uporabnika s podatkovne zbirke MySQL" +msgstr "Odstrani uporabnika iz podatkovne zbirke MySQL" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" -msgstr "Povezava z bazo Oracle ni uspela." +msgstr "Povezave s sistemom Oracle ni mogoče vzpostaviti." #: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index c09a9b8224..828ff67b0d 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-18 20:10+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-22 02:06+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -283,18 +283,27 @@ msgid "Locale not working" msgstr "Jezikovne prilagoditve ne delujejo." #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Internetna povezava ne deluje." -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -303,118 +312,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Periodično opravilo" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Izvedi eno nalogo z vsako naloženo stranjo." -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Souporaba" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Omogoči API souporabe" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Dovoli programom uporabo vmesnika API souporabe" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Dovoli povezave" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Uporabnikom dovoli souporabo predmetov z javnimi povezavami" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Dovoli javno pošiljanje datotek v oblak" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Dovoli nadaljnjo souporabo" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Uporabnikom dovoli nadaljnjo souporabo predmetov" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Uporabnikom dovoli souporabo s komerkoli" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Uporabnikom dovoli souporabo z ostalimi uporabniki njihove skupine" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "Dovoli obvestila preko elektronske pošte" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Varnost" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Zahtevaj uporabo HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Dnevnik" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Raven beleženja" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Več" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Manj" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Različica" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "Locale nuk është funksional" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Lidhja me internetin nuk është funksionale" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Kryeni vetëm një veprim me secilën prej faqeve të ngarkuara" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Ndarje" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Aktivizo API për ndarjet" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Lejoni aplikacionet të përdorin share API" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Lejo lidhjet" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Lejoni përdoruesit të ndajnë elementët publikisht nëpermjet lidhjeve" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Lejo ngarkimin publik" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Lejo përdoruesit të mundësojnë të tjerët që të ngarkojnë materiale në dosjen e tyre publike" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Lejo ri-ndarjen" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Lejoni përdoruesit të ndjanë dhe ata elementë të ndarë më parë ngë të tjerë" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Lejo përdoruesit të ndajnë me cilindo" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Lejoni përdoruesit të ndajnë vetëm me përdorues të të njëjtit grup" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Siguria" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Detyro HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Historik aktiviteti" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Niveli i Historikut" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Më tepër" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Versioni" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 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" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "Локализација не ради" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Веза с интернетом не ради" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Изврши један задатак са сваком учитаном страницом" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Дељење" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Омогући API Share" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Дозвољава апликацијама да користе API Share" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Дозволи везе" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Дозволи корисницима да деле ставке с другима путем веза" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Дозволи поновно дељење" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Дозволи корисницима да поновно деле ставке с другима" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Дозволи корисницима да деле са било ким" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Дозволи корисницима да деле само са корисницима у њиховим групама" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Безбедност" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Наметни HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Бележење" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Ниво бележења" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Више" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Мање" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Верзија" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -289,18 +289,27 @@ msgid "Locale not working" msgstr "Locale fungerar inte" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "Systemets språk kan inte sättas till %s. Detta innebär att det kan vara problem med vissa tecken i filnamn. Det är starkt rekommenderat att installera nödvändiga paket så att systemet får stöd för %s." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Internetförbindelsen fungerar inte" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -309,118 +318,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Servern har ingen fungerande internetanslutning. Detta innebär att en del av de funktioner som montering av extern lagring, notifieringar om uppdateringar eller installation av 3: e part appar inte fungerar. Åtkomst till filer och skicka e-postmeddelanden fungerar troligen inte heller. Vi rekommenderar starkt att aktivera en internetuppkoppling för denna server om du vill ha alla funktioner." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Exekvera en uppgift vid varje sidladdning" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php är registrerad som en webcron service att ropa på cron.php varje 15 minuter över http." -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Använd systemets cron service att ropa på cron.php filen varje 15 minuter." -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Dela" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Aktivera delat API" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Tillåt applikationer att använda delat API" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Tillåt länkar" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Tillåt delning till allmänheten via publika länkar" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Tillåt offentlig uppladdning" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Tillåt användare att aktivera\nTillåt användare att göra det möjligt för andra att ladda upp till sina offentligt delade mappar" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Tillåt vidaredelning" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Tillåt användare att dela vidare filer som delats med dem" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Tillåt delning med alla" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Tillåt bara delning med användare i egna grupper" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "Tillåt e-post notifikation" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "Tillåt användare att skicka e-port notifikationer för delade filer" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Säkerhet" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Kräv HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tvingar klienterna att ansluta till %s via en krypterad anslutning." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Anslut till din %s via HTTPS för att aktivera/deaktivera SSL" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Logg" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Nivå på loggning" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Mer" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Mindre" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Version" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "மேலதிக" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "குறைவான" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "మరిన్ని" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 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 a54dca42a0..81e25c4572 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"POT-Creation-Date: 2013-11-21 21:05-0500\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 70b2c4e0c3..2e882cf884 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"POT-Creation-Date: 2013-11-21 21:05-0500\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 c35a442325..8bbf8211fe 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"POT-Creation-Date: 2013-11-21 21:05-0500\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 f556c6fb4a..e7c7cbcdc8 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"POT-Creation-Date: 2013-11-21 21:05-0500\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 32ee60833e..9628add216 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"POT-Creation-Date: 2013-11-21 21:05-0500\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 e389e280ef..0bd6ca359e 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"POT-Creation-Date: 2013-11-21 21:05-0500\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 a427c76d93..6ebcca8fb7 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"POT-Creation-Date: 2013-11-21 21:06-0500\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/private.pot b/l10n/templates/private.pot index ea3db0275f..9892598571 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"POT-Creation-Date: 2013-11-21 21:06-0500\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 5c2b075527..a62ac90f48 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -280,18 +280,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -300,117 +309,117 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 5f403c94da..5bbfdc2b14 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" +"POT-Creation-Date: 2013-11-21 21:05-0500\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/settings.po b/l10n/th_TH/settings.po index 631b48e86b..f917125283 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-22 02:06+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" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "การแชร์ข้อมูล" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "อนุญาตให้ใช้งานลิงก์ได้" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "อนุญาตให้ผู้ใช้งานสามารถแชร์ข้อมูลรายการต่างๆไปให้สาธารณะชนเป็นลิงก์ได้" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "อนุญาตให้แชร์ข้อมูลซ้ำใหม่ได้" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลรายการต่างๆที่ถูกแชร์มาให้ตัวผู้ใช้งานได้เท่านั้น" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลถึงใครก็ได้" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลได้เฉพาะกับผู้ใช้งานที่อยู่ในกลุ่มเดียวกันเท่านั้น" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "บันทึกการเปลี่ยนแปลง" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "ระดับการเก็บบันทึก log" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "มาก" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "น้อย" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "รุ่น" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-11-21 21:05-0500\n" +"PO-Revision-Date: 2013-11-21 15:22+0000\n" +"Last-Translator: volkangezer \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" @@ -586,7 +586,7 @@ msgstr "Merhaba,\n\nSadece %s sizinle %s paylaşımını yaptığını bildiriyo #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "Bu paylaşım %s tarihinde sona erecek." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 4ac71b235b..2fea7e957b 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 21:05-0500\n" +"PO-Revision-Date: 2013-11-21 15:22+0000\n" +"Last-Translator: volkangezer \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" @@ -24,7 +24,7 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "%s taşınamadı. Bu isimde dosya zaten var." +msgstr "%s taşınamadı - Bu isimde dosya zaten var" #: ajax/move.php:27 ajax/move.php:30 #, php-format @@ -205,7 +205,7 @@ msgstr "geri al" #: js/filelist.js:576 msgid "Error deleting file." -msgstr "" +msgstr "Dosya silinirken hata." #: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 29da329bfa..53e3d6fccb 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -6,13 +6,14 @@ # Caner BAŞARAN , 2013 # ismail yenigül , 2013 # tridinebandim, 2013 +# volkangezer , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-21 15:22+0000\n" +"Last-Translator: volkangezer \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" @@ -93,7 +94,7 @@ msgstr "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyüktür." msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "Dosyaları ayrı ayrı, küçük parçalar halinde indirin veya yöneticinizden yardım isteyin. " #: private/installer.php:63 msgid "No source specified when installing app" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 9e19c79583..c50f6436c1 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"PO-Revision-Date: 2013-11-22 02:06+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -285,18 +285,27 @@ msgid "Locale not working" msgstr "Locale çalışmıyor." #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "Sistem yereli %s olarak değiştirilemedi. Bu, dosya adlarındaki bazı karakterlerde sorun olabileceği anlamına gelir. %s desteklemek için gerekli paketleri kurmanızı şiddetle öneririz." +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "İnternet bağlantısı çalışmıyor" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -305,118 +314,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Bu sunucunun çalışan bir internet bağlantısı yok. Bu, harici depolama alanı bağlama, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacak demektir. Uzak dosyalara erişim ve e-posta ile bildirim gönderme de çalışmayacaktır. Eğer bu özelliklerin tamamını kullanmak istiyorsanız, sunucu için internet bağlantısını etkinleştirmenizi öneriyoruz." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Yüklenen her sayfa ile bir görev çalıştır" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php, http üzerinden her 15 dakikada bir çağrılması için webcron hizmetine kaydedildi." -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Cron.php dosyasını her 15 dakikada bir çağırmak için sistem cron hizmetini kullan." -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Paylaşım" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Paylaşım API'sini etkinleştir." -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Uygulamaların paylaşım API'sini kullanmasına izin ver" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Bağlantıları izin ver." -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Kullanıcıların nesneleri paylaşımı için herkese açık bağlantılara izin ver" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "Herkes tarafından yüklemeye izin ver" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Kullanıcıların, herkese açık dizinlerine, başkalarının dosya yüklemelerini etkinleştirmelerine izin ver." -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Paylaşıma izin ver" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Kullanıcıların kendileri ile paylaşılan ögeleri yeniden paylaşmasına izin ver" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Kullanıcıların herşeyi paylaşmalarına izin ver" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "Posta bilgilendirmesine izin ver" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "Paylaşılmış dosyalar için kullanıcının posta bildirimi göndermesine izin ver" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Güvenlik" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "HTTPS bağlantısına zorla" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "İstemcileri %s a şifreli bir bağlantı ile bağlanmaya zorlar." -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen ,%s a HTTPS ile bağlanın." -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Kayıtlar" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Günlük seviyesi" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Daha fazla" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Az" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Sürüm" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 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" @@ -282,18 +282,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -302,118 +311,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "ھەمبەھىر" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "بىخەتەرلىك" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "خاتىرە" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "خاتىرە دەرىجىسى" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "تېخىمۇ كۆپ" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "ئاز" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "نەشرى" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -282,18 +282,27 @@ msgid "Locale not working" msgstr "Локалізація не працює" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "Інтернет-з'єднання не працює" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -302,118 +311,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Виконати одне завдання для кожної завантаженої сторінки " -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Спільний доступ" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Увімкнути API спільного доступу" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Дозволити програмам використовувати API спільного доступу" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Дозволити посилання" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Дозволити користувачам відкривати спільний доступ до елементів за допомогою посилань" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Дозволити перевідкривати спільний доступ" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Дозволити користувачам знову відкривати спільний доступ до елементів, які вже відкриті для доступу" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Дозволити користувачам відкривати спільний доступ для всіх" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Дозволити користувачам відкривати спільний доступ лише для користувачів з їхньої групи" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "Безпека" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "Примусове застосування HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Протокол" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "Рівень протоколювання" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "Більше" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "Менше" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Версія" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "Thực thi tác vụ mỗi khi trang được tải" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "Chia sẻ" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "Bật chia sẻ API" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "Cho phép các ứng dụng sử dụng chia sẻ API" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "Cho phép liên kết" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "Cho phép người dùng chia sẻ công khai các mục bằng các liên kết" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "Cho phép chia sẻ lại" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "Cho phép người dùng chia sẻ lại những mục đã được chia sẻ" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "Cho phép người dùng chia sẻ với bất cứ ai" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "Chỉ cho phép người dùng chia sẻ với những người dùng trong nhóm của họ" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "Log" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "hơn" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "ít" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "Phiên bản" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -286,18 +286,27 @@ msgid "Locale not working" msgstr "本地化无法工作" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "服务器无法设置系统本地化到%s. 这意味着可能文件名中有一些字符会引起问题. 我们强烈建议在你系统上安装所需的软件包来支持%s" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "因特网连接无法工作" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -306,118 +315,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "此服务器上没有可用的因特网连接. 这意味着某些特性将无法工作,例如挂载外部存储器, 提醒更新或安装第三方应用等. 从远程访问文件和发送提醒电子邮件也可能无法工作. 如果你想要ownCloud的所有特性, 我们建议启用此服务器的因特网连接." -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "计划任务" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "每个页面加载后执行一个任务" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "共享" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "启用共享API" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "允许应用软件使用共享API" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "允许链接" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "允许用户使用连接公开共享项目" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "允许公开上传" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "用户可让其他人上传到他的公开共享文件夹" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "允许再次共享" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "允许用户将共享给他们的项目再次共享" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "允许用户向任何人共享" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "允许用户只向同组用户共享" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "安全" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "强制使用 HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "强制客户端通过加密连接连接到%s。" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "请经由HTTPS连接到这个%s 实例来启用或禁用强制SSL." -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "日志" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "日志级别" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "更多" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "更少" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "版本" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -281,18 +281,27 @@ msgid "Locale not working" msgstr "" #: templates/admin.php:70 -#, php-format -msgid "" -"System locale can't be set 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." +msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -301,118 +310,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -282,18 +282,27 @@ msgid "Locale not working" msgstr "語系無法運作" #: templates/admin.php:70 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:74 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:78 #, php-format msgid "" -"System locale can't be set 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 "ownCloud 伺服器無法將系統語系設為 %s ,可能有一些檔名中的字元有問題,建議您安裝所有所需的套件以支援 %s 。" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:90 msgid "Internet connection not working" msgstr "無網際網路存取" -#: templates/admin.php:85 +#: templates/admin.php:93 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -302,118 +311,118 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "這臺 ownCloud 伺服器沒有連接到網際網路,因此有些功能像是掛載外部儲存空間、更新 ownCloud 或應用程式的通知沒有辦法運作。透過網際網路存取檔案還有電子郵件通知可能也無法運作。如果想要 ownCloud 完整的功能,建議您將這臺伺服器連接至網際網路。" -#: templates/admin.php:99 +#: templates/admin.php:107 msgid "Cron" msgstr "Cron" -#: templates/admin.php:106 +#: templates/admin.php:114 msgid "Execute one task with each page loaded" msgstr "當頁面載入時,執行" -#: templates/admin.php:114 +#: templates/admin.php:122 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "已經與 webcron 服務註冊好,將會每15分鐘呼叫 cron.php" -#: templates/admin.php:122 +#: templates/admin.php:130 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "使用系統的 cron 服務每15分鐘呼叫 cron.php 一次" -#: templates/admin.php:127 +#: templates/admin.php:135 msgid "Sharing" msgstr "分享" -#: templates/admin.php:133 +#: templates/admin.php:141 msgid "Enable Share API" msgstr "啟用分享 API" -#: templates/admin.php:134 +#: templates/admin.php:142 msgid "Allow apps to use the Share API" msgstr "允許 apps 使用分享 API" -#: templates/admin.php:141 +#: templates/admin.php:149 msgid "Allow links" msgstr "允許連結" -#: templates/admin.php:142 +#: templates/admin.php:150 msgid "Allow users to share items to the public with links" msgstr "允許使用者以結連公開分享檔案" -#: templates/admin.php:150 +#: templates/admin.php:158 msgid "Allow public uploads" msgstr "允許任何人上傳" -#: templates/admin.php:151 +#: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "允許使用者將他們公開分享的資料夾設定為「任何人皆可上傳」" -#: templates/admin.php:159 +#: templates/admin.php:167 msgid "Allow resharing" msgstr "允許轉貼分享" -#: templates/admin.php:160 +#: templates/admin.php:168 msgid "Allow users to share items shared with them again" msgstr "允許使用者分享其他使用者分享給他的檔案" -#: templates/admin.php:167 +#: templates/admin.php:175 msgid "Allow users to share with anyone" msgstr "允許使用者與任何人分享檔案" -#: templates/admin.php:170 +#: templates/admin.php:178 msgid "Allow users to only share with users in their groups" msgstr "僅允許使用者在群組內分享" -#: templates/admin.php:177 +#: templates/admin.php:185 msgid "Allow mail notification" msgstr "允許郵件通知" -#: templates/admin.php:178 +#: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" msgstr "允許使用者分享檔案時寄出通知郵件" -#: templates/admin.php:185 +#: templates/admin.php:193 msgid "Security" msgstr "安全性" -#: templates/admin.php:198 +#: templates/admin.php:206 msgid "Enforce HTTPS" msgstr "強制啟用 HTTPS" -#: templates/admin.php:200 +#: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "強迫用戶端使用加密連線連接到 %s" -#: templates/admin.php:206 +#: templates/admin.php:214 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "請使用 HTTPS 連線到 %s 以啓用或停用強制 SSL 加密。" -#: templates/admin.php:218 +#: templates/admin.php:226 msgid "Log" msgstr "紀錄" -#: templates/admin.php:219 +#: templates/admin.php:227 msgid "Log level" msgstr "紀錄層級" -#: templates/admin.php:251 +#: templates/admin.php:259 msgid "More" msgstr "更多" -#: templates/admin.php:252 +#: templates/admin.php:260 msgid "Less" msgstr "更少" -#: templates/admin.php:258 templates/personal.php:169 +#: templates/admin.php:266 templates/personal.php:169 msgid "Version" msgstr "版本" -#: templates/admin.php:262 templates/personal.php:172 +#: templates/admin.php:270 templates/personal.php:172 msgid "" "Developed by the ownCloud community, the "Files need to be downloaded one by one.", "Back to Files" => "Back to Files", "Selected files too large to generate zip file." => "Selected files too large to generate zip file.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Please download the files separately in smaller chunks or kindly ask your administrator.", "No source specified when installing app" => "No source specified when installing app", "No href specified when installing app from http" => "No href specified when installing app from http", "No path specified when installing app from local file" => "No path specified when installing app from local file", diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index eed06956fd..d6912f0711 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Arquivos precisam ser baixados um de cada vez.", "Back to Files" => "Voltar para Arquivos", "Selected files too large to generate zip file." => "Arquivos selecionados são muito grandes para gerar arquivo zip.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Por favor baixe os arquivos separadamente em pedaços ou educadamente pergunte ao seu administrador.", "No source specified when installing app" => "Nenhuma fonte foi especificada enquanto instalava o aplicativo", "No href specified when installing app from http" => "Nenhuma href foi especificada enquanto instalava o aplicativo de httml", "No path specified when installing app from local file" => "Nenhum caminho foi especificado enquanto instalava o aplicativo do arquivo local", diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index 371bf13f27..baf80cbf24 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Файлы должны быть загружены по одному.", "Back to Files" => "Назад к файлам", "Selected files too large to generate zip file." => "Выбранные файлы слишком велики, чтобы создать zip файл.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Загрузите файлы раздельно маленькими частями или вежливо попросите вашего администратора.", "No source specified when installing app" => "Не указан источник при установке приложения", "No href specified when installing app from http" => "Не указан атрибут href при установке приложения через http", "No path specified when installing app from local file" => "Не указан путь при установке приложения из локального файла", diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index 0aee3cbfad..56be601f54 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -30,10 +30,10 @@ $TRANSLATIONS = array( "DB Error: \"%s\"" => "Napaka podatkovne zbirke: \"%s\"", "Offending command was: \"%s\"" => "Napačni ukaz je: \"%s\"", "MySQL user '%s'@'localhost' exists already." => "Uporabnik MySQL '%s'@'localhost' že obstaja.", -"Drop this user from MySQL" => "Odstrani uporabnika s podatkovne zbirke MySQL", +"Drop this user from MySQL" => "Odstrani uporabnika iz podatkovne zbirke MySQL", "MySQL user '%s'@'%%' already exists" => "Uporabnik MySQL '%s'@'%%' že obstaja.", -"Drop this user from MySQL." => "Odstrani uporabnika s podatkovne zbirke MySQL", -"Oracle connection could not be established" => "Povezava z bazo Oracle ni uspela.", +"Drop this user from MySQL." => "Odstrani uporabnika iz podatkovne zbirke MySQL", +"Oracle connection could not be established" => "Povezave s sistemom Oracle ni mogoče vzpostaviti.", "Oracle username and/or password not valid" => "Uporabniško ime ali geslo Oracle ni veljavno", "Offending command was: \"%s\", name: %s, password: %s" => "Napačni ukaz je: \"%s\", ime: %s, geslo: %s", "PostgreSQL username and/or password not valid" => "Uporabniško ime ali geslo PostgreSQL ni veljavno", diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 9ac0761033..11f0c72671 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Dosyaların birer birer indirilmesi gerekmektedir.", "Back to Files" => "Dosyalara dön", "Selected files too large to generate zip file." => "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyüktür.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Dosyaları ayrı ayrı, küçük parçalar halinde indirin veya yöneticinizden yardım isteyin. ", "No source specified when installing app" => "Uygulama kurulurken bir kaynak belirtilmedi", "No href specified when installing app from http" => "Uygulama kuruluyorken http'de href belirtilmedi.", "No path specified when installing app from local file" => "Uygulama yerel dosyadan kuruluyorken dosya yolu belirtilmedi", diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 263748ff44..8d47f28415 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -61,7 +61,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "No s'ha trobat el mòdul 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "El mòdul de PHP 'fileinfo' no s'ha trobat. Us recomanem que habiliteu aquest mòdul per obtenir millors resultats amb la detecció mime-type.", "Locale not working" => "Locale no funciona", -"System locale can't be set 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." => "Les locale del sistema no es poden establir en %s. Això significa que hi poden haver problemes amb alguns caràcters en el nom dels fitxers. Us recomanem instal·lar els paquets necessaris al sistema per donar suport a %s.", "Internet connection not working" => "La connexió a internet no funciona", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Aquest servidor no té cap connexió a internet que funcioni. Això significa que algunes de les característiques com el muntatge d'emmagatzemament extern, les notificacions quant a actualitzacions o la instal·lació d'aplicacions de tercers no funcionarà. L'accés remot a fitxers i l'enviament de correus electrònics podria tampoc no funcionar. Us suggerim que habiliteu la connexió a internet per aquest servidor si voleu tenir totes les característiques.", "Cron" => "Cron", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 6c7da5fb2b..47b29d2280 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -56,7 +56,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Schází modul 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Schází PHP modul 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME.", "Locale not working" => "Lokalizace nefunguje", -"System locale can't be set 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." => "Systémové nastavení lokalizace nemohlo být nastaveno na %s. To znamená, že se mohou vyskytnout problémy s některými znaky v názvech souborů. Důrazně doporučujeme nainstalovat do vašeho systému balíčky potřebné pro podporu %s.", "Internet connection not working" => "Připojení k internetu nefunguje", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Server nemá funkční připojení k internetu. Některé moduly jako např. externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru.", "Cron" => "Cron", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index df88b20c80..42bbf8409f 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -53,7 +53,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Module 'fileinfo' mangler", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP modulet 'fileinfo' mangler. Vi anbefaler stærkt at aktivere dette modul til at få de bedste resultater med mime-type detektion.", "Locale not working" => "Landestandard fungerer ikke", -"System locale can't be set 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." => "Systemet kan ikke indstille systemets landestandard for %s. Det betyder, at der kan være problemer med visse tegn i filnavne. Vi anbefaler kraftigt, at installere de nødvendige pakker på dit system til at understøtte %s.", "Internet connection not working" => "Internetforbindelse fungerer ikke", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Denne ownCloud-server har ikke en fungerende forbindelse til internettet. Det betyder, at visse funktioner som montering af eksterne drev, oplysninger om opdatering eller installation af 3.-parts applikationer ikke fungerer. Det vil sandsynligvis heller ikke fungere at tilgå filer fra eksterne drev eller informationsemails. Vi opfordrer til at etablere forbindelse til internettet for denne server, såfremt du ønsker samtlige funktioner.", "Cron" => "Cron", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index a8f6c63740..df4f1fe798 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -61,7 +61,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Modul 'fileinfo' fehlt ", "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 dieses Modul zu aktivieren um die besten Resultate bei der Erkennung der Dateitypen zu erreichen.", "Locale not working" => "Ländereinstellung funktioniert nicht", -"System locale can't be set 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." => "Die System-Ländereinstellung kann nicht auf %s geändert werden. 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", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. 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 Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen.", "Cron" => "Cron", diff --git a/settings/l10n/de_CH.php b/settings/l10n/de_CH.php index 2c54d9af3b..83e00bb727 100644 --- a/settings/l10n/de_CH.php +++ b/settings/l10n/de_CH.php @@ -46,7 +46,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Das Modul 'fileinfo' fehlt", "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", -"System locale can't be set 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." => "Die System-Ländereinstellung kann nicht auf %s geändert werden. 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 Internetverbindung", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. 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 Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen.", "Cron" => "Cron", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index dce1021ba9..d979d18e2c 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -61,7 +61,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Das Modul 'fileinfo' fehlt", "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", -"System locale can't be set 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." => "Die System-Ländereinstellung kann nicht auf %s geändert werden. 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 Internetverbindung", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. 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 Internetverbindung für diesen Server zu aktivieren, wenn Sie alle Funktionen nutzen wollen.", "Cron" => "Cron", diff --git a/settings/l10n/en_GB.php b/settings/l10n/en_GB.php index d19ad12c91..d685d3a10d 100644 --- a/settings/l10n/en_GB.php +++ b/settings/l10n/en_GB.php @@ -61,7 +61,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Module 'fileinfo' missing", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "The PHP module 'fileinfo' is missing. We strongly recommend enabling this module to get best results with mime-type detection.", "Locale not working" => "Locale not working", -"System locale can't be set 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." => "System locale can't be set 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.", "Internet connection not working" => "Internet connection not working", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don't work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features.", "Cron" => "Cron", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 5841547de5..5aeb272ae7 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -61,7 +61,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "No se ha encontrado el módulo \"fileinfo\"", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "No se ha encontrado el modulo PHP 'fileinfo'. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección de tipos MIME.", "Locale not working" => "La configuración regional no está funcionando", -"System locale can't be set 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." => "La configuración regional del sistema no se puede ajustar a %s. Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivo. Le recomendamos instalar los paquetes necesarios en el sistema para soportar %s.", "Internet connection not working" => "La conexión a Internet no está funcionando", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor no tiene conexión a Internet. Esto significa que algunas de las características no funcionarán, como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones, la instalación de aplicaciones de terceros, el acceso a los archivos de forma remota o el envío de correos electrónicos de notificación. Sugerimos habilitar una conexión a Internet en este servidor para disfrutar de todas las funciones.", "Cron" => "Cron", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index 9de4b25e62..8a83c6c974 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -46,7 +46,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "El módulo 'fileinfo' no existe", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "El módulo PHP 'fileinfo' no existe. Es recomendable que actives este módulo para obtener mejores resultados con la detección mime-type", "Locale not working" => "\"Locale\" no está funcionando", -"System locale can't be set 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." => "No se pudo asignar la localización del sistema a %s. Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos. Recomendamos fuertemente instalar los paquetes de sistema requeridos para poder dar soporte a %s.", "Internet connection not working" => "La conexión a Internet no esta funcionando. ", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "El servidor no posee una conexión a Internet activa. Esto significa que algunas características como el montaje de un almacenamiento externo, las notificaciones acerca de actualizaciones o la instalación de aplicaciones de terceros no funcionarán. El acceso a archivos de forma remota y el envío de correos con notificaciones es posible que tampoco funcionen. Sugerimos habilitar la conexión a Internet para este servidor si deseas tener todas estas características.", "Cron" => "Cron", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 04104b4feb..155f67c17b 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -61,7 +61,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Moodul 'fileinfo' puudub", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks parimaid tulemusi failitüüpide tuvastamisel.", "Locale not working" => "Lokalisatsioon ei toimi", -"System locale can't be set 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." => "Süsteemi lokaliseeringut ei saa panna %s. See tähendab, et võib esineda probleeme teatud tähemärkidega failide nimedes. Soovitame tungivalt paigaldada süsteemi vajalikud pakid toetamaks %s.", "Internet connection not working" => "Internetiühendus ei toimi", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Serveril puudub toimiv internetiühendus. See tähendab, et mõned funktsionaalsused, nagu näiteks väliste andmehoidlate ühendamine, teavitused uuendustest või kolmandate osapoolte rakenduste paigaldamine ei tööta. Eemalt failidele ligipääs ning teadete saatmine emailiga ei pruugi samuti toimida. Kui soovid täielikku funktsionaalsust, siis soovitame serverile tagada ligipääs internetti.", "Cron" => "Cron", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index ea7d3a1f4c..b684eafe39 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -61,7 +61,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Module 'fileinfo' manquant", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Le module PHP 'fileinfo' est manquant. Il est vivement recommandé de l'activer afin d'obtenir de meilleurs résultats pour la détection des types de fichiers.", "Locale not working" => "Localisation non fonctionnelle", -"System locale can't be set 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." => "Le localisation du système n'a pu être configurée à %s. Cela signifie qu'il pourrait y avoir des problèmes avec certains caractères dans les noms de fichiers. Il est fortement recommandé d'installer les paquets requis pour le support de %s.", "Internet connection not working" => "La connexion internet ne fonctionne pas", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Ce serveur ne peut se connecter à internet. Cela signifie que certaines fonctionnalités, telles que le montage de supports de stockage distants, les notifications de mises à jour ou l'installation d'applications tierces ne fonctionneront pas. L'accès aux fichiers à distance, ainsi que les notifications par mails ne seront pas fonctionnels également. Il est recommandé d'activer la connexion internet pour ce serveur si vous souhaitez disposer de l'ensemble des fonctionnalités offertes.", "Cron" => "Cron", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index ce2ceea41b..b2a6b6b25c 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -61,7 +61,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Non se atopou o módulo «fileinfo»", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Non se atopou o módulo de PHP «fileinfo». É recomendábel activar este módulo para obter os mellores resultados coa detección do tipo MIME.", "Locale not working" => "A configuración rexional non funciona", -"System locale can't be set 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." => "A configuración rexional do sistema non pode estabelecerse a %s. Isto significa que pode haber problemas con certos caracteres nos nomes de ficheiro. Recomendámoslle que instale os paquetes necesarios no sistema para aceptar o %s.", "Internet connection not working" => "A conexión á Internet non funciona", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor non ten conexión a Internet. Isto significa que algunhas das funcionalidades como a montaxe de almacenamento externo, as notificacións sobre actualizacións ou instalación de aplicativos de terceiros non funcionan. O acceso aos ficheiros de forma remota e o envío de mensaxes de notificación poderían non funcionar. Suxerímoslle que active a conexión a Internet deste servidor se quere dispor de todas as funcionalidades.", "Cron" => "Cron", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 9ea9b164a3..31b3c774f8 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -61,7 +61,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "A 'fileinfo' modul hiányzik", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése a MIME-típusok felismerésének eredményessé tételéhez.", "Locale not working" => "A nyelvi lokalizáció nem működik", -"System locale can't be set 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." => "Ezen az ownCloud kiszolgálón nem használható a %s nyelvi beállítás. Ez azt jelenti, hogy a fájlnevekben gond lehet bizonyos karakterekkel. Nyomatékosan ajánlott, hogy telepítse a szükséges csomagokat annak érdekében, hogy a rendszer támogassa a %s beállítást.", "Internet connection not working" => "Az internet kapcsolat nem működik", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "A kiszolgálónak nincs müködő internet kapcsolata. Ez azt jelenti, hogy néhány képességét a kiszolgálónak mint például becsatolni egy külső tárolót, értesítések külső gyártók programjának frissítéséről nem fog müködni. A távolról való elérése a fileoknak és email értesítések küldése szintén nem fog müködni. Ha használni szeretnéd mindezeket a képességeit a szervernek, ahoz javasoljuk, hogy engedélyezzed az internet elérését a szervernek.", "Cron" => "Ütemezett feladatok", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index f6b5193054..423f1dd8a4 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -61,7 +61,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Modulo 'fileinfo' mancante", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Il modulo PHP 'fileinfo' non è presente. Consigliamo vivamente di abilitare questo modulo per ottenere risultati migliori con il rilevamento dei tipi MIME.", "Locale not working" => "Locale non funzionante", -"System locale can't be set 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." => "La localizzazione di sistema è impostata a %s. Ciò significa che potrebbero verificarsi dei problemi con alcuni caratteri nei nomi dei file. Consigliamo vivamente di installare i pacchetti necessari a supportare %s.", "Internet connection not working" => "Concessione Internet non funzionante", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Questo server ownCloud non ha una connessione a Internet funzionante. Ciò significa che alcune delle funzionalità come il montaggio di archivi esterni, le notifiche degli aggiornamenti o l'installazione di applicazioni di terze parti non funzioneranno. L'accesso remoto ai file e l'invio di email di notifica potrebbero non funzionare. Ti suggeriamo di abilitare la connessione a Internet del server se desideri disporre di tutte le funzionalità.", "Cron" => "Cron", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 919de33420..6916324e29 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -61,7 +61,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "モジュール 'fileinfo' が見つかりません", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。", "Locale not working" => "ロケールが動作していません", -"System locale can't be set 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." => "システムロケールが %s に設定出来ません。この場合、ファイル名にそのロケールの文字が入っていたときに問題になる可能性があります。必要なパッケージをシステムにインストールして、%s をサポートすることを強くお勧めします。", "Internet connection not working" => "インターネット接続が動作していません", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "このサーバーはインターネットに接続していません。この場合、外部ストレージのマウント、更新の通知やサードパーティアプリといったいくつかの機能が使えません。また、リモート接続でのファイルアクセス、通知メールの送信と言った機能も利用できないかもしれません。全ての機能を利用したいのであれば、このサーバーからインターネットに接続できるようにすることをお勧めします。", "Cron" => "Cron", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index 52f1176472..e49f26f06e 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -54,7 +54,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Trūksta 'fileinfo' modulio", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Trūksta PHP modulio „fileinfo“. Labai rekomenduojame įjungti šį modulį, kad gauti geriausius rezultatus nustatant mime-tipą.", "Locale not working" => "Lokalė neveikia", -"System locale can't be set 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." => "Negalima nustatyti sistemos lokalės į %s. Tai reiškia, kad gali būti problemų su tam tikrais simboliais failų pavadinimuose. Labai rekomenduojame įdiegti reikalingus paketus Jūsų sistemoje, kad palaikyti %s.", "Internet connection not working" => "Nėra interneto ryšio", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Šis serveris neturi veikiančio ryšio. Tai reiškia, kas kai kurios funkcijos kaip išorinės saugyklos prijungimas, perspėjimai apie atnaujinimus ar trečių šalių programų įdiegimas neveikia. Failų pasiekimas iš kitur ir pranešimų siuntimas el. paštu gali taip pat neveikti. Rekomenduojame įjungti interneto ryšį šiame serveryje, jei norite naudoti visas funkcijas.", "Cron" => "Cron", diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index 63ad398baa..54d0352e2b 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -44,7 +44,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Trūkst modulis “fileinfo”", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Trūkst PHP modulis “fileinfo”. Mēs iesakām to aktivēt, lai pēc iespējas labāk noteiktu mime tipus.", "Locale not working" => "Lokāle nestrādā", -"System locale can't be set 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." => "Sistēmas lokalizāciju nevar nomainīt uz %s. Tas nozīmē ka var rasties sarežģījumi ar dažu burtu attēlošanu failu nosaukumos. Ir rekomendēts uzstādīt nepieciešamās pakotnes lai atbalstītu %s lokalizāciju.", "Internet connection not working" => "Interneta savienojums nedarbojas", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Šim serverim nav savienojums ar internetu. Tas nozīmē ka nebūs tādas iespējas kā ārējo datu nesēju montēšana, paziņojumi par atjauninājumiem vai citu izstrādātāju programmu uzstādīšana. Attālināta failu piekļuve vai paziņojumu epastu sūtīšana iespējams arī nedarbosies. Ir rekomendēts iespējot interneta savienojumu lai gūtu iespēju izmantotu visus risinājumus.", "Cron" => "Cron", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 34866a2b8e..a12ff49911 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -61,7 +61,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Module 'fileinfo' ontbreekt", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "De PHP module 'fileinfo' ontbreekt. We adviseren met klem om deze module te activeren om de beste resultaten te bereiken voor mime-type detectie.", "Locale not working" => "Taalbestand werkt niet", -"System locale can't be set 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." => "De systeemtaal kan niet worden ingesteld op %s. Hierdoor kunnen er problemen optreden met bepaalde karakters in bestandsnamen. Het wordt sterk aangeraden om de vereiste pakketen op uw systeem te installeren, zodat %s ondersteund wordt.", "Internet connection not working" => "Internet verbinding werkt niet", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Deze server heeft geen actieve internetverbinding. Dat betekent dat sommige functies, zoals aankoppelen van externe opslag, notificaties over updates of installatie van apps van 3e partijen niet werken. Ook het benaderen van bestanden vanaf een remote locatie en het versturen van notificatie emails kan mislukken. We adviseren om de internetverbinding voor deze server in te schakelen als u alle functies wilt gebruiken.", "Cron" => "Cron", diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 78958956d0..ec1dbba373 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -53,7 +53,6 @@ $TRANSLATIONS = array( "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 å slå på denne modulen for å best mogleg oppdaga MIME-typar.", "Locale not working" => "Regionaldata fungerer ikkje", -"System locale can't be set 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." => "Klarte ikkje endra regionaldata for systemet til %s. Dette vil seia at det kan verta problem med visse teikn i filnamn. Me rår deg sterkt til å installera dei kravde pakkene på systemet ditt så du får støtte for %s.", "Internet connection not working" => "Nettilkoplinga fungerer ikkje", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Denne tenaren har ikkje ei fungerande nettilkopling. Dette vil seia at visse funksjonar, som montering av ekstern lagring, meldingar om oppdateringar eller installering av tredjepartsprogram, ikkje vil fungera. Det kan òg henda at du ikkje får tilgang til filene dine utanfrå, eller ikkje får sendt varslingsepostar. Me rår deg til å skru på nettilkoplinga for denne tenaren viss du ønskjer desse funksjonane.", "Cron" => "Cron", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 9f3b9f7a8f..25f3f85a1b 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -61,7 +61,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Brak modułu „fileinfo”", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Brak modułu PHP „fileinfo”. Zalecamy włączenie tego modułu, aby uzyskać najlepsze wyniki podczas wykrywania typów MIME.", "Locale not working" => "Lokalizacja nie działa", -"System locale can't be set 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." => "System lokalny nie może włączyć ustawień regionalnych %s. Może to oznaczać, że wystąpiły problemy z niektórymi znakami w nazwach plików. Zalecamy instalację wymaganych pakietów na tym systemie w celu wsparcia %s.", "Internet connection not working" => "Połączenie internetowe nie działa", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Ten serwer OwnCloud nie ma połączenia z Internetem. Oznacza to, że niektóre z funkcji, takich jak montowanie zewnętrznych zasobów, powiadomienia o aktualizacji lub 3-cie aplikacje mogą nie działać. Dostęp do plików z zewnątrz i wysyłanie powiadomienia e-mail nie może również działać. Sugerujemy, aby włączyć połączenia internetowego dla tego serwera, jeśli chcesz mieć wszystkie opcje.", "Cron" => "Cron", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index 6209b80dd9..6e34aa81d0 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -61,7 +61,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Módulo 'fileinfo' faltando", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "O módulo PHP 'fileinfo' está faltando. Recomendamos que ative este módulo para obter uma melhor detecção do tipo de mídia (mime-type).", "Locale not working" => "Localização não funcionando", -"System locale can't be set 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." => "A localidade do sistema não pode ser definida para %s. Isso significa que pode haver problemas com certos caracteres em nomes de arquivos. Nós sugerimos instalar os pacotes necessários no seu sistema para suportar %s.", "Internet connection not working" => "Sem conexão com a internet", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor não tem conexão com a internet. Isso significa que algumas das características como a montagem de armazenamento externo, notificações sobre atualizações ou instalação de aplicativos de 3ºs terceiros não funcionam. Acessar arquivos remotamente e envio de e-mails de notificação também não podem funcionar. Sugerimos permitir conexão com a internet para esse servidor, se você deseja ter todas as funcionalidades.", "Cron" => "Cron", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 644bedb45e..3ca6ffbb5e 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -52,7 +52,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Falta o módulo 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "O Módulo PHP 'fileinfo' não se encontra instalado/activado. É fortemente recomendado que active este módulo para obter os melhores resultado com a detecção dos tipos de mime.", "Locale not working" => "Internacionalização não está a funcionar", -"System locale can't be set 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 de ownCloud não consegue definir a codificação de caracteres para %s. Isto significa que pode haver problemas com alguns caracteres nos nomes dos ficheiros. É fortemente recomendado que instale o pacote recomendado para ser possível ver caracteres codificados em %s.", "Internet connection not working" => "A ligação à internet não está a funcionar", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor ownCloud não tem uma ligação de internet a funcionar. Isto significa que algumas funcionalidades como o acesso a locais externos (dropbox, gdrive, etc), notificações sobre actualizções, ou a instalação de aplicações não irá funcionar. Sugerimos que active uma ligação à internet se pretender obter todas as funcionalidades do ownCloud.", "Cron" => "Cron", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 7818a94306..394bc04527 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -61,7 +61,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Модуль 'fileinfo' отсутствует", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP-модуль 'fileinfo' отсутствует. Мы настоятельно рекомендуем включить этот модуль для улучшения определения типов (mime-type) файлов.", "Locale not working" => "Локализация не работает", -"System locale can't be set 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." => "Системный язык не может быть установлен в %s. Это значит, что могут возникнуть проблемы с некоторыми символами в именах файлов. Мы настойчиво предлагаем установить требуемые пакеты в Вашей системе для поддержки %s.", "Internet connection not working" => "Интернет-соединение не работает", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Этот сервер не имеет подключения к сети интернет. Это значит, что некоторые возможности, такие как подключение внешних дисков, уведомления об обновлениях или установка сторонних приложений – не работают. Удалённый доступ к файлам и отправка уведомлений по электронной почте вероятнее всего тоже не будут работать. Предлагаем включить соединение с интернетом для этого сервера, если Вы хотите иметь все возможности.", "Cron" => "Планировщик задач по расписанию", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index 1d46e54da8..c796b54043 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -61,7 +61,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Chýba modul 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Chýba modul 'fileinfo'. Dôrazne doporučujeme ho povoliť pre dosiahnutie najlepších výsledkov zisťovania mime-typu.", "Locale not working" => "Lokalizácia nefunguje", -"System locale can't be set 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." => "Systémové nastavenie lokalizácie nemohlo byť nastavené na %s. To znamená, že sa môžu vyskytnúť problémy s niektorými znakmi v názvoch súborov. Odporúčame nainštalovať do vášho systému balíčky potrebné pre podporu %s.", "Internet connection not working" => "Pripojenie na internet nefunguje", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Server nemá funkčné pripojenie k internetu. Niektoré moduly ako napr. externé úložisko, oznámenie o dostupných aktualizáciách alebo inštalácia aplikácií tretích strán nebudú fungovať. Prístup k súborom z iných miest a odosielanie oznamovacích emailov tiež nemusí fungovať. Ak chcete využívať všetky vlastnosti ownCloudu, odporúčame povoliť pripojenie k internetu tomuto serveru.", "Cron" => "Cron", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 2b63897cba..dabd1b3dbb 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -54,7 +54,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Modulen \"fileinfo\" saknas", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP-modulen 'fileinfo' saknas. Vi rekommenderar starkt att aktivera den här modulen för att kunna upptäcka korrekt mime-typ.", "Locale not working" => "Locale fungerar inte", -"System locale can't be set 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." => "Systemets språk kan inte sättas till %s. Detta innebär att det kan vara problem med vissa tecken i filnamn. Det är starkt rekommenderat att installera nödvändiga paket så att systemet får stöd för %s.", "Internet connection not working" => "Internetförbindelsen fungerar inte", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Servern har ingen fungerande internetanslutning. Detta innebär att en del av de funktioner som montering av extern lagring, notifieringar om uppdateringar eller installation av 3: e part appar inte fungerar. Åtkomst till filer och skicka e-postmeddelanden fungerar troligen inte heller. Vi rekommenderar starkt att aktivera en internetuppkoppling för denna server om du vill ha alla funktioner.", "Cron" => "Cron", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 1bb1b4f917..2d87cb3730 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -61,7 +61,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Modül 'fileinfo' kayıp", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP modülü 'fileinfo' kayıp. MIME-tip tanıma ile en iyi sonuçları elde etmek için bu modülü etkinleştirmenizi öneririz.", "Locale not working" => "Locale çalışmıyor.", -"System locale can't be set 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." => "Sistem yereli %s olarak değiştirilemedi. Bu, dosya adlarındaki bazı karakterlerde sorun olabileceği anlamına gelir. %s desteklemek için gerekli paketleri kurmanızı şiddetle öneririz.", "Internet connection not working" => "İnternet bağlantısı çalışmıyor", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Bu sunucunun çalışan bir internet bağlantısı yok. Bu, harici depolama alanı bağlama, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacak demektir. Uzak dosyalara erişim ve e-posta ile bildirim gönderme de çalışmayacaktır. Eğer bu özelliklerin tamamını kullanmak istiyorsanız, sunucu için internet bağlantısını etkinleştirmenizi öneriyoruz.", "Cron" => "Cron", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index f209c8b2b5..c85a7c8408 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -46,7 +46,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "模块'文件信息'丢失", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP模块'文件信息'丢失. 我们强烈建议启用此模块以便mime类型检测取得最佳结果.", "Locale not working" => "本地化无法工作", -"System locale can't be set 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." => "服务器无法设置系统本地化到%s. 这意味着可能文件名中有一些字符会引起问题. 我们强烈建议在你系统上安装所需的软件包来支持%s", "Internet connection not working" => "因特网连接无法工作", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "此服务器上没有可用的因特网连接. 这意味着某些特性将无法工作,例如挂载外部存储器, 提醒更新或安装第三方应用等. 从远程访问文件和发送提醒电子邮件也可能无法工作. 如果你想要ownCloud的所有特性, 我们建议启用此服务器的因特网连接.", "Cron" => "计划任务", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 6316ab31be..57b70b80b0 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -54,7 +54,6 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "遺失 'fileinfo' 模組", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "未偵測到 PHP 模組 'fileinfo'。我們強烈建議啟用這個模組以取得最好的 mime-type 支援。", "Locale not working" => "語系無法運作", -"System locale can't be set 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." => "ownCloud 伺服器無法將系統語系設為 %s ,可能有一些檔名中的字元有問題,建議您安裝所有所需的套件以支援 %s 。", "Internet connection not working" => "無網際網路存取", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "這臺 ownCloud 伺服器沒有連接到網際網路,因此有些功能像是掛載外部儲存空間、更新 ownCloud 或應用程式的通知沒有辦法運作。透過網際網路存取檔案還有電子郵件通知可能也無法運作。如果想要 ownCloud 完整的功能,建議您將這臺伺服器連接至網際網路。", "Cron" => "Cron", From c22019dec5629967a092c1a64159469ad8fef5d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 22 Nov 2013 12:20:06 +0100 Subject: [PATCH 43/84] Working on a chunked video can result in a broken frame index the option -vsync 1 can heal that --- lib/private/preview/movies.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/preview/movies.php b/lib/private/preview/movies.php index 276209a876..3cbbaa9d3b 100644 --- a/lib/private/preview/movies.php +++ b/lib/private/preview/movies.php @@ -52,7 +52,7 @@ if (!\OC_Util::runningOnWindows()) { if (self::$avconvBinary) { $cmd = self::$avconvBinary . ' -an -y -ss 5'. ' -i ' . escapeshellarg($absPath) . - ' -f mjpeg -vframes 1 ' . escapeshellarg($tmpPath) . + ' -f mjpeg -vframes 1 -vsync 1 ' . escapeshellarg($tmpPath) . ' > /dev/null 2>&1'; } else { From 14e707503052de95aa091d02d8cc229a05d77e95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 22 Nov 2013 12:23:22 +0100 Subject: [PATCH 44/84] we better use 5MB (1024 * 1024 * 5 = 5242880) instead of 1MB. in some cases 1MB was no enough to generate thumbnail --- lib/private/preview/movies.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/private/preview/movies.php b/lib/private/preview/movies.php index 3cbbaa9d3b..ac771deb41 100644 --- a/lib/private/preview/movies.php +++ b/lib/private/preview/movies.php @@ -46,7 +46,9 @@ if (!\OC_Util::runningOnWindows()) { $handle = $fileview->fopen($path, 'rb'); - $firstmb = stream_get_contents($handle, 1048576); //1024 * 1024 = 1048576 + // we better use 5MB (1024 * 1024 * 5 = 5242880) instead of 1MB. + // in some cases 1MB was no enough to generate thumbnail + $firstmb = stream_get_contents($handle, 5242880); file_put_contents($absPath, $firstmb); if (self::$avconvBinary) { From 3488f0b77a2d03747bf20b5d870639cb40440083 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 22 Nov 2013 12:26:01 +0100 Subject: [PATCH 45/84] use relative paths to create images from a file. This way it also works if no user is logged in (e.g. public gallery share) --- lib/private/image.php | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/lib/private/image.php b/lib/private/image.php index 7761a3c773..b5ae1165f8 100644 --- a/lib/private/image.php +++ b/lib/private/image.php @@ -414,60 +414,61 @@ class OC_Image { */ public function loadFromFile($imagePath=false) { // exif_imagetype throws "read error!" if file is less than 12 byte - if(!@is_file($imagePath) || !file_exists($imagePath) || filesize($imagePath) < 12 || !is_readable($imagePath)) { + $absPath = \OC\Files\Filesystem::getLocalFile($imagePath); + if(!@is_file($absPath) || !file_exists($absPath) || filesize($absPath) < 12 || !is_readable($absPath)) { // Debug output disabled because this method is tried before loadFromBase64? - OC_Log::write('core', 'OC_Image->loadFromFile, couldn\'t load: '.$imagePath, OC_Log::DEBUG); + OC_Log::write('core', 'OC_Image->loadFromFile, couldn\'t load: '.$absPath, OC_Log::DEBUG); return false; } - $iType = exif_imagetype($imagePath); + $iType = exif_imagetype($absPath); switch ($iType) { case IMAGETYPE_GIF: if (imagetypes() & IMG_GIF) { - $this->resource = imagecreatefromgif($imagePath); + $this->resource = imagecreatefromgif($absPath); } else { OC_Log::write('core', - 'OC_Image->loadFromFile, GIF images not supported: '.$imagePath, + 'OC_Image->loadFromFile, GIF images not supported: '.$absPath, OC_Log::DEBUG); } break; case IMAGETYPE_JPEG: if (imagetypes() & IMG_JPG) { - $this->resource = imagecreatefromjpeg($imagePath); + $this->resource = imagecreatefromjpeg($absPath); } else { OC_Log::write('core', - 'OC_Image->loadFromFile, JPG images not supported: '.$imagePath, + 'OC_Image->loadFromFile, JPG images not supported: '.$absPath, OC_Log::DEBUG); } break; case IMAGETYPE_PNG: if (imagetypes() & IMG_PNG) { - $this->resource = imagecreatefrompng($imagePath); + $this->resource = imagecreatefrompng($absPath); } else { OC_Log::write('core', - 'OC_Image->loadFromFile, PNG images not supported: '.$imagePath, + 'OC_Image->loadFromFile, PNG images not supported: '.$absPath, OC_Log::DEBUG); } break; case IMAGETYPE_XBM: if (imagetypes() & IMG_XPM) { - $this->resource = imagecreatefromxbm($imagePath); + $this->resource = imagecreatefromxbm($absPath); } else { OC_Log::write('core', - 'OC_Image->loadFromFile, XBM/XPM images not supported: '.$imagePath, + 'OC_Image->loadFromFile, XBM/XPM images not supported: '.$absPath, OC_Log::DEBUG); } break; case IMAGETYPE_WBMP: if (imagetypes() & IMG_WBMP) { - $this->resource = imagecreatefromwbmp($imagePath); + $this->resource = imagecreatefromwbmp($absPath); } else { OC_Log::write('core', - 'OC_Image->loadFromFile, WBMP images not supported: '.$imagePath, + 'OC_Image->loadFromFile, WBMP images not supported: '.$absPath, OC_Log::DEBUG); } break; case IMAGETYPE_BMP: - $this->resource = $this->imagecreatefrombmp($imagePath); + $this->resource = $this->imagecreatefrombmp($absPath); break; /* case IMAGETYPE_TIFF_II: // (intel byte order) @@ -496,7 +497,7 @@ class OC_Image { default: // this is mostly file created from encrypted file - $this->resource = imagecreatefromstring(\OC\Files\Filesystem::file_get_contents(\OC\Files\Filesystem::getLocalPath($imagePath))); + $this->resource = imagecreatefromstring(\OC\Files\Filesystem::file_get_contents($imagePath)); $iType = IMAGETYPE_PNG; OC_Log::write('core', 'OC_Image->loadFromFile, Default', OC_Log::DEBUG); break; From 92c8672c0f4cae5881abdb4832955e3fa6ae6350 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 22 Nov 2013 12:34:37 +0100 Subject: [PATCH 46/84] fixing PHPDoc comments and syntax --- lib/private/avatar.php | 4 +++- lib/private/server.php | 4 ++-- lib/public/iservercontainer.php | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/lib/private/avatar.php b/lib/private/avatar.php index e82e517b09..814a9b22be 100644 --- a/lib/private/avatar.php +++ b/lib/private/avatar.php @@ -54,7 +54,9 @@ class OC_Avatar implements \OCP\IAvatar { $img = new OC_Image($data); $type = substr($img->mimeType(), -3); - if ($type === 'peg') { $type = 'jpg'; } + if ($type === 'peg') { + $type = 'jpg'; + } if ($type !== 'jpg' && $type !== 'png') { $l = \OC_L10N::get('lib'); throw new \Exception($l->t("Unknown filetype")); diff --git a/lib/private/server.php b/lib/private/server.php index 7711269acf..77c3732a9c 100644 --- a/lib/private/server.php +++ b/lib/private/server.php @@ -132,7 +132,7 @@ class Server extends SimpleContainer implements IServerContainer { return new ActivityManager(); }); $this->registerService('AvatarManager', function($c) { - return new AvatarManager(); //TODO AvatarManager needs $user + return new AvatarManager(); }); } @@ -176,7 +176,7 @@ class Server extends SimpleContainer implements IServerContainer { /** * Returns the avatar manager, used for avatar functionality * - * @return \OCP\IAvatar + * @return \OCP\IAvatarManager */ function getAvatarManager() { return $this->query('AvatarManager'); diff --git a/lib/public/iservercontainer.php b/lib/public/iservercontainer.php index 6556b52c3b..36296a5985 100644 --- a/lib/public/iservercontainer.php +++ b/lib/public/iservercontainer.php @@ -156,7 +156,7 @@ interface IServerContainer { /** * @brief Returns an avatar manager, used for avatar functionality - * @return \OCP\IAvatar + * @return \OCP\IAvatarManager */ function getAvatarManager(); From 7e4f50d4e385e1d55b7839146a82dd48cb657c2a Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 22 Nov 2013 13:55:38 +0100 Subject: [PATCH 47/84] add incognito mode, allows to hide my user ID. For example, this is useful to access public resources while a user is still logged in --- lib/private/user.php | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/lib/private/user.php b/lib/private/user.php index f15fdf1dbb..5bd3600675 100644 --- a/lib/private/user.php +++ b/lib/private/user.php @@ -54,6 +54,9 @@ class OC_User { private static $_setupedBackends = array(); + // bool, stores if a user want to access a resource anonymously, e.g if he opens a public link + private static $incognitoMode = false; + /** * @brief registers backend * @param string $backend name of the backend @@ -319,6 +322,15 @@ class OC_User { return false; } + /** + * @brief set incognito mode, e.g. if a user wants to open a public link + * @param bool $status + */ + public static function setIncognitoMode($status) { + self::$incognitoMode = $status; + + } + /** * Supplies an attribute to the logout hyperlink. The default behaviour * is to return an href with '?logout=true' appended. However, it can @@ -354,7 +366,7 @@ class OC_User { */ public static function getUser() { $uid = OC::$session ? OC::$session->get('user_id') : null; - if (!is_null($uid)) { + if (!is_null($uid) && self::$incognitoMode === false) { return $uid; } else { return false; From 2cc0c90015aca5ea287dadd8c0edc3925a573426 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 22 Nov 2013 14:00:08 +0100 Subject: [PATCH 48/84] set incognito mode for public.php calls. Because in this case ownCloud should always work the same way as if no user is logged in --- public.php | 1 + 1 file changed, 1 insertion(+) diff --git a/public.php b/public.php index 1781632bc7..203372fe1e 100644 --- a/public.php +++ b/public.php @@ -20,6 +20,7 @@ try { OC_Util::checkAppEnabled($app); OC_App::loadApp($app); + OC_User::setIncognitoMode(true); require_once OC_App::getAppPath($app) .'/'. $parts[1]; From c67b8f2b224a6053600ffecd765bcf49ed6d8e8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 22 Nov 2013 14:58:36 +0100 Subject: [PATCH 49/84] fixed documentation --- apps/files_trashbin/appinfo/info.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_trashbin/appinfo/info.xml b/apps/files_trashbin/appinfo/info.xml index e9cbdafc1c..2cc7d9a7ac 100644 --- a/apps/files_trashbin/appinfo/info.xml +++ b/apps/files_trashbin/appinfo/info.xml @@ -6,7 +6,7 @@ ownCloud keeps a copy of your deleted files in case you need them again. To make sure that the user doesn't run out of memory the deleted files app manages the size of the deleted files for the user. By default deleted files - stay in the trash bin for 180 days. ownCloud checks the age of the files + stay in the trash bin for 90 days. ownCloud checks the age of the files every time a new files gets moved to the deleted files and remove all files older than 180 days. The user can adjust this value in the config.php by setting the "trashbin_retention_obligation" value. From ae6610f0ea6c46910c131116a8a84ae1567ca175 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Fri, 22 Nov 2013 15:48:24 +0100 Subject: [PATCH 50/84] fix navigation scrollbar --- core/css/styles.css | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 1761115903..938b522a90 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -561,12 +561,13 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } /* NAVIGATION ------------------------------------------------------------- */ #navigation { - position: fixed; - float: left; + position: absolute; + top: 0; + bottom: 0; + left: 0; width: 80px; margin-top:45px; z-index: 75; - height: 100%; background:#383c43 url('../img/noise.png') repeat; overflow:hidden; box-sizing:border-box; -moz-box-sizing:border-box; /* prevent ugly selection effect on accidental selection */ @@ -624,10 +625,10 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } /* Apps management as sticky footer, less obtrusive in the list */ #navigation .wrapper { min-height: 100%; - margin: 0 auto -120px; + margin: 0 auto -72px; } #apps-management, #navigation .push { - height: 120px; + height: 72px; } #apps-management { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)"; From aeefe48cba49a869bfe93cdf10cc3da79914e080 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 22 Nov 2013 18:01:44 +0100 Subject: [PATCH 51/84] Revert "use relative paths to create images from a file. This way it also works if" This reverts commit 3488f0b77a2d03747bf20b5d870639cb40440083. --- lib/private/image.php | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/lib/private/image.php b/lib/private/image.php index b5ae1165f8..7761a3c773 100644 --- a/lib/private/image.php +++ b/lib/private/image.php @@ -414,61 +414,60 @@ class OC_Image { */ public function loadFromFile($imagePath=false) { // exif_imagetype throws "read error!" if file is less than 12 byte - $absPath = \OC\Files\Filesystem::getLocalFile($imagePath); - if(!@is_file($absPath) || !file_exists($absPath) || filesize($absPath) < 12 || !is_readable($absPath)) { + if(!@is_file($imagePath) || !file_exists($imagePath) || filesize($imagePath) < 12 || !is_readable($imagePath)) { // Debug output disabled because this method is tried before loadFromBase64? - OC_Log::write('core', 'OC_Image->loadFromFile, couldn\'t load: '.$absPath, OC_Log::DEBUG); + OC_Log::write('core', 'OC_Image->loadFromFile, couldn\'t load: '.$imagePath, OC_Log::DEBUG); return false; } - $iType = exif_imagetype($absPath); + $iType = exif_imagetype($imagePath); switch ($iType) { case IMAGETYPE_GIF: if (imagetypes() & IMG_GIF) { - $this->resource = imagecreatefromgif($absPath); + $this->resource = imagecreatefromgif($imagePath); } else { OC_Log::write('core', - 'OC_Image->loadFromFile, GIF images not supported: '.$absPath, + 'OC_Image->loadFromFile, GIF images not supported: '.$imagePath, OC_Log::DEBUG); } break; case IMAGETYPE_JPEG: if (imagetypes() & IMG_JPG) { - $this->resource = imagecreatefromjpeg($absPath); + $this->resource = imagecreatefromjpeg($imagePath); } else { OC_Log::write('core', - 'OC_Image->loadFromFile, JPG images not supported: '.$absPath, + 'OC_Image->loadFromFile, JPG images not supported: '.$imagePath, OC_Log::DEBUG); } break; case IMAGETYPE_PNG: if (imagetypes() & IMG_PNG) { - $this->resource = imagecreatefrompng($absPath); + $this->resource = imagecreatefrompng($imagePath); } else { OC_Log::write('core', - 'OC_Image->loadFromFile, PNG images not supported: '.$absPath, + 'OC_Image->loadFromFile, PNG images not supported: '.$imagePath, OC_Log::DEBUG); } break; case IMAGETYPE_XBM: if (imagetypes() & IMG_XPM) { - $this->resource = imagecreatefromxbm($absPath); + $this->resource = imagecreatefromxbm($imagePath); } else { OC_Log::write('core', - 'OC_Image->loadFromFile, XBM/XPM images not supported: '.$absPath, + 'OC_Image->loadFromFile, XBM/XPM images not supported: '.$imagePath, OC_Log::DEBUG); } break; case IMAGETYPE_WBMP: if (imagetypes() & IMG_WBMP) { - $this->resource = imagecreatefromwbmp($absPath); + $this->resource = imagecreatefromwbmp($imagePath); } else { OC_Log::write('core', - 'OC_Image->loadFromFile, WBMP images not supported: '.$absPath, + 'OC_Image->loadFromFile, WBMP images not supported: '.$imagePath, OC_Log::DEBUG); } break; case IMAGETYPE_BMP: - $this->resource = $this->imagecreatefrombmp($absPath); + $this->resource = $this->imagecreatefrombmp($imagePath); break; /* case IMAGETYPE_TIFF_II: // (intel byte order) @@ -497,7 +496,7 @@ class OC_Image { default: // this is mostly file created from encrypted file - $this->resource = imagecreatefromstring(\OC\Files\Filesystem::file_get_contents($imagePath)); + $this->resource = imagecreatefromstring(\OC\Files\Filesystem::file_get_contents(\OC\Files\Filesystem::getLocalPath($imagePath))); $iType = IMAGETYPE_PNG; OC_Log::write('core', 'OC_Image->loadFromFile, Default', OC_Log::DEBUG); break; From a49e873d3fa513136bfdf1d71bbc2bbcd61d3650 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 21 Nov 2013 19:15:11 +0100 Subject: [PATCH 52/84] Return plausible isReadable() default impl for ext storage When an ext storage doesn't implement isReadable(), always returning true made the file scanner believe that the file exists and creates a cache entry with the size zero. This fix makes the default impl of isReadable() use file_exists(). Fixes #5940 --- apps/files_external/lib/streamwrapper.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/apps/files_external/lib/streamwrapper.php b/apps/files_external/lib/streamwrapper.php index 4a63dfb6e0..a086f411f5 100644 --- a/apps/files_external/lib/streamwrapper.php +++ b/apps/files_external/lib/streamwrapper.php @@ -42,11 +42,16 @@ abstract class StreamWrapper extends Common { } public function isReadable($path) { - return true; //not properly supported + // at least check whether it exists + // subclasses might want to implement this more thoroughly + return $this->file_exists($path); } public function isUpdatable($path) { - return true; //not properly supported + // at least check whether it exists + // subclasses might want to implement this more thoroughly + // a non-existing file/folder isn't updatable + return $this->file_exists($path); } public function file_exists($path) { From c62cce826994291c528e7cc90da5be9fc94ebaf2 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 22 Nov 2013 15:24:23 +0100 Subject: [PATCH 53/84] Moved default isReadable/isUpdatable impl into Common class Also adjusted all ext storage backends to not override these when the default behavior is expected. --- apps/files_external/lib/amazons3.php | 8 -------- apps/files_external/lib/dropbox.php | 8 -------- apps/files_external/lib/google.php | 4 ---- apps/files_external/lib/sftp.php | 8 -------- apps/files_external/lib/streamwrapper.php | 13 ------------- apps/files_external/lib/swift.php | 8 -------- apps/files_external/lib/webdav.php | 8 -------- lib/private/files/storage/common.php | 13 +++++++++++++ 8 files changed, 13 insertions(+), 57 deletions(-) diff --git a/apps/files_external/lib/amazons3.php b/apps/files_external/lib/amazons3.php index c08a266b48..9a682fb2d4 100644 --- a/apps/files_external/lib/amazons3.php +++ b/apps/files_external/lib/amazons3.php @@ -300,14 +300,6 @@ class AmazonS3 extends \OC\Files\Storage\Common { return false; } - public function isReadable($path) { - return true; - } - - public function isUpdatable($path) { - return true; - } - public function unlink($path) { $path = $this->normalizePath($path); diff --git a/apps/files_external/lib/dropbox.php b/apps/files_external/lib/dropbox.php index b6deab6e5a..6e464f4e28 100755 --- a/apps/files_external/lib/dropbox.php +++ b/apps/files_external/lib/dropbox.php @@ -146,14 +146,6 @@ class Dropbox extends \OC\Files\Storage\Common { return false; } - public function isReadable($path) { - return $this->file_exists($path); - } - - public function isUpdatable($path) { - return $this->file_exists($path); - } - public function file_exists($path) { if ($path == '' || $path == '/') { return true; diff --git a/apps/files_external/lib/google.php b/apps/files_external/lib/google.php index b63b5885de..426caf008e 100644 --- a/apps/files_external/lib/google.php +++ b/apps/files_external/lib/google.php @@ -317,10 +317,6 @@ class Google extends \OC\Files\Storage\Common { } } - public function isReadable($path) { - return $this->file_exists($path); - } - public function isUpdatable($path) { $file = $this->getDriveFile($path); if ($file) { diff --git a/apps/files_external/lib/sftp.php b/apps/files_external/lib/sftp.php index 7c5aed5aa0..bcc4c5eafd 100644 --- a/apps/files_external/lib/sftp.php +++ b/apps/files_external/lib/sftp.php @@ -180,14 +180,6 @@ class SFTP extends \OC\Files\Storage\Common { return false; } - public function isReadable($path) { - return true; - } - - public function isUpdatable($path) { - return true; - } - public function file_exists($path) { try { return $this->client->stat($this->absPath($path)) !== false; diff --git a/apps/files_external/lib/streamwrapper.php b/apps/files_external/lib/streamwrapper.php index a086f411f5..23c5f91a2f 100644 --- a/apps/files_external/lib/streamwrapper.php +++ b/apps/files_external/lib/streamwrapper.php @@ -41,19 +41,6 @@ abstract class StreamWrapper extends Common { return filetype($this->constructUrl($path)); } - public function isReadable($path) { - // at least check whether it exists - // subclasses might want to implement this more thoroughly - return $this->file_exists($path); - } - - public function isUpdatable($path) { - // at least check whether it exists - // subclasses might want to implement this more thoroughly - // a non-existing file/folder isn't updatable - return $this->file_exists($path); - } - public function file_exists($path) { return file_exists($this->constructUrl($path)); } diff --git a/apps/files_external/lib/swift.php b/apps/files_external/lib/swift.php index bb650dacc7..86938ef3bb 100644 --- a/apps/files_external/lib/swift.php +++ b/apps/files_external/lib/swift.php @@ -268,14 +268,6 @@ class Swift extends \OC\Files\Storage\Common { } } - public function isReadable($path) { - return true; - } - - public function isUpdatable($path) { - return true; - } - public function unlink($path) { $path = $this->normalizePath($path); diff --git a/apps/files_external/lib/webdav.php b/apps/files_external/lib/webdav.php index 5857c59dcf..0837222e51 100644 --- a/apps/files_external/lib/webdav.php +++ b/apps/files_external/lib/webdav.php @@ -134,14 +134,6 @@ class DAV extends \OC\Files\Storage\Common{ } } - public function isReadable($path) { - return true;//not properly supported - } - - public function isUpdatable($path) { - return true;//not properly supported - } - public function file_exists($path) { $this->init(); $path=$this->cleanPath($path); diff --git a/lib/private/files/storage/common.php b/lib/private/files/storage/common.php index f99bbc9ae5..678bf41902 100644 --- a/lib/private/files/storage/common.php +++ b/lib/private/files/storage/common.php @@ -51,6 +51,19 @@ abstract class Common implements \OC\Files\Storage\Storage { } } + public function isReadable($path) { + // at least check whether it exists + // subclasses might want to implement this more thoroughly + return $this->file_exists($path); + } + + public function isUpdatable($path) { + // at least check whether it exists + // subclasses might want to implement this more thoroughly + // a non-existing file/folder isn't updatable + return $this->file_exists($path); + } + public function isCreatable($path) { if ($this->is_dir($path) && $this->isUpdatable($path)) { return true; From 2d947835b94362982c98caba68aa1073ab466249 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 22 Nov 2013 18:36:27 +0100 Subject: [PATCH 54/84] Now also preventing the user of "Shared" as mountpoint --- apps/files_external/lib/config.php | 4 ++-- apps/files_external/tests/mountconfig.php | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index de42fe2f75..aaa6c5be1a 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -267,8 +267,8 @@ class OC_Mount_Config { $applicable, $isPersonal = false) { $mountPoint = OC\Files\Filesystem::normalizePath($mountPoint); - if ($mountPoint === '' || $mountPoint === '/') { - // can't mount at root + if ($mountPoint === '' || $mountPoint === '/' || $mountPoint == '/Shared') { + // can't mount at root or "Shared" folder return false; } if ($isPersonal) { diff --git a/apps/files_external/tests/mountconfig.php b/apps/files_external/tests/mountconfig.php index 77241c4dd2..941aec680b 100644 --- a/apps/files_external/tests/mountconfig.php +++ b/apps/files_external/tests/mountconfig.php @@ -44,6 +44,8 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { $isPersonal = false; $this->assertEquals(false, OC_Mount_Config::addMountPoint('', $storageClass, array(), $mountType, $applicable, $isPersonal)); $this->assertEquals(false, OC_Mount_Config::addMountPoint('/', $storageClass, array(), $mountType, $applicable, $isPersonal)); + $this->assertEquals(false, OC_Mount_Config::addMountPoint('Shared', $storageClass, array(), $mountType, $applicable, $isPersonal)); + $this->assertEquals(false, OC_Mount_Config::addMountPoint('/Shared', $storageClass, array(), $mountType, $applicable, $isPersonal)); } } From ba0e09adce14b6ccd36eb93b475f5c4400701587 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 24 Nov 2013 00:14:51 -0500 Subject: [PATCH 55/84] [tx-robot] updated from transifex --- apps/files/l10n/de.php | 1 + apps/files/l10n/de_DE.php | 1 + apps/files/l10n/et_EE.php | 1 + apps/files/l10n/gl.php | 3 ++- apps/files/l10n/it.php | 1 + apps/files_encryption/l10n/el.php | 11 +++++++++- apps/files_sharing/l10n/el.php | 4 +++- apps/user_ldap/l10n/el.php | 7 +++++- core/l10n/de.php | 1 + core/l10n/de_DE.php | 1 + core/l10n/el.php | 13 +++++++++++- core/l10n/et_EE.php | 1 + core/l10n/gl.php | 1 + core/l10n/ja_JP.php | 2 +- core/l10n/ru_RU.php | 1 + l10n/ar/core.po | 4 ++-- l10n/bn_BD/core.po | 4 ++-- l10n/ca/core.po | 4 ++-- l10n/cs_CZ/core.po | 4 ++-- l10n/cy_GB/core.po | 4 ++-- l10n/da/core.po | 4 ++-- l10n/de/core.po | 8 +++---- l10n/de/files.po | 8 +++---- l10n/de/lib.po | 12 +++++------ l10n/de/settings.po | 12 +++++------ l10n/de_CH/core.po | 4 ++-- l10n/de_DE/core.po | 8 +++---- l10n/de_DE/files.po | 8 +++---- l10n/de_DE/lib.po | 12 +++++------ l10n/de_DE/settings.po | 12 +++++------ l10n/el/core.po | 33 +++++++++++++++-------------- l10n/el/files_encryption.po | 25 +++++++++++----------- l10n/el/files_sharing.po | 11 +++++----- l10n/el/lib.po | 10 ++++----- l10n/el/settings.po | 33 +++++++++++++++-------------- l10n/el/user_ldap.po | 17 ++++++++------- l10n/en_GB/core.po | 4 ++-- l10n/eo/core.po | 4 ++-- l10n/es/core.po | 4 ++-- l10n/es_AR/core.po | 4 ++-- l10n/et_EE/core.po | 8 +++---- l10n/et_EE/files.po | 8 +++---- l10n/et_EE/lib.po | 12 +++++------ l10n/et_EE/settings.po | 12 +++++------ l10n/eu/core.po | 4 ++-- l10n/fa/core.po | 4 ++-- l10n/fi_FI/core.po | 4 ++-- l10n/fr/core.po | 4 ++-- l10n/gl/core.po | 8 +++---- l10n/gl/files.po | 10 ++++----- l10n/gl/lib.po | 12 +++++------ l10n/gl/settings.po | 12 +++++------ l10n/he/core.po | 4 ++-- l10n/hr/core.po | 4 ++-- l10n/hu_HU/core.po | 4 ++-- l10n/id/core.po | 4 ++-- l10n/is/core.po | 4 ++-- l10n/it/core.po | 4 ++-- l10n/it/files.po | 8 +++---- l10n/it/lib.po | 12 +++++------ l10n/it/settings.po | 12 +++++------ l10n/ja_JP/core.po | 8 +++---- l10n/ka_GE/core.po | 4 ++-- l10n/ko/core.po | 4 ++-- l10n/lb/core.po | 4 ++-- l10n/lt_LT/core.po | 4 ++-- l10n/lv/core.po | 4 ++-- l10n/mk/core.po | 4 ++-- l10n/my_MM/core.po | 4 ++-- l10n/nb_NO/core.po | 4 ++-- l10n/nl/core.po | 4 ++-- l10n/nn_NO/core.po | 4 ++-- l10n/oc/core.po | 4 ++-- l10n/pl/core.po | 4 ++-- l10n/pt_BR/core.po | 4 ++-- l10n/pt_BR/settings.po | 12 +++++------ l10n/pt_PT/core.po | 4 ++-- l10n/ro/core.po | 4 ++-- l10n/ru/core.po | 4 ++-- l10n/ru_RU/core.po | 6 +++--- l10n/si_LK/core.po | 4 ++-- l10n/sk_SK/core.po | 4 ++-- l10n/sl/core.po | 4 ++-- l10n/sl/settings.po | 10 ++++----- l10n/sq/core.po | 4 ++-- l10n/sr/core.po | 4 ++-- l10n/sr@latin/core.po | 4 ++-- l10n/sv/core.po | 4 ++-- l10n/ta_LK/core.po | 4 ++-- 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/private.pot | 6 +++--- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 ++-- l10n/tr/core.po | 4 ++-- l10n/tr/settings.po | 12 +++++------ l10n/uk/core.po | 4 ++-- l10n/ur_PK/core.po | 4 ++-- l10n/vi/core.po | 4 ++-- l10n/zh_CN/core.po | 4 ++-- l10n/zh_TW/core.po | 4 ++-- lib/l10n/de.php | 1 + lib/l10n/de_DE.php | 1 + lib/l10n/el.php | 2 +- lib/l10n/et_EE.php | 1 + lib/l10n/gl.php | 1 + lib/l10n/it.php | 1 + settings/l10n/de.php | 3 +++ settings/l10n/de_DE.php | 3 +++ settings/l10n/el.php | 13 ++++++++++++ settings/l10n/et_EE.php | 3 +++ settings/l10n/gl.php | 3 +++ settings/l10n/it.php | 3 +++ settings/l10n/pt_BR.php | 3 +++ settings/l10n/sl.php | 2 ++ settings/l10n/tr.php | 3 +++ 124 files changed, 393 insertions(+), 310 deletions(-) diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 725b69c5cb..a4924295a1 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -43,6 +43,7 @@ $TRANSLATIONS = array( "Could not rename file" => "Die Datei konnte nicht umbenannt werden", "replaced {new_name} with {old_name}" => "{old_name} ersetzt durch {new_name}", "undo" => "rückgängig machen", +"Error deleting file." => "Fehler beim Löschen der Datei.", "_%n folder_::_%n folders_" => array("%n Ordner","%n Ordner"), "_%n file_::_%n files_" => array("%n Datei","%n Dateien"), "{dirs} and {files}" => "{dirs} und {files}", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index c539c7ba71..cda2cb272a 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -43,6 +43,7 @@ $TRANSLATIONS = array( "Could not rename file" => "Die Datei konnte nicht umbenannt werden", "replaced {new_name} with {old_name}" => "{old_name} wurde ersetzt durch {new_name}", "undo" => "rückgängig machen", +"Error deleting file." => "Fehler beim Löschen der Datei.", "_%n folder_::_%n folders_" => array("%n Ordner","%n Ordner"), "_%n file_::_%n files_" => array("%n Datei","%n Dateien"), "{dirs} and {files}" => "{dirs} und {files}", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 83a8adf052..29a5771c9f 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -43,6 +43,7 @@ $TRANSLATIONS = array( "Could not rename file" => "Ei suuda faili ümber nimetada", "replaced {new_name} with {old_name}" => "asendas nime {old_name} nimega {new_name}", "undo" => "tagasi", +"Error deleting file." => "Viga faili kustutamisel.", "_%n folder_::_%n folders_" => array("%n kataloog","%n kataloogi"), "_%n file_::_%n files_" => array("%n fail","%n faili"), "{dirs} and {files}" => "{dirs} ja {files}", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 4edb889bb4..d76aad46b4 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -1,6 +1,6 @@ "Non se moveu %s - Xa existe un ficheiro con ese nome.", +"Could not move %s - File with this name already exists" => "Non foi posíbel mover %s; Xa existe un ficheiro con ese nome.", "Could not move %s" => "Non foi posíbel mover %s", "File name cannot be empty." => "O nome de ficheiro non pode estar baleiro", "File name must not contain \"/\". Please choose a different name." => "O nome do ficheiro non pode conter «/». Escolla outro nome.", @@ -43,6 +43,7 @@ $TRANSLATIONS = array( "Could not rename file" => "Non foi posíbel renomear o ficheiro", "replaced {new_name} with {old_name}" => "substituír {new_name} por {old_name}", "undo" => "desfacer", +"Error deleting file." => "Produciuse un erro ao eliminar o ficheiro.", "_%n folder_::_%n folders_" => array("%n cartafol","%n cartafoles"), "_%n file_::_%n files_" => array("%n ficheiro","%n ficheiros"), "{dirs} and {files}" => "{dirs} e {files}", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 48d52653d5..eb8dab7009 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -43,6 +43,7 @@ $TRANSLATIONS = array( "Could not rename file" => "Impossibile rinominare il file", "replaced {new_name} with {old_name}" => "sostituito {new_name} con {old_name}", "undo" => "annulla", +"Error deleting file." => "Errore durante l'eliminazione del file.", "_%n folder_::_%n folders_" => array("%n cartella","%n cartelle"), "_%n file_::_%n files_" => array("%n file","%n file"), "{dirs} and {files}" => "{dirs} e {files}", diff --git a/apps/files_encryption/l10n/el.php b/apps/files_encryption/l10n/el.php index 203a848b74..6b21122027 100644 --- a/apps/files_encryption/l10n/el.php +++ b/apps/files_encryption/l10n/el.php @@ -1,8 +1,13 @@ "Επιτυχής ενεργοποίηση κλειδιού ανάκτησης", +"Could not enable recovery key. Please check your recovery key password!" => "Αποτυχία ενεργοποίησης κλειδιού ανάκτησης. Παρακαλώ ελέγξτε τον κωδικό του κλειδιού ανάκτησής σας!", +"Recovery key successfully disabled" => "Επιτυχής απενεργοποίηση κλειδιού ανάκτησης", +"Could not disable recovery key. Please check your recovery key password!" => "Αποτυχία απενεργοποίησης κλειδιού ανάκτησης. Παρακαλώ ελέγξτε τον κωδικό του κλειδιού ανάκτησής σας!", "Password successfully changed." => "Ο κωδικός αλλάχτηκε επιτυχώς.", "Could not change the password. Maybe the old password was not correct." => "Αποτυχία αλλαγής κωδικού ίσως ο παλιός κωδικός να μην ήταν σωστός.", "Private key password successfully updated." => "Το Προσωπικό κλειδί πρόσβασης ενημερώθηκε επιτυχώς", +"Could not update the private key password. Maybe the old password was not correct." => "Αποτυχία ενημέρωσης του κωδικού για το προσωπικό κλειδί. Ενδεχομένως ο παλιός κωδικός δεν ήταν σωστός.", "Unknown error please check your system settings or contact your administrator" => "Άγνωστο σφάλμα, παρακαλώ ελέγξτε τις ρυθμίσεις συστήματος ή επικοινωνήστε με τον διαχειριστή σας ", "Missing requirements." => "Προαπαιτούμενα που απουσιάζουν.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Παρακαλώ επιβεβαιώστε ότι η PHP 5.3.3 ή νεότερη είναι εγκατεστημένη και ότι το OpenSSL μαζί με το PHP extension είναι ενεργοποιήμένο και έχει ρυθμιστεί σωστά. Προς το παρόν, η εφαρμογή κρυπτογράφησης είναι απενεργοποιημένη.", @@ -16,10 +21,14 @@ $TRANSLATIONS = array( "Disabled" => "Απενεργοποιημένο", "New Recovery key password" => "Νέο κλειδί επαναφοράς κωδικού", "Change Password" => "Αλλαγή Κωδικού Πρόσβασης", +"Your private key password no longer match your log-in password:" => "Ο κωδικός του προσωπικού κλειδιού δεν ταιριάζει πλέον με τον κωδικό σύνδεσής σας:", +" If you don't remember your old password you can ask your administrator to recover your files." => "Εάν δεν θυμάστε τον παλιό σας κωδικό μπορείτε να ζητήσετε από τον διαχειριστή σας να επανακτήσει τα αρχεία σας.", "Old log-in password" => "Παλαιό συνθηματικό εισόδου", "Current log-in password" => "Τρέχον συνθηματικό πρόσβασης", "Update Private Key Password" => "Ενημέρωση Προσωπικού Κλειδού Πρόσβασης", "Enable password recovery:" => "Ενεργοποιήστε την ανάκτηση κωδικού πρόσβασης", -"File recovery settings updated" => "Οι ρυθμίσεις επαναφοράς αρχείων ανανεώθηκαν" +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Η ενεργοποίηση αυτής της επιλογής θα σας επιτρέψει να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία σε περίπτωση απώλειας του κωδικού σας", +"File recovery settings updated" => "Οι ρυθμίσεις επαναφοράς αρχείων ανανεώθηκαν", +"Could not update file recovery" => "Αποτυχία ενημέρωσης ανάκτησης αρχείων" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/el.php b/apps/files_sharing/l10n/el.php index 4584e261b0..79387a9147 100644 --- a/apps/files_sharing/l10n/el.php +++ b/apps/files_sharing/l10n/el.php @@ -1,5 +1,6 @@ "Αυτός ο κοινόχρηστος φάκελος προστατεύεται με κωδικό", "The password is wrong. Try again." => "Εσφαλμένο συνθηματικό. Προσπαθήστε ξανά.", "Password" => "Συνθηματικό", "Sorry, this link doesn’t seem to work anymore." => "Συγγνώμη, αυτός ο σύνδεσμος μοιάζει να μην ισχύει πια.", @@ -13,6 +14,7 @@ $TRANSLATIONS = array( "Download" => "Λήψη", "Upload" => "Μεταφόρτωση", "Cancel upload" => "Ακύρωση αποστολής", -"No preview available for" => "Δεν υπάρχει διαθέσιμη προεπισκόπηση για" +"No preview available for" => "Δεν υπάρχει διαθέσιμη προεπισκόπηση για", +"Direct link" => "Άμεσος σύνδεσμος" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/el.php b/apps/user_ldap/l10n/el.php index 2cd93a4f07..6a0fc107cf 100644 --- a/apps/user_ldap/l10n/el.php +++ b/apps/user_ldap/l10n/el.php @@ -1,5 +1,6 @@ "Αποτυχία εκκαθάρισης των αντιστοιχιών.", "Failed to delete the server configuration" => "Αποτυχία διαγραφής ρυθμίσεων διακομιστή", "The configuration is valid and the connection could be established!" => "Οι ρυθμίσεις είναι έγκυρες και η σύνδεση μπορεί να πραγματοποιηθεί!", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Οι ρυθμίσεις είναι έγκυρες, αλλά απέτυχε η σύνδεση. Παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή και τα διαπιστευτήρια.", @@ -7,6 +8,7 @@ $TRANSLATIONS = array( "Take over settings from recent server configuration?" => "Πάρτε πάνω από τις πρόσφατες ρυθμίσεις διαμόρφωσης του διακομιστή?", "Keep settings?" => "Διατήρηση ρυθμίσεων;", "Cannot add server configuration" => "Αδυναμία προσθήκης ρυθμίσεων διακομιστή", +"mappings cleared" => "αντιστοιχίες εκκαθαρίστηκαν", "Success" => "Επιτυχία", "Error" => "Σφάλμα", "Select groups" => "Επιλέξτε ομάδες", @@ -31,6 +33,7 @@ $TRANSLATIONS = array( "You can specify Base DN for users and groups in the Advanced tab" => "Μπορείτε να καθορίσετε το Base DN για χρήστες και ομάδες από την καρτέλα Προηγμένες ρυθμίσεις", "Back" => "Επιστροφή", "Continue" => "Συνέχεια", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "Προσοχή: Οι εφαρμογές user_ldap και user_webdavauth είναι ασύμβατες. Μπορεί να αντιμετωπίσετε απρόβλεπτη συμπεριφορά. Παρακαλώ ζητήστε από τον διαχειριστή συστήματος να απενεργοποιήσει μία από αυτές.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Προσοχή: Το άρθρωμα PHP LDAP δεν είναι εγκατεστημένο και το σύστημα υποστήριξης δεν θα δουλέψει. Παρακαλώ ζητήστε από τον διαχειριστή συστήματος να το εγκαταστήσει.", "Connection Settings" => "Ρυθμίσεις Σύνδεσης", "Configuration Active" => "Ενεργοποιηση ρυθμισεων", @@ -61,6 +64,8 @@ $TRANSLATIONS = array( "in bytes" => "σε bytes", "Email Field" => "Email τυπος", "User Home Folder Naming Rule" => "Χρήστης Προσωπικόςφάκελος Ονομασία Κανόνας ", -"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Αφήστε το κενό για το όνομα χρήστη (προεπιλογή). Διαφορετικά, συμπληρώστε μία ιδιότητα LDAP/AD." +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Αφήστε το κενό για το όνομα χρήστη (προεπιλογή). Διαφορετικά, συμπληρώστε μία ιδιότητα LDAP/AD.", +"Internal Username" => "Εσωτερικό Όνομα Χρήστη", +"Internal Username Attribute:" => "Ιδιότητα Εσωτερικού Ονόματος Χρήστη:" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/de.php b/core/l10n/de.php index 20d59fc1de..3239238642 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -132,6 +132,7 @@ $TRANSLATIONS = array( "Access forbidden" => "Zugriff verboten", "Cloud not found" => "Cloud nicht gefunden", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hallo,\n\nich wollte Dich nur wissen lassen, dass %s %s mit Dir teilt.\nSchaue es Dir an: %s\n\n", +"The share will expire on %s." => "Die Freigabe wird am %s ablaufen.", "Cheers!" => "Hallo!", "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", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index 7e7eaea065..af76319eb7 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -132,6 +132,7 @@ $TRANSLATIONS = array( "Access forbidden" => "Zugriff verboten", "Cloud not found" => "Cloud wurde nicht gefunden", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hallo,\n\n%s hat %s mit Ihnen geteilt.\nSchauen Sie es sich an: %s\n\n", +"The share will expire on %s." => "Die Freigabe wird am %s ablaufen.", "Cheers!" => "Noch einen schönen Tag!", "Security Warning" => "Sicherheitshinweis", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Ihre PHP Version ist durch die NULL Byte Attacke (CVE-2006-7243) angreifbar", diff --git a/core/l10n/el.php b/core/l10n/el.php index c379881cae..dc196486e6 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -1,9 +1,11 @@ "Ο %s διαμοιράστηκε μαζί σας το »%s«", +"Couldn't send mail to following users: %s " => "Αδυναμία αποστολής μηνύματος στους ακόλουθους χρήστες: %s", "Turned on maintenance mode" => "Η κατάσταση συντήρησης ενεργοποιήθηκε", "Turned off maintenance mode" => "Η κατάσταση συντήρησης απενεργοποιήθηκε", "Updated database" => "Ενημερωμένη βάση δεδομένων", +"No image or file provided" => "Δεν δόθηκε εικόνα ή αρχείο", "Unknown filetype" => "Άγνωστος τύπος αρχείου", "Invalid image" => "Μη έγκυρη εικόνα", "Sunday" => "Κυριακή", @@ -27,7 +29,7 @@ $TRANSLATIONS = array( "December" => "Δεκέμβριος", "Settings" => "Ρυθμίσεις", "seconds ago" => "δευτερόλεπτα πριν", -"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n minute ago_::_%n minutes ago_" => array("%n λεπτό πριν","%n λεπτά πριν"), "_%n hour ago_::_%n hours ago_" => array("",""), "today" => "σήμερα", "yesterday" => "χτες", @@ -42,8 +44,11 @@ $TRANSLATIONS = array( "No" => "Όχι", "Ok" => "Οκ", "_{count} file conflict_::_{count} file conflicts_" => array("",""), +"Which files do you want to keep?" => "Ποια αρχεία θέλετε να κρατήσετε;", +"If you select both versions, the copied file will have a number added to its name." => "Εάν επιλέξετε και τις δυο εκδοχές, ένας αριθμός θα προστεθεί στο αντιγραφόμενο αρχείο.", "Cancel" => "Άκυρο", "Continue" => "Συνέχεια", +"(all selected)" => "(όλα τα επιλεγμένα)", "Shared" => "Κοινόχρηστα", "Share" => "Διαμοιρασμός", "Error" => "Σφάλμα", @@ -107,6 +112,7 @@ $TRANSLATIONS = array( "Tag already exists" => "Υπάρχει ήδη η ετικέτα", "Access forbidden" => "Δεν επιτρέπεται η πρόσβαση", "Cloud not found" => "Δεν βρέθηκε νέφος", +"The share will expire on %s." => "Ο διαμοιρασμός θα λήξει σε %s.", "Security Warning" => "Προειδοποίηση Ασφαλείας", "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 %s securely." => "Παρακαλώ ενημερώστε την εγκατάσταση της PHP ώστε να χρησιμοποιήσετε το %s με ασφάλεια.", @@ -125,16 +131,21 @@ $TRANSLATIONS = array( "Database tablespace" => "Κενά Πινάκων Βάσης Δεδομένων", "Database host" => "Διακομιστής βάσης δεδομένων", "Finish setup" => "Ολοκλήρωση εγκατάστασης", +"Finishing …" => "Ολοκλήρωση...", "%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!" => "Εάν δεν αλλάξατε το συνθηματικό σας προσφάτως, ο λογαριασμός μπορεί να έχει διαρρεύσει!", "Please change your password to secure your account again." => "Παρακαλώ αλλάξτε το συνθηματικό σας για να ασφαλίσετε πάλι τον λογαριασμό σας.", +"Server side authentication failed!" => "Η διαδικασία επικύρωσης απέτυχε από την πλευρά του διακομιστή!", +"Please contact your administrator." => "Παρακαλώ επικοινωνήστε με τον διαχειριστή.", "Lost your password?" => "Ξεχάσατε το συνθηματικό σας;", "remember" => "απομνημόνευση", "Log in" => "Είσοδος", "Alternative Logins" => "Εναλλακτικές Συνδέσεις", "Updating ownCloud to version %s, this may take a while." => "Ενημερώνοντας το ownCloud στην έκδοση %s,μπορεί να πάρει λίγο χρόνο.", +"Please reload this page after a short time to continue using ownCloud." => "Παρακαλώ ανανεώστε αυτή τη σελίδα μετά από ένα σύντομο χρονικό διάστημα ώστε να συνεχίσετε να χρησιμοποιείτε το ownCloud.", +"Contact your system administrator if this message persists or appeared unexpectedly." => "Επικοινωνήστε με το διαχειριστή του συστήματος αν αυτό το μήνυμα συνεχίζει να εμφανίζεται ή εμφανίστηκε απρόσμενα.", "Thank you for your patience." => "Σας ευχαριστούμε για την υπομονή σας." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index e0a0ca964b..c12a1c6631 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -132,6 +132,7 @@ $TRANSLATIONS = array( "Access forbidden" => "Ligipääs on keelatud", "Cloud not found" => "Pilve ei leitud", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hei,\n\nlihtsalt annan sulle teada, et %s jagas sulle välja %s.\nVaata seda: %s\n\n", +"The share will expire on %s." => "Jagamine aegub %s.", "Cheers!" => "Terekest!", "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.", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 28240af837..94a4b47b9c 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -132,6 +132,7 @@ $TRANSLATIONS = array( "Access forbidden" => "Acceso denegado", "Cloud not found" => "Nube non atopada", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Ola,\n\nsó facerlle saber que %s compartiu %s con vostede.\nVéxao en: %s\n\n", +"The share will expire on %s." => "Esta compartición caduca o %s.", "Cheers!" => "Saúdos!", "Security Warning" => "Aviso de seguranza", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "A súa versión de PHP é vulnerábel a un ataque de byte nulo (CVE-2006-7243)", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index e2019960ae..f43e6083d0 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -160,7 +160,7 @@ $TRANSLATIONS = array( "Server side authentication failed!" => "サーバサイドの認証に失敗しました!", "Please contact your administrator." => "管理者に問い合わせてください。", "Lost your password?" => "パスワードを忘れましたか?", -"remember" => "パスワードを記憶する", +"remember" => "自動ログインする", "Log in" => "ログイン", "Alternative Logins" => "代替ログイン", "Hey there,

just letting you know that %s shared »%s« with you.
View it!

" => "こんにちは、

%sがあなたと »%s« を共有したことをお知らせします。
それを表示

", diff --git a/core/l10n/ru_RU.php b/core/l10n/ru_RU.php index 82c5d0d77f..81ce456e14 100644 --- a/core/l10n/ru_RU.php +++ b/core/l10n/ru_RU.php @@ -12,6 +12,7 @@ $TRANSLATIONS = array( "Share" => "Сделать общим", "Error" => "Ошибка", "Password" => "Пароль", +"can edit" => "возможно редактирование", "Warning" => "Предупреждение", "Delete" => "Удалить", "Username" => "Имя пользователя", diff --git a/l10n/ar/core.po b/l10n/ar/core.po index c96cf61031..619ff09625 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 345f351976..b29fcf396f 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 2a3c60335b..1aac94fee1 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 93715abeee..793744112d 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 4f235b1f84..fe53a37a9e 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02: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" diff --git a/l10n/da/core.po b/l10n/da/core.po index 73cae5b773..3caca30267 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/de/core.po b/l10n/de/core.po index b3c62c5b72..e48ae895da 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 08:20+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -590,7 +590,7 @@ msgstr "Hallo,\n\nich wollte Dich nur wissen lassen, dass %s %s mit Dir teilt.\n #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "Die Freigabe wird am %s ablaufen." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" diff --git a/l10n/de/files.po b/l10n/de/files.po index 58fb5ec599..b8b95429c5 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 08:30+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -207,7 +207,7 @@ msgstr "rückgängig machen" #: js/filelist.js:576 msgid "Error deleting file." -msgstr "" +msgstr "Fehler beim Löschen der Datei." #: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index a9669d09fe..04350ed33e 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 08:30+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -57,11 +57,11 @@ msgstr "Administration" msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." -#: private/avatar.php:60 +#: private/avatar.php:62 msgid "Unknown filetype" msgstr "Unbekannter Dateityp" -#: private/avatar.php:65 +#: private/avatar.php:67 msgid "Invalid image" msgstr "Ungültiges Bild" @@ -94,7 +94,7 @@ msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "Bitte lade die Dateien einzeln in kleineren Teilen herunter oder bitte Deinen Administrator." #: private/installer.php:63 msgid "No source specified when installing app" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 2c21b834cb..c109183063 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:06-0500\n" -"PO-Revision-Date: 2013-11-22 02:06+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-23 16:12+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -288,20 +288,20 @@ msgstr "Ländereinstellung funktioniert nicht" #: templates/admin.php:70 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "" +msgstr "Systemgebietsschema kann nicht auf eine UTF-8 unterstützende eingestellt werden." #: templates/admin.php:74 msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "Dies bedeutet, dass Probleme mit bestimmten Zeichen in den Dateinamen geben kann." #: templates/admin.php:78 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eine der folgenden Gebietsschemas unterstützt wird: %s." #: templates/admin.php:90 msgid "Internet connection not working" diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index e1cc83885e..0985576cd1 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 931f272e46..74539e72d1 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 08:20+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -590,7 +590,7 @@ msgstr "Hallo,\n\n%s hat %s mit Ihnen geteilt.\nSchauen Sie es sich an: %s\n\n" #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "Die Freigabe wird am %s ablaufen." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index ee615cfc71..a262fa35c3 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 08:30+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -210,7 +210,7 @@ msgstr "rückgängig machen" #: js/filelist.js:576 msgid "Error deleting file." -msgstr "" +msgstr "Fehler beim Löschen der Datei." #: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index e8db97e317..d80fe487df 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 08:30+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,11 +56,11 @@ msgstr "Administrator" msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." -#: private/avatar.php:60 +#: private/avatar.php:62 msgid "Unknown filetype" msgstr "Unbekannter Dateityp" -#: private/avatar.php:65 +#: private/avatar.php:67 msgid "Invalid image" msgstr "Ungültiges Bild" @@ -93,7 +93,7 @@ msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "Bitte laden Sie die Dateien einzeln in kleineren Teilen herunter oder bitten Sie Ihren Administrator." #: private/installer.php:63 msgid "No source specified when installing app" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index e936dd3c1c..4f1b75be12 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:06-0500\n" -"PO-Revision-Date: 2013-11-22 02:06+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-23 16:12+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -289,20 +289,20 @@ msgstr "Die Lokalisierung funktioniert nicht" #: templates/admin.php:70 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "" +msgstr "Systemgebietsschema kann nicht auf eine UTF-8 unterstützende eingestellt werden." #: templates/admin.php:74 msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "Dies bedeutet, dass Probleme mit bestimmten Zeichen in den Dateinamen geben kann." #: templates/admin.php:78 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eine der folgenden Gebietsschemas unterstützt wird: %s." #: templates/admin.php:90 msgid "Internet connection not working" diff --git a/l10n/el/core.po b/l10n/el/core.po index db58012f48..7d123dbdba 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -8,6 +8,7 @@ # KAT.RAT12 , 2013 # Teogramm , 2013 # Teogramm , 2013 +# vkehayas , 2013 # Wasilis , 2013 # Wasilis , 2013 # KAT.RAT12 , 2013 @@ -15,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-23 01:50+0000\n" +"Last-Translator: vkehayas \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" @@ -33,7 +34,7 @@ msgstr "Ο %s διαμοιράστηκε μαζί σας το »%s«" #: ajax/share.php:169 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "Αδυναμία αποστολής μηνύματος στους ακόλουθους χρήστες: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -62,7 +63,7 @@ msgstr "" #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "Δεν δόθηκε εικόνα ή αρχείο" #: avatar/controller.php:81 msgid "Unknown filetype" @@ -167,8 +168,8 @@ msgstr "δευτερόλεπτα πριν" #: js/js.js:859 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n λεπτό πριν" +msgstr[1] "%n λεπτά πριν" #: js/js.js:860 msgid "%n hour ago" @@ -248,13 +249,13 @@ msgstr "" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Ποια αρχεία θέλετε να κρατήσετε;" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Εάν επιλέξετε και τις δυο εκδοχές, ένας αριθμός θα προστεθεί στο αντιγραφόμενο αρχείο." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -266,7 +267,7 @@ msgstr "Συνέχεια" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(όλα τα επιλεγμένα)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" @@ -590,7 +591,7 @@ msgstr "" #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "Ο διαμοιρασμός θα λήξει σε %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" @@ -683,7 +684,7 @@ msgstr "Ολοκλήρωση εγκατάστασης" #: templates/installation.php:184 msgid "Finishing …" -msgstr "" +msgstr "Ολοκλήρωση..." #: templates/layout.user.php:43 #, php-format @@ -710,11 +711,11 @@ msgstr "Παρακαλώ αλλάξτε το συνθηματικό σας γι #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "Η διαδικασία επικύρωσης απέτυχε από την πλευρά του διακομιστή!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Παρακαλώ επικοινωνήστε με τον διαχειριστή." #: templates/login.php:38 msgid "Lost your password?" @@ -751,13 +752,13 @@ msgstr "" #: templates/update.user.php:4 msgid "Please reload this page after a short time to continue using ownCloud." -msgstr "" +msgstr "Παρακαλώ ανανεώστε αυτή τη σελίδα μετά από ένα σύντομο χρονικό διάστημα ώστε να συνεχίσετε να χρησιμοποιείτε το ownCloud." #: templates/update.user.php:5 msgid "" "Contact your system administrator if this message persists or appeared " "unexpectedly." -msgstr "" +msgstr "Επικοινωνήστε με το διαχειριστή του συστήματος αν αυτό το μήνυμα συνεχίζει να εμφανίζεται ή εμφανίστηκε απρόσμενα." #: templates/update.user.php:6 msgid "Thank you for your patience." diff --git a/l10n/el/files_encryption.po b/l10n/el/files_encryption.po index 25b9a68962..7216d1adc7 100644 --- a/l10n/el/files_encryption.po +++ b/l10n/el/files_encryption.po @@ -7,13 +7,14 @@ # Marios Bekatoros <>, 2013 # Teogramm , 2013 # Teogramm , 2013 +# vkehayas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-19 09:50+0000\n" -"Last-Translator: Marios Bekatoros <>\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 21:10+0000\n" +"Last-Translator: vkehayas \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" @@ -23,21 +24,21 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "" +msgstr "Επιτυχής ενεργοποίηση κλειδιού ανάκτησης" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "Αποτυχία ενεργοποίησης κλειδιού ανάκτησης. Παρακαλώ ελέγξτε τον κωδικό του κλειδιού ανάκτησής σας!" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "" +msgstr "Επιτυχής απενεργοποίηση κλειδιού ανάκτησης" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "Αποτυχία απενεργοποίησης κλειδιού ανάκτησης. Παρακαλώ ελέγξτε τον κωδικό του κλειδιού ανάκτησής σας!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." @@ -55,7 +56,7 @@ msgstr "Το Προσωπικό κλειδί πρόσβασης ενημερώθ msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "Αποτυχία ενημέρωσης του κωδικού για το προσωπικό κλειδί. Ενδεχομένως ο παλιός κωδικός δεν ήταν σωστός." #: files/error.php:12 msgid "" @@ -158,7 +159,7 @@ msgstr "Αλλαγή Κωδικού Πρόσβασης" #: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Ο κωδικός του προσωπικού κλειδιού δεν ταιριάζει πλέον με τον κωδικό σύνδεσής σας:" #: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." @@ -168,7 +169,7 @@ msgstr "" msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Εάν δεν θυμάστε τον παλιό σας κωδικό μπορείτε να ζητήσετε από τον διαχειριστή σας να επανακτήσει τα αρχεία σας." #: templates/settings-personal.php:22 msgid "Old log-in password" @@ -190,7 +191,7 @@ msgstr "Ενεργοποιήστε την ανάκτηση κωδικού πρό msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Η ενεργοποίηση αυτής της επιλογής θα σας επιτρέψει να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία σε περίπτωση απώλειας του κωδικού σας" #: templates/settings-personal.php:60 msgid "File recovery settings updated" @@ -198,4 +199,4 @@ msgstr "Οι ρυθμίσεις επαναφοράς αρχείων ανανεώ #: templates/settings-personal.php:61 msgid "Could not update file recovery" -msgstr "" +msgstr "Αποτυχία ενημέρωσης ανάκτησης αρχείων" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 1a4fb155cf..276e7044c6 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -4,13 +4,14 @@ # # Translators: # Efstathios Iosifidis , 2013 +# vkehayas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-23 01:30+0000\n" +"Last-Translator: vkehayas \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" @@ -20,7 +21,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "This share is password-protected" -msgstr "" +msgstr "Αυτός ο κοινόχρηστος φάκελος προστατεύεται με κωδικό" #: templates/authenticate.php:7 msgid "The password is wrong. Try again." @@ -82,4 +83,4 @@ msgstr "Δεν υπάρχει διαθέσιμη προεπισκόπηση γι #: templates/public.php:99 msgid "Direct link" -msgstr "" +msgstr "Άμεσος σύνδεσμος" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 26ed72a043..bb1e7107c8 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-23 01:50+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" @@ -54,11 +54,11 @@ msgstr "Διαχειριστής" msgid "Failed to upgrade \"%s\"." msgstr "Αποτυχία αναβάθμισης του \"%s\"." -#: private/avatar.php:60 +#: private/avatar.php:62 msgid "Unknown filetype" msgstr "Άγνωστος τύπος αρχείου" -#: private/avatar.php:65 +#: private/avatar.php:67 msgid "Invalid image" msgstr "Μη έγκυρη εικόνα" @@ -293,7 +293,7 @@ msgstr "δευτερόλεπτα πριν" msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n λεπτά πριν" #: private/template/functions.php:132 msgid "%n hour ago" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 84a79b9a94..f363111a6f 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -8,14 +8,15 @@ # KAT.RAT12 , 2013 # Teogramm , 2013 # Teogramm , 2013 +# vkehayas , 2013 # KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:06-0500\n" -"PO-Revision-Date: 2013-11-22 02:06+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-23 18:10+0000\n" +"Last-Translator: vkehayas \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" @@ -34,11 +35,11 @@ msgstr "Σφάλμα πιστοποίησης" #: ajax/changedisplayname.php:31 msgid "Your full name has been changed." -msgstr "" +msgstr "Το πλήρες όνομά σας άλλαξε." #: ajax/changedisplayname.php:34 msgid "Unable to change full name" -msgstr "" +msgstr "Δεν ήταν δυνατή η αλλαγή του πλήρους ονόματός σας" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -242,7 +243,7 @@ msgstr "" #: templates/admin.php:12 msgid "Fatal issues only" -msgstr "" +msgstr "Καίρια ζητήματα μόνο" #: templates/admin.php:22 msgid "Security Warning" @@ -255,7 +256,7 @@ msgid "" "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 "Ο κατάλογος δεδομένων και τα αρχεία σας πιθανόν να είναι διαθέσιμα στο διαδίκτυο. Το αρχείο .htaccess δεν δουλεύει. Σας προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας με τέτοιο τρόπο ώστε ο κατάλογος δεδομένων να μην είναι πλέον προσβάσιμος ή να μετακινήσετε τον κατάλογο δεδομένων έξω από τη ρίζα του καταλόγου του διακομιστή." #: templates/admin.php:36 msgid "Setup Warning" @@ -294,14 +295,14 @@ msgstr "" msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "Αυτό σημαίνει ότι μπορεί να υπάρχουν προβλήματα με κάποιους χαρακτήρες στα ονόματα αρχείων." #: templates/admin.php:78 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "Συνιστούμε σοβαρά να εγκαταστήσετε τα απαιτούμενα πακέτα στο σύστημά σας ώστε να υποστηρίζεται μια από τις ακόλουθες ρυθμίσεις τοποθεσίας: %s." #: templates/admin.php:90 msgid "Internet connection not working" @@ -356,12 +357,12 @@ msgstr "Να επιτρέπεται στους χρήστες να διαμοι #: templates/admin.php:158 msgid "Allow public uploads" -msgstr "" +msgstr "Επιτρέψτε κοινόχρηστο ανέβασμα" #: templates/admin.php:159 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "Επιτρέψτε στους χρήστες να καθιστούν άλλους χρήστες ικανούς να ανεβάζουν στους κοινόχρηστους φακέλους τους" #: templates/admin.php:167 msgid "Allow resharing" @@ -385,7 +386,7 @@ msgstr "" #: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "Επιτρέψτε στο χρήστη να στέλνει ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία" #: templates/admin.php:193 msgid "Security" @@ -520,7 +521,7 @@ msgstr "Αλλαγή συνθηματικού" #: templates/personal.php:58 templates/users.php:88 msgid "Full Name" -msgstr "" +msgstr "Πλήρες όνομα" #: templates/personal.php:73 msgid "Email" @@ -595,7 +596,7 @@ msgstr "Συνθηματικό εισόδου" #: templates/personal.php:159 msgid "Decrypt all Files" -msgstr "" +msgstr "Αποκρυπτογράφηση όλων των Αρχείων" #: templates/users.php:21 msgid "Login Name" @@ -621,7 +622,7 @@ msgstr "Προκαθορισμένη Αποθήκευση " #: templates/users.php:44 templates/users.php:139 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" -msgstr "" +msgstr "Παρακαλώ εισάγετε επιτρεπόμενα μερίδια αποθηκευτικού χώρου (π.χ. \"512 MB\" ή \"12 GB\")" #: templates/users.php:48 templates/users.php:148 msgid "Unlimited" @@ -641,7 +642,7 @@ msgstr "Αποθήκευση" #: templates/users.php:108 msgid "change full name" -msgstr "" +msgstr "αλλαγή πλήρους ονόματος" #: templates/users.php:112 msgid "set new password" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 39c19a343c..32e5d98098 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# vkehayas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-23 21:20+0000\n" +"Last-Translator: vkehayas \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" @@ -19,7 +20,7 @@ msgstr "" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." -msgstr "" +msgstr "Αποτυχία εκκαθάρισης των αντιστοιχιών." #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" @@ -76,7 +77,7 @@ msgstr "Αδυναμία προσθήκης ρυθμίσεων διακομισ #: js/settings.js:127 msgid "mappings cleared" -msgstr "" +msgstr "αντιστοιχίες εκκαθαρίστηκαν" #: js/settings.js:128 msgid "Success" @@ -283,7 +284,7 @@ msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "Προσοχή: Οι εφαρμογές user_ldap και user_webdavauth είναι ασύμβατες. Μπορεί να αντιμετωπίσετε απρόβλεπτη συμπεριφορά. Παρακαλώ ζητήστε από τον διαχειριστή συστήματος να απενεργοποιήσει μία από αυτές." #: templates/settings.php:14 msgid "" @@ -443,7 +444,7 @@ msgstr "Αφήστε το κενό για το όνομα χρήστη (προε #: templates/settings.php:54 msgid "Internal Username" -msgstr "" +msgstr "Εσωτερικό Όνομα Χρήστη" #: templates/settings.php:55 msgid "" @@ -463,7 +464,7 @@ msgstr "" #: templates/settings.php:56 msgid "Internal Username Attribute:" -msgstr "" +msgstr "Ιδιότητα Εσωτερικού Ονόματος Χρήστη:" #: templates/settings.php:57 msgid "Override UUID detection" diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index 471da8db92..3c2dbb995f 100644 --- a/l10n/en_GB/core.po +++ b/l10n/en_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:05-0500\n" -"PO-Revision-Date: 2013-11-21 15:22+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+0000\n" "Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 3706add5af..315f26d0da 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/es/core.po b/l10n/es/core.po index 72e711b311..928b5ab97e 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02: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" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index c443fe8521..872664ebed 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index a10f337e6c..505016888a 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 09:40+0000\n" +"Last-Translator: pisike.sipelgas \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" @@ -584,7 +584,7 @@ msgstr "Hei,\n\nlihtsalt annan sulle teada, et %s jagas sulle välja %s.\nVaata #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "Jagamine aegub %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 4e5167ba6f..bef1ee0270 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 09:40+0000\n" +"Last-Translator: pisike.sipelgas \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" @@ -203,7 +203,7 @@ msgstr "tagasi" #: js/filelist.js:576 msgid "Error deleting file." -msgstr "" +msgstr "Viga faili kustutamisel." #: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index c985acfbb9..6f8d989e51 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 09:40+0000\n" +"Last-Translator: pisike.sipelgas \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" @@ -55,11 +55,11 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "Ebaõnnestunud uuendus \"%s\"." -#: private/avatar.php:60 +#: private/avatar.php:62 msgid "Unknown filetype" msgstr "Tundmatu failitüüp" -#: private/avatar.php:65 +#: private/avatar.php:67 msgid "Invalid image" msgstr "Vigane pilt" @@ -92,7 +92,7 @@ msgstr "Valitud failid on ZIP-faili loomiseks liiga suured." msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "Palun laadi failid alla eraldi väiksemate osadena või palu abi oma süsteemihaldurilt." #: private/installer.php:63 msgid "No source specified when installing app" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 21cdc7f57e..ced89c3256 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:06-0500\n" -"PO-Revision-Date: 2013-11-22 02:06+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 10:00+0000\n" +"Last-Translator: pisike.sipelgas \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" @@ -284,20 +284,20 @@ msgstr "Lokalisatsioon ei toimi" #: templates/admin.php:70 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "" +msgstr "Süsteemi lokaliseeringuks ei saa panna sellist, mis toetab UTF-8-t." #: templates/admin.php:74 msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "See tähendab, et võib esineda probleeme failide nimedes mõnede sümbolitega." #: templates/admin.php:78 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "Soovitame tungivalt paigaldada vajalikud paketid oma süsteemi tagamaks tuge järgmistele lokaliseeringutele: %s." #: templates/admin.php:90 msgid "Internet connection not working" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index a86a3cc210..114f480b98 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 3d04f8d844..076fa886b2 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index ee6991574f..a870c9bfff 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:05-0500\n" -"PO-Revision-Date: 2013-11-21 15:22+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 29e783b4c1..e21867c7fb 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index da78390698..1882f5d234 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 07:20+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" @@ -583,7 +583,7 @@ msgstr "Ola,\n\nsó facerlle saber que %s compartiu %s con vostede.\nVéxao en: #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "Esta compartición caduca o %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index c01a97bb2a..c9fa6307b0 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 07:20+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" @@ -21,7 +21,7 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Non se moveu %s - Xa existe un ficheiro con ese nome." +msgstr "Non foi posíbel mover %s; Xa existe un ficheiro con ese nome." #: ajax/move.php:27 ajax/move.php:30 #, php-format @@ -202,7 +202,7 @@ msgstr "desfacer" #: js/filelist.js:576 msgid "Error deleting file." -msgstr "" +msgstr "Produciuse un erro ao eliminar o ficheiro." #: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index cd03671442..7077ae88a4 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 07:30+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" @@ -54,11 +54,11 @@ msgstr "Administración" msgid "Failed to upgrade \"%s\"." msgstr "Non foi posíbel anovar «%s»." -#: private/avatar.php:60 +#: private/avatar.php:62 msgid "Unknown filetype" msgstr "Tipo de ficheiro descoñecido" -#: private/avatar.php:65 +#: private/avatar.php:67 msgid "Invalid image" msgstr "Imaxe incorrecta" @@ -91,7 +91,7 @@ msgstr "Os ficheiros seleccionados son demasiado grandes como para xerar un fich msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "Descargue os ficheiros en fragmentos máis pequenos e por separado, ou pídallos amabelmente ao seu administrador." #: private/installer.php:63 msgid "No source specified when installing app" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 95c0747911..493802be7a 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:06-0500\n" -"PO-Revision-Date: 2013-11-22 02:06+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 08:20+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" @@ -283,20 +283,20 @@ msgstr "A configuración rexional non funciona" #: templates/admin.php:70 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "" +msgstr "Non é posíbel estabelecer a configuración rexional do sistema a unha que admita UTF-8." #: templates/admin.php:74 msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "Isto significa que pode haber problemas con certos caracteres en nomes de ficheiro." #: templates/admin.php:78 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "Recomendamoslle que instale no sistema os paquetes necesarios para admitir unha das seguintes configuracións rexionais: %s." #: templates/admin.php:90 msgid "Internet connection not working" diff --git a/l10n/he/core.po b/l10n/he/core.po index 66f9f4c164..80c216853e 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 1245118c21..5360686001 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 53daead24a..0d4bba6502 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/id/core.po b/l10n/id/core.po index 51fb4cacad..e92cb6a87a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/is/core.po b/l10n/is/core.po index d7ad119ce0..e6c61ff741 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/it/core.po b/l10n/it/core.po index ca98895005..9f747cdacd 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/it/files.po b/l10n/it/files.po index ce93ca5a54..4165fe8afb 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 21:00+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" @@ -203,7 +203,7 @@ msgstr "annulla" #: js/filelist.js:576 msgid "Error deleting file." -msgstr "" +msgstr "Errore durante l'eliminazione del file." #: js/filelist.js:594 js/filelist.js:668 js/files.js:631 msgid "%n folder" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index d60ba401fe..54eecda2d0 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 21:10+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" @@ -56,11 +56,11 @@ msgstr "Admin" msgid "Failed to upgrade \"%s\"." msgstr "Aggiornamento non riuscito \"%s\"." -#: private/avatar.php:60 +#: private/avatar.php:62 msgid "Unknown filetype" msgstr "Tipo di file sconosciuto" -#: private/avatar.php:65 +#: private/avatar.php:67 msgid "Invalid image" msgstr "Immagine non valida" @@ -93,7 +93,7 @@ msgstr "I file selezionati sono troppo grandi per generare un file zip." msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "Scarica i file separatamente in blocchi più piccoli o chiedi al tuo amministratore." #: private/installer.php:63 msgid "No source specified when installing app" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 550f444082..09ec3e14e0 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:06-0500\n" -"PO-Revision-Date: 2013-11-22 02:06+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 21:20+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" @@ -286,20 +286,20 @@ msgstr "Locale non funzionante" #: templates/admin.php:70 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "" +msgstr "La localizzazione di sistema non può essere impostata a una che supporta UTF-8." #: templates/admin.php:74 msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "Ciò significa che potrebbero esserci problemi con alcuni caratteri nei nomi dei file." #: templates/admin.php:78 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "Consigliamo vivamente di installare i pacchetti richiesti sul tuo sistema per supportare una delle\nlocalizzazioni seguenti: %s." #: templates/admin.php:90 msgid "Internet connection not working" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index a7161783af..e360c76e22 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 08:10+0000\n" +"Last-Translator: tt yn \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" @@ -713,7 +713,7 @@ msgstr "パスワードを忘れましたか?" #: templates/login.php:43 msgid "remember" -msgstr "パスワードを記憶する" +msgstr "自動ログインする" #: templates/login.php:46 msgid "Log in" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index c9d589e012..466b2ef56b 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 3f68d94a5c..ce652469ed 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 5264e3f4e8..a4bbca90b1 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 88209fcb53..9a62a319ac 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 519087ae1f..a2aac5ed29 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 3e39d60042..f241881ff3 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index e7d3d8ac01..1da8048ff2 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 58e1b188e7..e630571b05 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index cb4fc4f69f..5bf032f04e 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index b0c247102e..28a76cd2e8 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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/oc/core.po b/l10n/oc/core.po index bda329003e..cc2e17ed49 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 9102cf47b7..d755c05d2c 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index a66a2f40a5..b83e9b09dd 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:05-0500\n" -"PO-Revision-Date: 2013-11-21 15:40+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index e64a46368a..e3b75bb5f7 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:06-0500\n" -"PO-Revision-Date: 2013-11-22 02:06+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 10:10+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" @@ -284,20 +284,20 @@ msgstr "Localização não funcionando" #: templates/admin.php:70 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "" +msgstr "Localidade do sistema não pode ser definido como um que suporta UTF-8." #: templates/admin.php:74 msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "Isso significa que pode haver problemas com certos caracteres nos nomes de arquivo." #: templates/admin.php:78 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "Nós sugerimos para instalar os pacotes necessários no seu sistema para suportar uma das seguintes localidades: %s." #: templates/admin.php:90 msgid "Internet connection not working" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index b13b82c643..5039617ff0 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index fde1798218..78bc16b27c 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index ceed7f31f8..2e4ed04c3c 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index a1dbc6a48b..1a30c7785f 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -372,7 +372,7 @@ msgstr "" #: js/share.js:408 msgid "can edit" -msgstr "" +msgstr "возможно редактирование" #: js/share.js:410 msgid "access control" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 65070960c2..0ea6dfc4ec 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index e809fa7232..90f5ace235 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index fd8c916e8f..233df3761d 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:05-0500\n" -"PO-Revision-Date: 2013-11-21 19:20+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02: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" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 828ff67b0d..657cdbc88c 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:06-0500\n" -"PO-Revision-Date: 2013-11-22 02:06+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 21:50+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" @@ -381,7 +381,7 @@ msgstr "Dovoli obvestila preko elektronske pošte" #: templates/admin.php:186 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "Dovoli uporabniku poslati obvestila preko elektronske pošte za datoteke v souporabi" #: templates/admin.php:193 msgid "Security" @@ -394,7 +394,7 @@ msgstr "Zahtevaj uporabo HTTPS" #: templates/admin.php:208 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "Vsili povezavo odjemalca z %s preko šifrirane povezave." #: templates/admin.php:214 #, php-format diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 392edeac57..91da36714d 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 3377061d55..b54fbec4fa 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 6963673f70..4a86f98a4c 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 3245f5e1a2..01d5676e0c 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 9d87e75723..3f7ed3c709 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 1c9da0c08a..8cc4111211 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:05-0500\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\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 81e25c4572..fff2008e1d 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:05-0500\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\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 2e882cf884..f7ab0743ea 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:05-0500\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\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 8bbf8211fe..48cb619276 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:05-0500\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\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 e7c7cbcdc8..08231a099d 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:05-0500\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\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 9628add216..9fb41e83b3 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:05-0500\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\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 0bd6ca359e..bfd98924c3 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:05-0500\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\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 6ebcca8fb7..8f0c9d6595 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -54,11 +54,11 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: private/avatar.php:60 +#: private/avatar.php:62 msgid "Unknown filetype" msgstr "" -#: private/avatar.php:65 +#: private/avatar.php:67 msgid "Invalid image" msgstr "" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 9892598571..67d668d6bd 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -54,11 +54,11 @@ msgstr "" msgid "Failed to upgrade \"%s\"." msgstr "" -#: avatar.php:60 +#: avatar.php:62 msgid "Unknown filetype" msgstr "" -#: avatar.php:65 +#: avatar.php:67 msgid "Invalid image" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index a62ac90f48..16dd042144 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:06-0500\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\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 cde00a65e4..f7a0d0294f 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:05-0500\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\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 5bbfdc2b14..dd85e9de27 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:05-0500\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\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 07dc3d732b..d4c5c927d8 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 40d87b1c4e..04018d4eda 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:05-0500\n" -"PO-Revision-Date: 2013-11-21 15:22+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+0000\n" "Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index c50f6436c1..b00968a6a6 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 21:06-0500\n" -"PO-Revision-Date: 2013-11-22 02:06+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 18:00+0000\n" +"Last-Translator: volkangezer \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" @@ -286,20 +286,20 @@ msgstr "Locale çalışmıyor." #: templates/admin.php:70 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "" +msgstr "Sistem yereli, UTF-8 destekleyenlerden biri olarak ayarlanamadı" #: templates/admin.php:74 msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "Bu, dosya adlarında belirli karakterlerde problem olabileceği anlamına gelir." #: templates/admin.php:78 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "Şu dillerden birini desteklemesi için sisteminize gerekli paketleri kurmanızı şiddetle tavsiye ederiz: %s." #: templates/admin.php:90 msgid "Internet connection not working" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 4a814123b8..b78c836b6e 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index f924398729..f659ff25f1 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: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 2c9e33d17b..86c311e74d 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index b157d75548..5b59640cf7 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02:20+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" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index e61c6cb120..6fd41d8e78 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-21 15:01+0000\n" +"POT-Creation-Date: 2013-11-24 00:13-0500\n" +"PO-Revision-Date: 2013-11-22 02: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/lib/l10n/de.php b/lib/l10n/de.php index 7ab0345209..5b09d350a7 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Die Dateien müssen einzeln heruntergeladen werden.", "Back to Files" => "Zurück zu \"Dateien\"", "Selected files too large to generate zip file." => "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Bitte lade die Dateien einzeln in kleineren Teilen herunter oder bitte Deinen Administrator.", "No source specified when installing app" => "Für die Installation der Applikation wurde keine Quelle angegeben", "No href specified when installing app from http" => "Der Link (href) wurde nicht angegeben um die Applikation per http zu installieren", "No path specified when installing app from local file" => "Bei der Installation der Applikation aus einer lokalen Datei wurde kein Pfad angegeben", diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index b14bafbf69..e76718b411 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Die Dateien müssen einzeln heruntergeladen werden.", "Back to Files" => "Zurück zu \"Dateien\"", "Selected files too large to generate zip file." => "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Bitte laden Sie die Dateien einzeln in kleineren Teilen herunter oder bitten Sie Ihren Administrator.", "No source specified when installing app" => "Für die Installation der Applikation wurde keine Quelle angegeben", "No href specified when installing app from http" => "Der Link (href) wurde nicht angegeben um die Applikation per http zu installieren", "No path specified when installing app from local file" => "Bei der Installation der Applikation aus einer lokalen Datei wurde kein Pfad angegeben", diff --git a/lib/l10n/el.php b/lib/l10n/el.php index f620e1b354..d536b699a9 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -42,7 +42,7 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Ελέγξτε ξανά τις οδηγίες εγκατάστασης.", "Could not find category \"%s\"" => "Αδυναμία εύρεσης κατηγορίας \"%s\"", "seconds ago" => "δευτερόλεπτα πριν", -"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n minute ago_::_%n minutes ago_" => array("","%n λεπτά πριν"), "_%n hour ago_::_%n hours ago_" => array("",""), "today" => "σήμερα", "yesterday" => "χτες", diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index 9cdeb39021..7340ee72c2 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Failid tuleb alla laadida ükshaaval.", "Back to Files" => "Tagasi failide juurde", "Selected files too large to generate zip file." => "Valitud failid on ZIP-faili loomiseks liiga suured.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Palun laadi failid alla eraldi väiksemate osadena või palu abi oma süsteemihaldurilt.", "No source specified when installing app" => "Ühegi lähteallikat pole rakendi paigalduseks määratletud", "No href specified when installing app from http" => "Ühtegi aadressi pole määratletud rakendi paigalduseks veebist", "No path specified when installing app from local file" => "Ühtegi teed pole määratletud paigaldamaks rakendit kohalikust failist", diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php index d6366022e6..cf13408b2c 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Os ficheiros necesitan seren descargados dun en un.", "Back to Files" => "Volver aos ficheiros", "Selected files too large to generate zip file." => "Os ficheiros seleccionados son demasiado grandes como para xerar un ficheiro zip.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Descargue os ficheiros en fragmentos máis pequenos e por separado, ou pídallos amabelmente ao seu administrador.", "No source specified when installing app" => "Non foi especificada ningunha orixe ao instalar aplicativos", "No href specified when installing app from http" => "Non foi especificada ningunha href ao instalar aplicativos", "No path specified when installing app from local file" => "Non foi especificada ningunha ruta ao instalar aplicativos desde un ficheiro local", diff --git a/lib/l10n/it.php b/lib/l10n/it.php index 2a1be30c7c..b1259a0a87 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "I file devono essere scaricati uno alla volta.", "Back to Files" => "Torna ai file", "Selected files too large to generate zip file." => "I file selezionati sono troppo grandi per generare un file zip.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Scarica i file separatamente in blocchi più piccoli o chiedi al tuo amministratore.", "No source specified when installing app" => "Nessuna fonte specificata durante l'installazione dell'applicazione", "No href specified when installing app from http" => "Nessun href specificato durante l'installazione dell'applicazione da http", "No path specified when installing app from local file" => "Nessun percorso specificato durante l'installazione dell'applicazione da file locale", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index df4f1fe798..e4e1ff3083 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -61,6 +61,9 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Modul 'fileinfo' fehlt ", "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 dieses Modul zu aktivieren um die besten Resultate bei der Erkennung der Dateitypen zu erreichen.", "Locale not working" => "Ländereinstellung funktioniert nicht", +"System locale can not be set to a one which supports UTF-8." => "Systemgebietsschema kann nicht auf eine UTF-8 unterstützende eingestellt werden.", +"This means that there might be problems with certain characters in file names." => "Dies bedeutet, dass Probleme mit bestimmten Zeichen in den Dateinamen geben kann.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eine der folgenden Gebietsschemas unterstützt wird: %s.", "Internet connection not working" => "Keine Netzwerkverbindung", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. 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 Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen.", "Cron" => "Cron", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index d979d18e2c..a227a93388 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -61,6 +61,9 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Das Modul 'fileinfo' fehlt", "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", +"System locale can not be set to a one which supports UTF-8." => "Systemgebietsschema kann nicht auf eine UTF-8 unterstützende eingestellt werden.", +"This means that there might be problems with certain characters in file names." => "Dies bedeutet, dass Probleme mit bestimmten Zeichen in den Dateinamen geben kann.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eine der folgenden Gebietsschemas unterstützt wird: %s.", "Internet connection not working" => "Keine Internetverbindung", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. 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 Internetverbindung für diesen Server zu aktivieren, wenn Sie alle Funktionen nutzen wollen.", "Cron" => "Cron", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index bf09ef1dd3..54317ca66c 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -2,6 +2,8 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Σφάλμα στην φόρτωση της λίστας από το App Store", "Authentication error" => "Σφάλμα πιστοποίησης", +"Your full name has been changed." => "Το πλήρες όνομά σας άλλαξε.", +"Unable to change full name" => "Δεν ήταν δυνατή η αλλαγή του πλήρους ονόματός σας", "Group already exists" => "Η ομάδα υπάρχει ήδη", "Unable to add group" => "Αδυναμία προσθήκης ομάδας", "Email saved" => "Το email αποθηκεύτηκε ", @@ -40,13 +42,17 @@ $TRANSLATIONS = array( "Error creating user" => "Σφάλμα δημιουργίας χρήστη", "A valid password must be provided" => "Πρέπει να δοθεί έγκυρο συνθηματικό", "__language_name__" => "__όνομα_γλώσσας__", +"Fatal issues only" => "Καίρια ζητήματα μόνο", "Security Warning" => "Προειδοποίηση Ασφαλείας", +"Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ο κατάλογος δεδομένων και τα αρχεία σας πιθανόν να είναι διαθέσιμα στο διαδίκτυο. Το αρχείο .htaccess δεν δουλεύει. Σας προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας με τέτοιο τρόπο ώστε ο κατάλογος δεδομένων να μην είναι πλέον προσβάσιμος ή να μετακινήσετε τον κατάλογο δεδομένων έξω από τη ρίζα του καταλόγου του διακομιστή.", "Setup Warning" => "Ρύθμιση Προειδοποίησης", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη.", "Please double check the installation guides." => "Ελέγξτε ξανά τις οδηγίες εγκατάστασης.", "Module 'fileinfo' missing" => "Η ενοτητα 'fileinfo' λειπει", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Η PHP ενοτητα 'fileinfo' λειπει. Σας συνιστούμε να ενεργοποιήσετε αυτή την ενότητα για να έχετε καλύτερα αποτελέσματα με τον εντοπισμό τύπου MIME. ", "Locale not working" => "Η μετάφραση δεν δουλεύει", +"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 one of the following locales: %s." => "Συνιστούμε σοβαρά να εγκαταστήσετε τα απαιτούμενα πακέτα στο σύστημά σας ώστε να υποστηρίζεται μια από τις ακόλουθες ρυθμίσεις τοποθεσίας: %s.", "Internet connection not working" => "Η σύνδεση στο διαδίκτυο δεν δουλεύει", "Cron" => "Cron", "Execute one task with each page loaded" => "Εκτέλεση μιας διεργασίας με κάθε σελίδα που φορτώνεται", @@ -55,10 +61,13 @@ $TRANSLATIONS = array( "Allow apps to use the Share API" => "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού", "Allow links" => "Να επιτρέπονται σύνδεσμοι", "Allow users to share items to the public with links" => "Να επιτρέπεται στους χρήστες να διαμοιράζουν δημόσια με συνδέσμους", +"Allow public uploads" => "Επιτρέψτε κοινόχρηστο ανέβασμα", +"Allow users to enable others to upload into their publicly shared folders" => "Επιτρέψτε στους χρήστες να καθιστούν άλλους χρήστες ικανούς να ανεβάζουν στους κοινόχρηστους φακέλους τους", "Allow resharing" => "Να επιτρέπεται ο επαναδιαμοιρασμός", "Allow users to share items shared with them again" => "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί", "Allow users to share with anyone" => "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε", "Allow users to only share with users in their groups" => "Να επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας", +"Allow user to send mail notification for shared files" => "Επιτρέψτε στο χρήστη να στέλνει ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία", "Security" => "Ασφάλεια", "Enforce HTTPS" => "Επιβολή χρήσης HTTPS", "Log" => "Καταγραφές", @@ -87,6 +96,7 @@ $TRANSLATIONS = array( "Current password" => "Τρέχων συνθηματικό", "New password" => "Νέο συνθηματικό", "Change password" => "Αλλαγή συνθηματικού", +"Full Name" => "Πλήρες όνομα", "Email" => "Ηλ. ταχυδρομείο", "Your email address" => "Η διεύθυνση ηλεκτρονικού ταχυδρομείου σας", "Fill in an email address to enable password recovery" => "Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί η ανάκτηση συνθηματικού", @@ -100,15 +110,18 @@ $TRANSLATIONS = array( "WebDAV" => "WebDAV", "Encryption" => "Κρυπτογράφηση", "Log-in password" => "Συνθηματικό εισόδου", +"Decrypt all Files" => "Αποκρυπτογράφηση όλων των Αρχείων", "Login Name" => "Όνομα Σύνδεσης", "Create" => "Δημιουργία", "Admin Recovery Password" => "Κωδικός Επαναφοράς Διαχειριστή ", "Enter the recovery password in order to recover the users files during password change" => "Εισάγετε το συνθηματικό ανάκτησης ώστε να ανακτήσετε τα αρχεία χρηστών κατά την αλλαγή συνθηματικού", "Default Storage" => "Προκαθορισμένη Αποθήκευση ", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Παρακαλώ εισάγετε επιτρεπόμενα μερίδια αποθηκευτικού χώρου (π.χ. \"512 MB\" ή \"12 GB\")", "Unlimited" => "Απεριόριστο", "Other" => "Άλλο", "Username" => "Όνομα χρήστη", "Storage" => "Αποθήκευση", +"change full name" => "αλλαγή πλήρους ονόματος", "set new password" => "επιλογή νέου κωδικού", "Default" => "Προκαθορισμένο" ); diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 155f67c17b..ae406f6663 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -61,6 +61,9 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Moodul 'fileinfo' puudub", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks parimaid tulemusi failitüüpide tuvastamisel.", "Locale not working" => "Lokalisatsioon ei toimi", +"System locale can not be set to a one which supports UTF-8." => "Süsteemi lokaliseeringuks ei saa panna sellist, mis toetab UTF-8-t.", +"This means that there might be problems with certain characters in file names." => "See tähendab, et võib esineda probleeme failide nimedes mõnede sümbolitega.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Soovitame tungivalt paigaldada vajalikud paketid oma süsteemi tagamaks tuge järgmistele lokaliseeringutele: %s.", "Internet connection not working" => "Internetiühendus ei toimi", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Serveril puudub toimiv internetiühendus. See tähendab, et mõned funktsionaalsused, nagu näiteks väliste andmehoidlate ühendamine, teavitused uuendustest või kolmandate osapoolte rakenduste paigaldamine ei tööta. Eemalt failidele ligipääs ning teadete saatmine emailiga ei pruugi samuti toimida. Kui soovid täielikku funktsionaalsust, siis soovitame serverile tagada ligipääs internetti.", "Cron" => "Cron", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index b2a6b6b25c..191e6cb17f 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -61,6 +61,9 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Non se atopou o módulo «fileinfo»", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Non se atopou o módulo de PHP «fileinfo». É recomendábel activar este módulo para obter os mellores resultados coa detección do tipo MIME.", "Locale not working" => "A configuración rexional non funciona", +"System locale can not be set to a one which supports UTF-8." => "Non é posíbel estabelecer a configuración rexional do sistema a unha que admita UTF-8.", +"This means that there might be problems with certain characters in file names." => "Isto significa que pode haber problemas con certos caracteres en nomes de ficheiro.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Recomendamoslle que instale no sistema os paquetes necesarios para admitir unha das seguintes configuracións rexionais: %s.", "Internet connection not working" => "A conexión á Internet non funciona", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor non ten conexión a Internet. Isto significa que algunhas das funcionalidades como a montaxe de almacenamento externo, as notificacións sobre actualizacións ou instalación de aplicativos de terceiros non funcionan. O acceso aos ficheiros de forma remota e o envío de mensaxes de notificación poderían non funcionar. Suxerímoslle que active a conexión a Internet deste servidor se quere dispor de todas as funcionalidades.", "Cron" => "Cron", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 423f1dd8a4..ac6cf85438 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -61,6 +61,9 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Modulo 'fileinfo' mancante", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Il modulo PHP 'fileinfo' non è presente. Consigliamo vivamente di abilitare questo modulo per ottenere risultati migliori con il rilevamento dei tipi MIME.", "Locale not working" => "Locale non funzionante", +"System locale can not be set to a one which supports UTF-8." => "La localizzazione di sistema non può essere impostata a una che supporta UTF-8.", +"This means that there might be problems with certain characters in file names." => "Ciò significa che potrebbero esserci problemi con alcuni caratteri nei nomi dei file.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Consigliamo vivamente di installare i pacchetti richiesti sul tuo sistema per supportare una delle\nlocalizzazioni seguenti: %s.", "Internet connection not working" => "Concessione Internet non funzionante", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Questo server ownCloud non ha una connessione a Internet funzionante. Ciò significa che alcune delle funzionalità come il montaggio di archivi esterni, le notifiche degli aggiornamenti o l'installazione di applicazioni di terze parti non funzioneranno. L'accesso remoto ai file e l'invio di email di notifica potrebbero non funzionare. Ti suggeriamo di abilitare la connessione a Internet del server se desideri disporre di tutte le funzionalità.", "Cron" => "Cron", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index 6e34aa81d0..aa4623f353 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -61,6 +61,9 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Módulo 'fileinfo' faltando", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "O módulo PHP 'fileinfo' está faltando. Recomendamos que ative este módulo para obter uma melhor detecção do tipo de mídia (mime-type).", "Locale not working" => "Localização não funcionando", +"System locale can not be set to a one which supports UTF-8." => "Localidade do sistema não pode ser definido como um que suporta UTF-8.", +"This means that there might be problems with certain characters in file names." => "Isso significa que pode haver problemas com certos caracteres nos nomes de arquivo.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Nós sugerimos para instalar os pacotes necessários no seu sistema para suportar uma das seguintes localidades: %s.", "Internet connection not working" => "Sem conexão com a internet", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor não tem conexão com a internet. Isso significa que algumas das características como a montagem de armazenamento externo, notificações sobre atualizações ou instalação de aplicativos de 3ºs terceiros não funcionam. Acessar arquivos remotamente e envio de e-mails de notificação também não podem funcionar. Sugerimos permitir conexão com a internet para esse servidor, se você deseja ter todas as funcionalidades.", "Cron" => "Cron", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index ddd75d2372..8d18e23681 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -70,8 +70,10 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Uporabnikom dovoli souporabo s komerkoli", "Allow users to only share with users in their groups" => "Uporabnikom dovoli souporabo z ostalimi uporabniki njihove skupine", "Allow mail notification" => "Dovoli obvestila preko elektronske pošte", +"Allow user to send mail notification for shared files" => "Dovoli uporabniku poslati obvestila preko elektronske pošte za datoteke v souporabi", "Security" => "Varnost", "Enforce HTTPS" => "Zahtevaj uporabo HTTPS", +"Forces the clients to connect to %s via an encrypted connection." => "Vsili povezavo odjemalca z %s preko šifrirane povezave.", "Log" => "Dnevnik", "Log level" => "Raven beleženja", "More" => "Več", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 2d87cb3730..9e58cdefa7 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -61,6 +61,9 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Modül 'fileinfo' kayıp", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP modülü 'fileinfo' kayıp. MIME-tip tanıma ile en iyi sonuçları elde etmek için bu modülü etkinleştirmenizi öneririz.", "Locale not working" => "Locale çalışmıyor.", +"System locale can not be set to a one which supports UTF-8." => "Sistem yereli, UTF-8 destekleyenlerden biri olarak ayarlanamadı", +"This means that there might be problems with certain characters in file names." => "Bu, dosya adlarında belirli karakterlerde problem olabileceği anlamına gelir.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Şu dillerden birini desteklemesi için sisteminize gerekli paketleri kurmanızı şiddetle tavsiye ederiz: %s.", "Internet connection not working" => "İnternet bağlantısı çalışmıyor", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Bu sunucunun çalışan bir internet bağlantısı yok. Bu, harici depolama alanı bağlama, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacak demektir. Uzak dosyalara erişim ve e-posta ile bildirim gönderme de çalışmayacaktır. Eğer bu özelliklerin tamamını kullanmak istiyorsanız, sunucu için internet bağlantısını etkinleştirmenizi öneriyoruz.", "Cron" => "Cron", From 2ce850f7dbdc7759f250715f1e97036a93bc0ac1 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Sun, 24 Nov 2013 12:41:09 +0100 Subject: [PATCH 56/84] fix overwrite host support and make the code a bit more readable --- lib/private/request.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/request.php b/lib/private/request.php index df33217f95..54e6d81484 100755 --- a/lib/private/request.php +++ b/lib/private/request.php @@ -99,7 +99,7 @@ class OC_Request { public static function scriptName() { $name = $_SERVER['SCRIPT_NAME']; if (OC_Config::getValue('overwritewebroot', '') !== '' and self::isOverwriteCondition()) { - $serverroot = str_replace("\\", '/', substr(__DIR__, 0, -4)); + $serverroot = str_replace("\\", '/', substr(__DIR__, 0, -strlen('lib/private/'))); $suburi = str_replace("\\", "/", substr(realpath($_SERVER["SCRIPT_FILENAME"]), strlen($serverroot))); $name = OC_Config::getValue('overwritewebroot', '') . $suburi; } From a11192bab3bcf5751ac29b2c7fdf5cdd529345fc Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Sun, 24 Nov 2013 16:45:06 +0100 Subject: [PATCH 57/84] send the build number too to push the next daily build. This is needed for the new daily build update channel --- lib/private/updater.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/private/updater.php b/lib/private/updater.php index 9827d8a8c1..a1b07c5a24 100644 --- a/lib/private/updater.php +++ b/lib/private/updater.php @@ -58,6 +58,7 @@ class Updater extends BasicEmitter { $version['updated'] = \OC_Appconfig::getValue('core', 'lastupdatedat'); $version['updatechannel'] = \OC_Util::getChannel(); $version['edition'] = \OC_Util::getEditionString(); + $version['build'] = \OC_Util::getBuild(); $versionString = implode('x', $version); //fetch xml data from updater From 22e39baf77b5a16fa69c7f40c689b79dcdef9f75 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Sun, 24 Nov 2013 16:46:07 +0100 Subject: [PATCH 58/84] show the build number if on the daily build update channel --- settings/templates/admin.php | 2 +- settings/templates/personal.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/settings/templates/admin.php b/settings/templates/admin.php index f655a14be8..0e13f2f46b 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -264,7 +264,7 @@ if (!$_['internetconnectionworking']) {

t('Version'));?>

- getTitle()); ?> + getTitle()); ?>

t('Developed by the ownCloud community, the source code is licensed under the AGPL.')); ?> diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 9d21e18e73..97b590a96e 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -167,7 +167,7 @@ if($_['passwordChangeSupported']) {

t('Version'));?>

- getName()); ?>
+ getName()); ?>
t('Developed by the ownCloud community, the source code is licensed under the AGPL.')); ?> From 77bb168007c9faa58793d4925374222b490e0dd9 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Sun, 24 Nov 2013 17:17:10 +0100 Subject: [PATCH 59/84] replace echo with p --- settings/templates/admin.php | 2 +- settings/templates/personal.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 0e13f2f46b..de723e4cad 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -264,7 +264,7 @@ if (!$_['internetconnectionworking']) {

t('Version'));?>

- getTitle()); ?> + getTitle()); ?>

t('Developed by the ownCloud community, the source code is licensed under the AGPL.')); ?> diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 97b590a96e..a8f2fa8a55 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -167,7 +167,7 @@ if($_['passwordChangeSupported']) {

t('Version'));?>

- getName()); ?>
+ getName()); ?>
t('Developed by the ownCloud community, the source code is licensed under the AGPL.')); ?> From 6229f457d00e8abce59396af38b7800fe83e2986 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Sun, 24 Nov 2013 21:18:14 +0100 Subject: [PATCH 60/84] update PHPDoc --- lib/private/request.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/private/request.php b/lib/private/request.php index 54e6d81484..d11e5b16cf 100755 --- a/lib/private/request.php +++ b/lib/private/request.php @@ -9,6 +9,7 @@ class OC_Request { /** * @brief Check overwrite condition + * @param string $type * @returns bool */ private static function isOverwriteCondition($type = '') { From 229630f14c64c4a0889f567fc8ac2159a63cbb90 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Sun, 24 Nov 2013 21:19:06 +0100 Subject: [PATCH 61/84] adding simple unit test to test scriptName() under overwrite condition --- tests/lib/request.php | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 tests/lib/request.php diff --git a/tests/lib/request.php b/tests/lib/request.php new file mode 100644 index 0000000000..2b2094a612 --- /dev/null +++ b/tests/lib/request.php @@ -0,0 +1,26 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_Request extends PHPUnit_Framework_TestCase { + + public function setUp() { + OC_Config::setValue('overwritewebroot', '/domain.tld/ownCloud'); + } + + public function tearDown() { + OC_Config::setValue('overwritewebroot', ''); + } + + public function testScriptNameOverWrite() { + $_SERVER['REMOTE_ADDR'] = '10.0.0.1'; + $_SERVER["SCRIPT_FILENAME"] = __FILE__; + + $scriptName = OC_Request::scriptName(); + $this->assertEquals('/domain.tld/ownCloud/tests/lib/request.php', $scriptName); + } +} From 228f1788fa2e93d333849a471c3b236f69f90904 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Sun, 24 Nov 2013 21:26:34 +0100 Subject: [PATCH 62/84] add new function to generate the human readable version string based on version, channel and build number --- lib/private/util.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/lib/private/util.php b/lib/private/util.php index 426c5a025f..b5c5546da3 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -1111,4 +1111,17 @@ class OC_Util { $t = explode('/', $file); return array_pop($t); } + + /** + * A human readable string is generated based on version, channel and build number + * @return string + */ + public static function getHumanVersion() { + $version = OC_Util::getVersionString().' ('.OC_Util::getChannel().')'; + $build = OC_Util::getBuild(); + if(!empty($build) and OC_Util::getChannel() === 'daily') { + $version .= ' Build:' . $build; + } + return $version; + } } From f6df4b349f6233b56c6f193d132ce04fb0dec47b Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Sun, 24 Nov 2013 21:27:32 +0100 Subject: [PATCH 63/84] remove logic from template and fix syntax error --- settings/templates/admin.php | 2 +- settings/templates/personal.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/settings/templates/admin.php b/settings/templates/admin.php index de723e4cad..253a7ff5f5 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -264,7 +264,7 @@ if (!$_['internetconnectionworking']) {

t('Version'));?>

- getTitle()); ?> + getTitle()); ?>

t('Developed by the ownCloud community, the source code is licensed under the AGPL.')); ?> diff --git a/settings/templates/personal.php b/settings/templates/personal.php index a8f2fa8a55..2d8652aed7 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -167,7 +167,7 @@ if($_['passwordChangeSupported']) {

t('Version'));?>

- getName()); ?>
+ getName()); ?>
t('Developed by the ownCloud community, the source code is licensed under the AGPL.')); ?> From f1f172e16ea078b2efdce90045b2d303283bf31e Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 25 Nov 2013 11:09:31 +0100 Subject: [PATCH 64/84] fix typo --- settings/templates/personal.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 2d8652aed7..a79eeefa79 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -145,7 +145,7 @@ if($_['passwordChangeSupported']) {

t( 'Encryption' ) ); ?>

- t( "The encryption app is no longer enabled, decrypt all your file" )); ?> + t( "The encryption app is no longer enabled, please decrypt all your files" )); ?>

Date: Mon, 25 Nov 2013 12:44:27 +0100 Subject: [PATCH 65/84] Fixed ext storage touch function to return true on success Some ext storage impl didn't return true on success. Fixes #5943 (Dropbox) Fixes #6010 (WebDAV) --- apps/files_external/lib/dropbox.php | 6 +++++- apps/files_external/lib/swift.php | 4 ++-- apps/files_external/lib/webdav.php | 1 + 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/apps/files_external/lib/dropbox.php b/apps/files_external/lib/dropbox.php index 6e464f4e28..5f603b7fe4 100755 --- a/apps/files_external/lib/dropbox.php +++ b/apps/files_external/lib/dropbox.php @@ -269,7 +269,11 @@ class Dropbox extends \OC\Files\Storage\Common { } public function touch($path, $mtime = null) { - return false; + if ($this->file_exists($path)) { + return false; + } else { + $this->file_put_contents($path, ''); + } } } diff --git a/apps/files_external/lib/swift.php b/apps/files_external/lib/swift.php index 86938ef3bb..b615d24ce7 100644 --- a/apps/files_external/lib/swift.php +++ b/apps/files_external/lib/swift.php @@ -364,7 +364,7 @@ class Swift extends \OC\Files\Storage\Common { 'X-Object-Meta-Timestamp' => $mtime ) ); - $object->Update($settings); + return $object->Update($settings); } else { $object = $this->container->DataObject(); if (is_null($mtime)) { @@ -377,7 +377,7 @@ class Swift extends \OC\Files\Storage\Common { 'X-Object-Meta-Timestamp' => $mtime ) ); - $object->Create($settings); + return $object->Create($settings); } } diff --git a/apps/files_external/lib/webdav.php b/apps/files_external/lib/webdav.php index 0837222e51..02f6cb5fc4 100644 --- a/apps/files_external/lib/webdav.php +++ b/apps/files_external/lib/webdav.php @@ -234,6 +234,7 @@ class DAV extends \OC\Files\Storage\Common{ } else { $this->file_put_contents($path, ''); } + return true; } public function getFile($path, $target) { From 317d421874158cefba5fae80398513a453c38f77 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 25 Nov 2013 13:04:23 +0100 Subject: [PATCH 66/84] provide more cli friendly error messages --- lib/base.php | 27 +++++++++++++++++++++------ 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/lib/base.php b/lib/base.php index 865d174d21..187cedf942 100644 --- a/lib/base.php +++ b/lib/base.php @@ -178,11 +178,19 @@ class OC { if (file_exists(OC::$SERVERROOT . "/config/config.php") and !is_writable(OC::$SERVERROOT . "/config/config.php")) { $defaults = new OC_Defaults(); - OC_Template::printErrorPage( - "Can't write into config directory!", - 'This can usually be fixed by ' - .'giving the webserver write access to the config directory.' - ); + if (self::$CLI) { + echo "Can't write into config directory!\n"; + echo "This can usually be fixed by giving the webserver write access to the config directory\n"; + echo "\n"; + echo "See " . \OC_Helper::linkToDocs('admin-dir_permissions') . "\n"; + exit; + } else { + OC_Template::printErrorPage( + "Can't write into config directory!", + 'This can usually be fixed by ' + .'giving the webserver write access to the config directory.' + ); + } } } @@ -480,7 +488,14 @@ class OC { $errors = OC_Util::checkServer(); if (count($errors) > 0) { - OC_Template::printGuestPage('', 'error', array('errors' => $errors)); + if (self::$CLI) { + foreach ($errors as $error) { + echo $error['error']."\n"; + echo $error['hint'] . "\n\n"; + } + } else { + OC_Template::printGuestPage('', 'error', array('errors' => $errors)); + } exit; } From d3bfb433d1d9419095e2e3d8d9bfad1977bb8d22 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 25 Nov 2013 13:20:16 +0100 Subject: [PATCH 67/84] add occ commands for enabling and disabling apps --- core/command/app/disable.php | 37 ++++++++++++++++++++++++++++++++++ core/command/app/enable.php | 39 ++++++++++++++++++++++++++++++++++++ core/register_command.php | 2 ++ 3 files changed, 78 insertions(+) create mode 100644 core/command/app/disable.php create mode 100644 core/command/app/enable.php diff --git a/core/command/app/disable.php b/core/command/app/disable.php new file mode 100644 index 0000000000..fc95739d99 --- /dev/null +++ b/core/command/app/disable.php @@ -0,0 +1,37 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Core\Command\App; + +use Symfony\Component\Console\Command\Command; +use Symfony\Component\Console\Input\InputArgument; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\OutputInterface; + +class Disable extends Command { + protected function configure() { + $this + ->setName('app:disable') + ->setDescription('disable an app') + ->addArgument( + 'app_id', + InputArgument::REQUIRED, + 'disable the specified app' + ); + } + + protected function execute(InputInterface $input, OutputInterface $output) { + $appId = $input->getArgument('app_id'); + if (\OC_App::isEnabled($appId)) { + \OC_App::disable($appId); + $output->writeln($appId . ' disabled'); + } else { + $output->writeln('No such app enabled: ' . $appId); + } + } +} diff --git a/core/command/app/enable.php b/core/command/app/enable.php new file mode 100644 index 0000000000..20cb55c4aa --- /dev/null +++ b/core/command/app/enable.php @@ -0,0 +1,39 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Core\Command\App; + +use Symfony\Component\Console\Command\Command; +use Symfony\Component\Console\Input\InputArgument; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\OutputInterface; + +class Enable extends Command { + protected function configure() { + $this + ->setName('app:enable') + ->setDescription('enable an app') + ->addArgument( + 'app_id', + InputArgument::REQUIRED, + 'enable the specified app' + ); + } + + protected function execute(InputInterface $input, OutputInterface $output) { + $appId = $input->getArgument('app_id'); + if (\OC_App::isEnabled($appId)) { + $output->writeln($appId . ' is already enabled'); + } else if (!\OC_App::getAppPath($appId)) { + $output->writeln($appId . ' not found'); + } else { + \OC_App::enable($appId); + $output->writeln($appId . ' enabled'); + } + } +} diff --git a/core/register_command.php b/core/register_command.php index cfea1a6b88..9ca2a8660b 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -10,3 +10,5 @@ $application->add(new OC\Core\Command\Status); $application->add(new OC\Core\Command\Db\GenerateChangeScript()); $application->add(new OC\Core\Command\Upgrade()); +$application->add(new OC\Core\Command\App\Disable()); +$application->add(new OC\Core\Command\App\Enable()); From b7ddc78626930dea0ade30a26edf62e204d2fc37 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 25 Nov 2013 14:06:25 +0100 Subject: [PATCH 68/84] fix db.php doc --- lib/public/db.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/public/db.php b/lib/public/db.php index b9424b5386..c9997c79c3 100644 --- a/lib/public/db.php +++ b/lib/public/db.php @@ -37,6 +37,8 @@ class DB { /** * Prepare a SQL query * @param string $query Query string + * @param int $limit Limit of the SQL statement + * @param int $offset Offset of the SQL statement * @return \MDB2_Statement_Common prepared SQL query * * SQL query via MDB2 prepare(), needs to be execute()'d! From 7f47cc062c3bddd788bfc6dbbe720ec55cc2f3bf Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 25 Nov 2013 14:12:07 +0100 Subject: [PATCH 69/84] fix defaults.php doc --- lib/private/defaults.php | 50 +++++++++++++++++++++++++++++++++++----- 1 file changed, 44 insertions(+), 6 deletions(-) diff --git a/lib/private/defaults.php b/lib/private/defaults.php index 4951c6f50a..cec9a65c7f 100644 --- a/lib/private/defaults.php +++ b/lib/private/defaults.php @@ -1,15 +1,13 @@ themeExist('getBaseUrl')) { return $this->theme->getBaseUrl(); @@ -56,6 +58,10 @@ class OC_Defaults { } } + /** + * Returns the URL where the sync clients are listed + * @return string URL + */ public function getSyncClientUrl() { if ($this->themeExist('getSyncClientUrl')) { return $this->theme->getSyncClientUrl(); @@ -64,6 +70,10 @@ class OC_Defaults { } } + /** + * Returns the documentation URL + * @return string URL + */ public function getDocBaseUrl() { if ($this->themeExist('getDocBaseUrl')) { return $this->theme->getDocBaseUrl(); @@ -72,6 +82,10 @@ class OC_Defaults { } } + /** + * Returns the title + * @return string title + */ public function getTitle() { if ($this->themeExist('getTitle')) { return $this->theme->getTitle(); @@ -80,6 +94,10 @@ class OC_Defaults { } } + /** + * Returns the short name of the software + * @return string title + */ public function getName() { if ($this->themeExist('getName')) { return $this->theme->getName(); @@ -88,6 +106,10 @@ class OC_Defaults { } } + /** + * Returns entity (e.g. company name) - used for footer, copyright + * @return string entity name + */ public function getEntity() { if ($this->themeExist('getEntity')) { return $this->theme->getEntity(); @@ -96,6 +118,10 @@ class OC_Defaults { } } + /** + * Returns slogan + * @return string slogan + */ public function getSlogan() { if ($this->themeExist('getSlogan')) { return $this->theme->getSlogan(); @@ -104,6 +130,10 @@ class OC_Defaults { } } + /** + * Returns logo claim + * @return string logo claim + */ public function getLogoClaim() { if ($this->themeExist('getLogoClaim')) { return $this->theme->getLogoClaim(); @@ -112,6 +142,10 @@ class OC_Defaults { } } + /** + * Returns short version of the footer + * @return string short footer + */ public function getShortFooter() { if ($this->themeExist('getShortFooter')) { $footer = $this->theme->getShortFooter(); @@ -123,6 +157,10 @@ class OC_Defaults { return $footer; } + /** + * Returns long version of the footer + * @return string long footer + */ public function getLongFooter() { if ($this->themeExist('getLongFooter')) { $footer = $this->theme->getLongFooter(); From a0a665ea459fe96a0006766cc0d0b25e5cd258df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 25 Nov 2013 14:21:51 +0100 Subject: [PATCH 70/84] handle duplicate slashes in case of reverse proxy configuration --- lib/private/request.php | 5 ++++- tests/lib/request.php | 20 ++++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/lib/private/request.php b/lib/private/request.php index d11e5b16cf..9cf09ac734 100755 --- a/lib/private/request.php +++ b/lib/private/request.php @@ -136,7 +136,10 @@ class OC_Request { * @returns string Path info or false when not found */ public static function getRawPathInfo() { - $path_info = substr($_SERVER['REQUEST_URI'], strlen($_SERVER['SCRIPT_NAME'])); + $requestUri = $_SERVER['REQUEST_URI']; + // remove too many leading slashes - can be caused by reverse proxy configuration + $requestUri = '/' . ltrim($requestUri, '/'); + $path_info = substr($requestUri, strlen($_SERVER['SCRIPT_NAME'])); // Remove the query string from REQUEST_URI if ($pos = strpos($path_info, '?')) { $path_info = substr($path_info, 0, $pos); diff --git a/tests/lib/request.php b/tests/lib/request.php index 2b2094a612..d7ccb2146d 100644 --- a/tests/lib/request.php +++ b/tests/lib/request.php @@ -23,4 +23,24 @@ class Test_Request extends PHPUnit_Framework_TestCase { $scriptName = OC_Request::scriptName(); $this->assertEquals('/domain.tld/ownCloud/tests/lib/request.php', $scriptName); } + + /** + * @dataProvider rawPathInfoProvider + * @param $expected + * @param $requestUri + * @param $scriptName + */ + public function testRawPathInfo($expected, $requestUri, $scriptName) { + $_SERVER['REQUEST_URI'] = $requestUri; + $_SERVER['SCRIPT_NAME'] = $scriptName; + $rawPathInfo = OC_Request::getRawPathInfo(); + $this->assertEquals($expected, $rawPathInfo); + } + + function rawPathInfoProvider() { + return array( + array('/core/ajax/translations.php', '/index.php/core/ajax/translations.php', '/index.php'), + array('/core/ajax/translations.php', '//index.php/core/ajax/translations.php', '/index.php'), + ); + } } From 248eed16a6bf917292d4a99191d123a7e7cc9002 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 25 Nov 2013 14:26:26 +0100 Subject: [PATCH 71/84] fix defaults.php doc --- lib/public/defaults.php | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/lib/public/defaults.php b/lib/public/defaults.php index 8f7853a86a..34b68903ee 100644 --- a/lib/public/defaults.php +++ b/lib/public/defaults.php @@ -30,19 +30,27 @@ // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP; -/* +/** * public api to access default strings and urls for your templates */ class Defaults { + /** + * \OC_Defaults instance to retrieve the defaults + * @return string + */ private $defaults; + /** + * creates a \OC_Defaults instance which is used in all methods to retrieve the + * actual defaults + */ function __construct() { $this->defaults = new \OC_Defaults(); } /** - * @breif get base URL for the organisation behind your ownCloud instance + * get base URL for the organisation behind your ownCloud instance * @return string */ public function getBaseUrl() { @@ -50,7 +58,7 @@ class Defaults { } /** - * @breif link to the desktop sync client + * link to the desktop sync client * @return string */ public function getSyncClientUrl() { @@ -58,7 +66,7 @@ class Defaults { } /** - * @breif base URL to the documentation of your ownCloud instance + * base URL to the documentation of your ownCloud instance * @return string */ public function getDocBaseUrl() { @@ -66,7 +74,7 @@ class Defaults { } /** - * @breif name of your ownCloud instance + * name of your ownCloud instance * @return string */ public function getName() { @@ -74,7 +82,7 @@ class Defaults { } /** - * @breif Entity behind your onwCloud instance + * Entity behind your onwCloud instance * @return string */ public function getEntity() { @@ -82,7 +90,7 @@ class Defaults { } /** - * @breif ownCloud slogan + * ownCloud slogan * @return string */ public function getSlogan() { @@ -90,7 +98,7 @@ class Defaults { } /** - * @breif logo claim + * logo claim * @return string */ public function getLogoClaim() { @@ -98,7 +106,7 @@ class Defaults { } /** - * @breif footer, short version + * footer, short version * @return string */ public function getShortFooter() { @@ -106,7 +114,7 @@ class Defaults { } /** - * @breif footer, long version + * footer, long version * @return string */ public function getLongFooter() { From b9fed935b455d06ef943c562093c87171b71e4fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 25 Nov 2013 14:42:34 +0100 Subject: [PATCH 72/84] in case uri and script name don't match we better throw an exception --- lib/private/request.php | 12 ++++++++++-- tests/lib/request.php | 22 ++++++++++++++++++++++ 2 files changed, 32 insertions(+), 2 deletions(-) diff --git a/lib/private/request.php b/lib/private/request.php index 9cf09ac734..7a75bf2520 100755 --- a/lib/private/request.php +++ b/lib/private/request.php @@ -138,8 +138,16 @@ class OC_Request { public static function getRawPathInfo() { $requestUri = $_SERVER['REQUEST_URI']; // remove too many leading slashes - can be caused by reverse proxy configuration - $requestUri = '/' . ltrim($requestUri, '/'); - $path_info = substr($requestUri, strlen($_SERVER['SCRIPT_NAME'])); + if (strpos($requestUri, '/') === 0) { + $requestUri = '/' . ltrim($requestUri, '/'); + } + + $scriptName = $_SERVER['SCRIPT_NAME']; + // in case uri and script name don't match we better throw an exception + if (strpos($requestUri, $scriptName) !== 0) { + throw new Exception("REQUEST_URI($requestUri) does not start with the SCRIPT_NAME($scriptName)"); + } + $path_info = substr($requestUri, strlen($scriptName)); // Remove the query string from REQUEST_URI if ($pos = strpos($path_info, '?')) { $path_info = substr($path_info, 0, $pos); diff --git a/tests/lib/request.php b/tests/lib/request.php index d7ccb2146d..a740751f06 100644 --- a/tests/lib/request.php +++ b/tests/lib/request.php @@ -39,8 +39,30 @@ class Test_Request extends PHPUnit_Framework_TestCase { function rawPathInfoProvider() { return array( + array('/core/ajax/translations.php', 'index.php/core/ajax/translations.php', 'index.php'), array('/core/ajax/translations.php', '/index.php/core/ajax/translations.php', '/index.php'), array('/core/ajax/translations.php', '//index.php/core/ajax/translations.php', '/index.php'), ); } + + /** + * @dataProvider rawPathInfoThrowsExceptionProvider + * @expectedException Exception + * + * @param $requestUri + * @param $scriptName + */ + public function testRawPathInfoThrowsException($requestUri, $scriptName) { + $_SERVER['REQUEST_URI'] = $requestUri; + $_SERVER['SCRIPT_NAME'] = $scriptName; + OC_Request::getRawPathInfo(); + } + + function rawPathInfoThrowsExceptionProvider() { + return array( + array('core/ajax/translations.php', '/index.php'), + array('/core/ajax/translations.php', '/index.php'), + array('//core/ajax/translations.php', '/index.php'), + ); + } } From 71c1327691225a0a517aa3929a48743f95b177d0 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 25 Nov 2013 15:08:24 +0100 Subject: [PATCH 73/84] Add "single user mode" which restricts access to users in the admin group This can be enabled by setting 'singleuser' to true in config.php --- lib/base.php | 19 ++++++++++++++++++- public.php | 1 + 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/lib/base.php b/lib/base.php index 865d174d21..b361ac3c71 100644 --- a/lib/base.php +++ b/lib/base.php @@ -230,6 +230,22 @@ class OC { } } + public static function checkSingleUserMode() { + $user = OC_User::getUserSession()->getUser(); + $group = OC_Group::getManager()->get('admin'); + if ($user && OC_Config::getValue('singleuser', false) && !$group->inGroup($user)) { + // send http status 503 + header('HTTP/1.1 503 Service Temporarily Unavailable'); + header('Status: 503 Service Temporarily Unavailable'); + header('Retry-After: 120'); + + // render error page + $tmpl = new OC_Template('', 'singleuser.user', 'guest'); + $tmpl->printPage(); + die(); + } + } + public static function checkUpgrade($showTemplate = true) { if (OC_Config::getValue('installed', false)) { $installedVersion = OC_Config::getValue('version', '0.0.0'); @@ -652,11 +668,12 @@ class OC { // Test it the user is already authenticated using Apaches AuthType Basic... very usable in combination with LDAP OC::tryBasicAuthLogin(); - if (!self::$CLI) { + if (!self::$CLI and (!isset($_GET["logout"]) or ($_GET["logout"] !== 'true'))) { try { if (!OC_Config::getValue('maintenance', false)) { OC_App::loadApps(); } + self::checkSingleUserMode(); OC::getRouter()->match(OC_Request::getRawPathInfo()); return; } catch (Symfony\Component\Routing\Exception\ResourceNotFoundException $e) { diff --git a/public.php b/public.php index 203372fe1e..767295b98d 100644 --- a/public.php +++ b/public.php @@ -5,6 +5,7 @@ try { require_once 'lib/base.php'; OC::checkMaintenanceMode(); + OC::checkSingleUserMode(); if (!isset($_GET['service'])) { header('HTTP/1.0 404 Not Found'); exit; From a324c09e6cd9d9199642666505f3d77f87478883 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 25 Nov 2013 15:27:05 +0100 Subject: [PATCH 74/84] Add occ command to enable and disable single user mode --- core/command/maintenance/singleuser.php | 51 +++++++++++++++++++++++++ core/register_command.php | 1 + 2 files changed, 52 insertions(+) create mode 100644 core/command/maintenance/singleuser.php diff --git a/core/command/maintenance/singleuser.php b/core/command/maintenance/singleuser.php new file mode 100644 index 0000000000..f9a1bbcaca --- /dev/null +++ b/core/command/maintenance/singleuser.php @@ -0,0 +1,51 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Core\Command\Maintenance; + +use Symfony\Component\Console\Command\Command; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Input\InputOption; +use Symfony\Component\Console\Output\OutputInterface; + +class SingleUser extends Command { + + protected function configure() { + $this + ->setName('maintenance:singleuser') + ->setDescription('set single user mode') + ->addOption( + 'on', + null, + InputOption::VALUE_NONE, + 'enable single user mode' + ) + ->addOption( + 'off', + null, + InputOption::VALUE_NONE, + 'disable single user mode' + ); + } + + protected function execute(InputInterface $input, OutputInterface $output) { + if ($input->getOption('on')) { + \OC_Config::setValue('singleuser', true); + $output->writeln('Single user mode enabled'); + } elseif ($input->getOption('off')) { + \OC_Config::setValue('singleuser', false); + $output->writeln('Single user mode disabled'); + } else { + if (\OC_Config::getValue('singleuser', false)) { + $output->writeln('Single user mode is currently enabled'); + } else { + $output->writeln('Single user mode is currently disabled'); + } + } + } +} diff --git a/core/register_command.php b/core/register_command.php index cfea1a6b88..2f351b67a1 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -10,3 +10,4 @@ $application->add(new OC\Core\Command\Status); $application->add(new OC\Core\Command\Db\GenerateChangeScript()); $application->add(new OC\Core\Command\Upgrade()); +$application->add(new OC\Core\Command\Maintenance\SingleUser()); From 27cc333dfef71a4331ad66fa7ce0b1de53e73099 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 25 Nov 2013 15:35:26 +0100 Subject: [PATCH 75/84] adding chunked upload handling --- lib/private/connector/sabre/filesplugin.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lib/private/connector/sabre/filesplugin.php b/lib/private/connector/sabre/filesplugin.php index 1c80ebe804..65231040fb 100644 --- a/lib/private/connector/sabre/filesplugin.php +++ b/lib/private/connector/sabre/filesplugin.php @@ -78,7 +78,19 @@ class OC_Connector_Sabre_FilesPlugin extends Sabre_DAV_ServerPlugin * @throws Sabre_DAV_Exception_BadRequest */ public function sendFileIdHeader($filePath, Sabre_DAV_INode $node = null) { + // chunked upload handling + if (isset($_SERVER['HTTP_OC_CHUNKED'])) { + list($path, $name) = \Sabre_DAV_URLUtil::splitPath($filePath); + $info = OC_FileChunking::decodeName($name); + if (!empty($info)) { + $filePath = $path . '/' . $info['name']; + } + } + // we get the node for the given $filePath here because in case of afterCreateFile $node is the parent folder + if (!$this->server->tree->nodeExists($filePath)) { + return; + } $node = $this->server->tree->getNodeForPath($filePath); if ($node instanceof OC_Connector_Sabre_Node) { $fileId = $node->getFileId(); From 1bcb04f94eefda2145ad9f0eed978010bfa85769 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 25 Nov 2013 15:59:37 +0100 Subject: [PATCH 76/84] Add template for single user mode message --- core/templates/singleuser.user.php | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 core/templates/singleuser.user.php diff --git a/core/templates/singleuser.user.php b/core/templates/singleuser.user.php new file mode 100644 index 0000000000..a5f56f6e2c --- /dev/null +++ b/core/templates/singleuser.user.php @@ -0,0 +1,10 @@ +

    +
  • + t('This ownCloud instance is currently in single user mode.')) ?>

    + t('This means only administrators can use the instance.')) ?>

    + t('Contact your system administrator if this message persists or appeared unexpectedly.')) ?> +

    + t('Thank you for your patience.')); ?>

    + >t('Log out')); ?> +
  • +
From a609a5364779acb8ac27b337ad453dc9c8a39811 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 25 Nov 2013 16:01:42 +0100 Subject: [PATCH 77/84] add documentation for single user config option to config.sample.php --- config/config.sample.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/config.sample.php b/config/config.sample.php index 105d4759cc..7b533a8b9c 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -235,4 +235,7 @@ $CONFIG = array( 'openssl' => array( //'config' => '/absolute/location/of/openssl.cnf', ), + +/* whether usage of the instance should be restricted to admin users only */ +'singleuser' => false, ); From bc8cc9142e08611104cdc4df9d518775ef576066 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 25 Nov 2013 16:28:24 +0100 Subject: [PATCH 78/84] AppFramework(Controller|HTTP|HTTP-Responses|Middleware), IContainer API fixes --- lib/public/appframework/controller.php | 7 +++++ lib/public/appframework/http.php | 8 +++++- lib/public/appframework/http/jsonresponse.php | 11 +++++++- lib/public/appframework/http/response.php | 4 +++ .../appframework/http/templateresponse.php | 26 ++++++++++++++++++- lib/public/appframework/middleware.php | 4 +++ lib/public/icontainer.php | 2 +- 7 files changed, 58 insertions(+), 4 deletions(-) diff --git a/lib/public/appframework/controller.php b/lib/public/appframework/controller.php index 320e0cfebb..dc8da96787 100644 --- a/lib/public/appframework/controller.php +++ b/lib/public/appframework/controller.php @@ -20,6 +20,10 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * AppFramework\Controller class + */ namespace OCP\AppFramework; @@ -34,16 +38,19 @@ use OCP\IRequest; abstract class Controller { /** + * app container for dependency injection * @var \OCP\AppFramework\IAppContainer */ protected $app; /** + * current request * @var \OCP\IRequest */ protected $request; /** + * constructor of the controller * @param IAppContainer $app interface to the app * @param IRequest $request an instance of the request */ diff --git a/lib/public/appframework/http.php b/lib/public/appframework/http.php index c584d4ec67..60f314202c 100644 --- a/lib/public/appframework/http.php +++ b/lib/public/appframework/http.php @@ -20,10 +20,16 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * AppFramework\HTTP class + */ namespace OCP\AppFramework; - +/** + * Base class which contains constants for HTTP status codes + */ class Http { const STATUS_CONTINUE = 100; diff --git a/lib/public/appframework/http/jsonresponse.php b/lib/public/appframework/http/jsonresponse.php index 7c2b609bc2..b54b23a34e 100644 --- a/lib/public/appframework/http/jsonresponse.php +++ b/lib/public/appframework/http/jsonresponse.php @@ -20,6 +20,10 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * AppFramework\HTTP\JSONResponse class + */ namespace OCP\AppFramework\Http; @@ -30,10 +34,15 @@ use OCP\AppFramework\Http; */ class JSONResponse extends Response { + /** + * response data + * @var array|object + */ protected $data; /** + * constructor of JSONResponse * @param array|object $data the object or array that should be transformed * @param int $statusCode the Http status code, defaults to 200 */ @@ -55,7 +64,7 @@ class JSONResponse extends Response { /** * Sets values in the data json array - * @param array|object $params an array or object which will be transformed + * @param array|object $data an array or object which will be transformed * to JSON */ public function setData($data){ diff --git a/lib/public/appframework/http/response.php b/lib/public/appframework/http/response.php index f776878a81..0f5a18ca4f 100644 --- a/lib/public/appframework/http/response.php +++ b/lib/public/appframework/http/response.php @@ -20,6 +20,10 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * AppFramework\HTTP\Response class + */ namespace OCP\AppFramework\Http; diff --git a/lib/public/appframework/http/templateresponse.php b/lib/public/appframework/http/templateresponse.php index 6156f8062f..2200a38bec 100644 --- a/lib/public/appframework/http/templateresponse.php +++ b/lib/public/appframework/http/templateresponse.php @@ -20,6 +20,10 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * AppFramework\HTTP\TemplateResponse class + */ namespace OCP\AppFramework\Http; @@ -29,14 +33,34 @@ namespace OCP\AppFramework\Http; */ class TemplateResponse extends Response { + /** + * name of the template + * @var string + */ protected $templateName; + + /** + * parameters + * @var array + */ protected $params; + + /** + * rendering type (admin, user, blank) + * @var string + */ protected $renderAs; + + /** + * app name + * @var string + */ protected $appName; /** - * @param string $templateName the name of the template + * constructor of TemplateResponse * @param string $appName the name of the app to load the template from + * @param string $templateName the name of the template */ public function __construct($appName, $templateName) { $this->templateName = $templateName; diff --git a/lib/public/appframework/middleware.php b/lib/public/appframework/middleware.php index c4ee1c0dba..24f3193993 100644 --- a/lib/public/appframework/middleware.php +++ b/lib/public/appframework/middleware.php @@ -20,6 +20,10 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * AppFramework\Middleware class + */ namespace OCP\AppFramework; diff --git a/lib/public/icontainer.php b/lib/public/icontainer.php index 6b7052cc4f..eaffa5d5a0 100644 --- a/lib/public/icontainer.php +++ b/lib/public/icontainer.php @@ -64,7 +64,7 @@ interface IContainer { * In case the parameter is false the service will be recreated on every call. * * @param string $name - * @param callable $closure + * @param \Closure $closure * @param bool $shared * @return void */ From 4e0fa85307105a40395987b3d6e50cb5a1652a18 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 25 Nov 2013 16:39:01 +0100 Subject: [PATCH 79/84] page level doc blocks and class descriptions --- lib/public/activity/iconsumer.php | 5 +++++ lib/public/activity/imanager.php | 5 +++++ lib/public/appframework/app.php | 5 +++++ lib/public/appframework/iapi.php | 4 ++++ lib/public/authentication/iapachebackend.php | 5 +++++ lib/public/files/alreadyexistsexception.php | 8 ++++++++ lib/public/files/entitytoolargeexception.php | 8 ++++++++ lib/public/files/file.php | 5 +++++ lib/public/files/invalidcontentexception.php | 8 ++++++++ lib/public/files/invalidpathexception.php | 8 ++++++++ lib/public/files/notenoughspaceexception.php | 8 ++++++++ lib/public/files/notfoundexception.php | 8 ++++++++ lib/public/files/notpermittedexception.php | 8 ++++++++ lib/public/files/storage.php | 5 +++++ lib/public/iaddressbook.php | 5 +++++ 15 files changed, 95 insertions(+) diff --git a/lib/public/activity/iconsumer.php b/lib/public/activity/iconsumer.php index a0134a379d..9afacf4e74 100644 --- a/lib/public/activity/iconsumer.php +++ b/lib/public/activity/iconsumer.php @@ -20,6 +20,11 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * Activity/IConsumer interface + */ + // use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Activity; diff --git a/lib/public/activity/imanager.php b/lib/public/activity/imanager.php index 90215d637c..a389bd6a70 100644 --- a/lib/public/activity/imanager.php +++ b/lib/public/activity/imanager.php @@ -20,6 +20,11 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * Activity/IManager interface + */ + // use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Activity; diff --git a/lib/public/appframework/app.php b/lib/public/appframework/app.php index 6ac48bf102..0ff6648c5d 100644 --- a/lib/public/appframework/app.php +++ b/lib/public/appframework/app.php @@ -20,6 +20,11 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * AppFramework/App class + */ + namespace OCP\AppFramework; diff --git a/lib/public/appframework/iapi.php b/lib/public/appframework/iapi.php index a22b056635..963e870f79 100644 --- a/lib/public/appframework/iapi.php +++ b/lib/public/appframework/iapi.php @@ -20,6 +20,10 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * AppFramework/IApi interface + */ namespace OCP\AppFramework; diff --git a/lib/public/authentication/iapachebackend.php b/lib/public/authentication/iapachebackend.php index 2d2f8c4e48..3979a14302 100644 --- a/lib/public/authentication/iapachebackend.php +++ b/lib/public/authentication/iapachebackend.php @@ -20,6 +20,11 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * Authentication/IApacheBackend interface + */ + // use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Authentication; diff --git a/lib/public/files/alreadyexistsexception.php b/lib/public/files/alreadyexistsexception.php index 3132e3b0c3..7bea947aef 100644 --- a/lib/public/files/alreadyexistsexception.php +++ b/lib/public/files/alreadyexistsexception.php @@ -20,8 +20,16 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * Files/AlreadyExistsException class + */ + // use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; +/** + * Exception for already existing files/folders + */ class AlreadyExistsException extends \Exception {} diff --git a/lib/public/files/entitytoolargeexception.php b/lib/public/files/entitytoolargeexception.php index e0d93ccbcd..eaa68a548b 100644 --- a/lib/public/files/entitytoolargeexception.php +++ b/lib/public/files/entitytoolargeexception.php @@ -20,8 +20,16 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * Files/EntityTooLargeException class + */ + // use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; +/** + * Exception for too large entity + */ class EntityTooLargeException extends \Exception {} diff --git a/lib/public/files/file.php b/lib/public/files/file.php index 730213039d..c6cda59f9b 100644 --- a/lib/public/files/file.php +++ b/lib/public/files/file.php @@ -20,6 +20,11 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * Files/File interface + */ + // use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; diff --git a/lib/public/files/invalidcontentexception.php b/lib/public/files/invalidcontentexception.php index 2e1356e2ba..3dfe7378c4 100644 --- a/lib/public/files/invalidcontentexception.php +++ b/lib/public/files/invalidcontentexception.php @@ -20,8 +20,16 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * Files/InvalidContentException class + */ + // use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; +/** + * Exception for invalid content + */ class InvalidContentException extends \Exception {} diff --git a/lib/public/files/invalidpathexception.php b/lib/public/files/invalidpathexception.php index 893eb1e43f..8ecfa7d89a 100644 --- a/lib/public/files/invalidpathexception.php +++ b/lib/public/files/invalidpathexception.php @@ -20,8 +20,16 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * Files/InvalidPathException class + */ + // use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; +/** + * Exception for invalid path + */ class InvalidPathException extends \Exception {} diff --git a/lib/public/files/notenoughspaceexception.php b/lib/public/files/notenoughspaceexception.php index 1597a4518b..17f91b31bf 100644 --- a/lib/public/files/notenoughspaceexception.php +++ b/lib/public/files/notenoughspaceexception.php @@ -20,8 +20,16 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * Files/NotEnoughSpaceException class + */ + // use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; +/** + * Exception for not enough space + */ class NotEnoughSpaceException extends \Exception {} diff --git a/lib/public/files/notfoundexception.php b/lib/public/files/notfoundexception.php index 489e43fc5f..cb35199220 100644 --- a/lib/public/files/notfoundexception.php +++ b/lib/public/files/notfoundexception.php @@ -20,8 +20,16 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * Files/NotFoundException class + */ + // use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; +/** + * Exception for not found entity + */ class NotFoundException extends \Exception {} diff --git a/lib/public/files/notpermittedexception.php b/lib/public/files/notpermittedexception.php index a5be43dbf5..e37bd6fad3 100644 --- a/lib/public/files/notpermittedexception.php +++ b/lib/public/files/notpermittedexception.php @@ -20,8 +20,16 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * Files/NotPermittedException class + */ + // use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; +/** + * Exception for not permitted action + */ class NotPermittedException extends \Exception {} diff --git a/lib/public/files/storage.php b/lib/public/files/storage.php index 7a7d5ec1ef..194b42a648 100644 --- a/lib/public/files/storage.php +++ b/lib/public/files/storage.php @@ -20,6 +20,11 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * Files/Storage interface + */ + // use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; diff --git a/lib/public/iaddressbook.php b/lib/public/iaddressbook.php index 77e8750d9d..dcfe08012e 100644 --- a/lib/public/iaddressbook.php +++ b/lib/public/iaddressbook.php @@ -20,6 +20,11 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * IAddressBook interface + */ + // use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP { From b3e7e54c8d05b256ef523d7bdbbbb86a7aab8df7 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 25 Nov 2013 16:42:28 +0100 Subject: [PATCH 80/84] fix some capital letters --- lib/public/activity/imanager.php | 1 - lib/public/files/folder.php | 5 +++++ lib/public/files/node.php | 5 +++++ lib/public/idbconnection.php | 2 +- lib/public/share.php | 6 +++--- 5 files changed, 14 insertions(+), 5 deletions(-) diff --git a/lib/public/activity/imanager.php b/lib/public/activity/imanager.php index a389bd6a70..086e430d67 100644 --- a/lib/public/activity/imanager.php +++ b/lib/public/activity/imanager.php @@ -52,7 +52,6 @@ interface IManager { * * $callable has to return an instance of OCA\Activity\IConsumer * - * @param string $key * @param \Closure $callable */ function registerConsumer(\Closure $callable); diff --git a/lib/public/files/folder.php b/lib/public/files/folder.php index 5c9785db57..7fec1c529a 100644 --- a/lib/public/files/folder.php +++ b/lib/public/files/folder.php @@ -20,6 +20,11 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * Files/Folder interface + */ + // use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; diff --git a/lib/public/files/node.php b/lib/public/files/node.php index e38bfa3b2e..972b1cfa49 100644 --- a/lib/public/files/node.php +++ b/lib/public/files/node.php @@ -20,6 +20,11 @@ * */ +/** + * Public interface of ownCloud for apps to use. + * Files/Node interface + */ + // use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; diff --git a/lib/public/idbconnection.php b/lib/public/idbconnection.php index 17e3de0ffe..656b5e7e5b 100644 --- a/lib/public/idbconnection.php +++ b/lib/public/idbconnection.php @@ -45,7 +45,7 @@ interface IDBConnection { /** * Used to get the id of the just inserted element - * @param string $tableName the name of the table where we inserted the item + * @param string $table the name of the table where we inserted the item * @return int the id of the inserted element */ public function lastInsertId($table = null); diff --git a/lib/public/share.php b/lib/public/share.php index 01bf61a60a..003a91a93b 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -256,7 +256,7 @@ class Share { /** * Get the item of item type shared with the current user * @param string $itemType - * @param string $ItemTarget + * @param string $itemTarget * @param int $format (optional) Format type must be defined by the backend * @return Return depends on format */ @@ -268,8 +268,8 @@ class Share { /** * Get the item of item type shared with a given user by source - * @param string $ItemType - * @param string $ItemSource + * @param string $itemType + * @param string $itemSource * @param string $user User user to whom the item was shared * @return array Return list of items with file_target, permissions and expiration */ From 4dc35909b5ae83d1dd8af9b930658e1e1662e024 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Mon, 25 Nov 2013 17:04:19 +0100 Subject: [PATCH 81/84] Fix navbar issue fixes #6024 --- core/css/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/styles.css b/core/css/styles.css index 938b522a90..5c0aa1fedc 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -561,7 +561,7 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } /* NAVIGATION ------------------------------------------------------------- */ #navigation { - position: absolute; + position: fixed; top: 0; bottom: 0; left: 0; From fc1d897ea5d0b6f702f3c649637f5a83693d1ac3 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 25 Nov 2013 17:28:01 +0100 Subject: [PATCH 82/84] rename app_id to app-id --- core/command/app/disable.php | 4 ++-- core/command/app/enable.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/command/app/disable.php b/core/command/app/disable.php index fc95739d99..dcdee92349 100644 --- a/core/command/app/disable.php +++ b/core/command/app/disable.php @@ -19,14 +19,14 @@ class Disable extends Command { ->setName('app:disable') ->setDescription('disable an app') ->addArgument( - 'app_id', + 'app-id', InputArgument::REQUIRED, 'disable the specified app' ); } protected function execute(InputInterface $input, OutputInterface $output) { - $appId = $input->getArgument('app_id'); + $appId = $input->getArgument('app-id'); if (\OC_App::isEnabled($appId)) { \OC_App::disable($appId); $output->writeln($appId . ' disabled'); diff --git a/core/command/app/enable.php b/core/command/app/enable.php index 20cb55c4aa..f08546602e 100644 --- a/core/command/app/enable.php +++ b/core/command/app/enable.php @@ -19,14 +19,14 @@ class Enable extends Command { ->setName('app:enable') ->setDescription('enable an app') ->addArgument( - 'app_id', + 'app-id', InputArgument::REQUIRED, 'enable the specified app' ); } protected function execute(InputInterface $input, OutputInterface $output) { - $appId = $input->getArgument('app_id'); + $appId = $input->getArgument('app-id'); if (\OC_App::isEnabled($appId)) { $output->writeln($appId . ' is already enabled'); } else if (!\OC_App::getAppPath($appId)) { From abe63bd329e1180173e249f6edbe440a289d809f Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 25 Nov 2013 17:34:16 +0100 Subject: [PATCH 83/84] Add occ command to list all apps --- core/command/app/listapps.php | 47 +++++++++++++++++++++++++++++++++++ core/register_command.php | 1 + 2 files changed, 48 insertions(+) create mode 100644 core/command/app/listapps.php diff --git a/core/command/app/listapps.php b/core/command/app/listapps.php new file mode 100644 index 0000000000..dc471c5453 --- /dev/null +++ b/core/command/app/listapps.php @@ -0,0 +1,47 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Core\Command\App; + +use Symfony\Component\Console\Command\Command; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\OutputInterface; + +class ListApps extends Command { + protected function configure() { + $this + ->setName('app:list') + ->setDescription('List all available apps'); + } + + protected function execute(InputInterface $input, OutputInterface $output) { + $apps = \OC_App::getAllApps(); + $enabledApps = array(); + $disabledApps = array(); + + //sort enabled apps above disabled apps + foreach ($apps as $app) { + if (\OC_App::isEnabled($app)) { + $enabledApps[] = $app; + } else { + $disabledApps[] = $app; + } + } + + sort($enabledApps); + sort($disabledApps); + $output->writeln('Enabled:'); + foreach ($enabledApps as $app) { + $output->writeln(' - ' . $app); + } + $output->writeln('Disabled:'); + foreach ($disabledApps as $app) { + $output->writeln(' - ' . $app); + } + } +} diff --git a/core/register_command.php b/core/register_command.php index 9ca2a8660b..144dcd3dc5 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -12,3 +12,4 @@ $application->add(new OC\Core\Command\Db\GenerateChangeScript()); $application->add(new OC\Core\Command\Upgrade()); $application->add(new OC\Core\Command\App\Disable()); $application->add(new OC\Core\Command\App\Enable()); +$application->add(new OC\Core\Command\App\ListApps()); From 944d4156bf94d31c19784231432ae628b9bda1fe Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 25 Nov 2013 18:44:34 +0100 Subject: [PATCH 84/84] Fixed FTP storage unit tests to use the correct class --- apps/files_external/tests/ftp.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/files_external/tests/ftp.php b/apps/files_external/tests/ftp.php index e146725473..94ed5630d9 100644 --- a/apps/files_external/tests/ftp.php +++ b/apps/files_external/tests/ftp.php @@ -34,19 +34,19 @@ class FTP extends Storage { 'password' => 'ftp', 'root' => '/', 'secure' => false ); - $instance = new OC_Filestorage_FTP($config); + $instance = new \OC\Files\Storage\FTP($config); $this->assertEquals('ftp://ftp:ftp@localhost/', $instance->constructUrl('')); $config['secure'] = true; - $instance = new OC_Filestorage_FTP($config); + $instance = new \OC\Files\Storage\FTP($config); $this->assertEquals('ftps://ftp:ftp@localhost/', $instance->constructUrl('')); $config['secure'] = 'false'; - $instance = new OC_Filestorage_FTP($config); + $instance = new \OC\Files\Storage\FTP($config); $this->assertEquals('ftp://ftp:ftp@localhost/', $instance->constructUrl('')); $config['secure'] = 'true'; - $instance = new OC_Filestorage_FTP($config); + $instance = new \OC\Files\Storage\FTP($config); $this->assertEquals('ftps://ftp:ftp@localhost/', $instance->constructUrl('')); } }