diff options
528 files changed, 18954 insertions, 11155 deletions
diff --git a/.gitignore b/.gitignore index e61ec6f0359..b24edc91282 100644 --- a/.gitignore +++ b/.gitignore @@ -86,6 +86,11 @@ nbproject # Node Modules /build/node_modules/ +# nodejs +/build/lib/ +/npm-debug.log + + # Tests - auto-generated files /data-autotest /tests/coverage* diff --git a/apps/files/ajax/download.php b/apps/files/ajax/download.php index 1f7e42e0d3e..4b4a7f8948d 100644 --- a/apps/files/ajax/download.php +++ b/apps/files/ajax/download.php @@ -21,12 +21,6 @@ * */ -// only need filesystem apps -$RUNTIME_APPTYPES=array('filesystem'); - -// Init owncloud - - // Check if we are a user OCP\User::checkLoggedIn(); \OC::$session->close(); diff --git a/apps/files/ajax/getstoragestats.php b/apps/files/ajax/getstoragestats.php index 17415b6933f..dd8af39bada 100644 --- a/apps/files/ajax/getstoragestats.php +++ b/apps/files/ajax/getstoragestats.php @@ -1,8 +1,5 @@ <?php -// only need filesystem apps -$RUNTIME_APPTYPES = array('filesystem'); - $dir = '/'; if (isset($_GET['dir'])) { diff --git a/apps/files/ajax/list.php b/apps/files/ajax/list.php index 667209599a0..3bb35579d5f 100644 --- a/apps/files/ajax/list.php +++ b/apps/files/ajax/list.php @@ -1,11 +1,5 @@ <?php -// only need filesystem apps -$RUNTIME_APPTYPES=array('filesystem'); - -// Init owncloud - - OCP\JSON::checkLoggedIn(); \OC::$session->close(); diff --git a/apps/files/ajax/rawlist.php b/apps/files/ajax/rawlist.php index 6c2569e2ebb..f18bbffb74a 100644 --- a/apps/files/ajax/rawlist.php +++ b/apps/files/ajax/rawlist.php @@ -1,8 +1,5 @@ <?php -// only need filesystem apps -$RUNTIME_APPTYPES = array('filesystem'); - OCP\JSON::checkLoggedIn(); \OC::$session->close(); diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 37c600e91da..4ed51c52775 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -58,7 +58,10 @@ if (empty($_POST['dirToken'])) { OCP\JSON::callCheck(); -\OC::$session->close(); +if (!\OCP\App::isEnabled('files_encryption')) { + // encryption app need to create keys later, so can't close too early + \OC::$session->close(); +} // get array with current storage stats (e.g. max file size) diff --git a/apps/files/appinfo/app.php b/apps/files/appinfo/app.php index 909baca92ea..15a29133789 100644 --- a/apps/files/appinfo/app.php +++ b/apps/files/appinfo/app.php @@ -12,13 +12,6 @@ OCP\App::addNavigationEntry(array("id" => "files_index", OC_Search::registerProvider('OC_Search_Provider_File'); -// cache hooks must be connected before all other apps. -// since 'files' is always loaded first the hooks need to be connected here -\OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Updater', 'writeHook'); -\OC_Hook::connect('OC_Filesystem', 'post_touch', '\OC\Files\Cache\Updater', 'touchHook'); -\OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Updater', 'deleteHook'); -\OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook'); - \OCP\BackgroundJob::addRegularTask('\OC\Files\Cache\BackgroundWatcher', 'checkNext'); $templateManager = OC_Helper::getFileTemplateManager(); diff --git a/apps/files/appinfo/remote.php b/apps/files/appinfo/remote.php index 826f72fb0e6..a8acfdb6e6e 100644 --- a/apps/files/appinfo/remote.php +++ b/apps/files/appinfo/remote.php @@ -22,12 +22,6 @@ * License along with this library. If not, see <http://www.gnu.org/licenses/>. * */ -// load needed apps -$RUNTIME_APPTYPES = array('filesystem', 'authentication', 'logging'); - -OC_App::loadApps($RUNTIME_APPTYPES); - -OC_Util::obEnd(); // Backends $authBackend = new OC_Connector_Sabre_Auth(); diff --git a/apps/files/command/scan.php b/apps/files/command/scan.php index f334f29a939..25ab70af362 100644 --- a/apps/files/command/scan.php +++ b/apps/files/command/scan.php @@ -58,7 +58,6 @@ class Scan extends Command { protected function execute(InputInterface $input, OutputInterface $output) { if ($input->getOption('all')) { - \OC_App::loadApps('authentication'); $users = $this->userManager->search(''); } else { $users = $input->getArgument('user_id'); diff --git a/apps/files/css/files.css b/apps/files/css/files.css index af863aca33e..1bac5d2b7db 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -77,10 +77,10 @@ } /* make sure there's enough room for the file actions */ #body-user #filestable { - min-width: 750px; + min-width: 688px; /* 768 (mobile break) - 80 (nav width) */ } #body-user #controls { - min-width: 600px; + min-width: 688px; /* 768 (mobile break) - 80 (nav width) */ } #filestable tbody tr { background-color:#fff; height:40px; } diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css new file mode 100644 index 00000000000..3ad7d634838 --- /dev/null +++ b/apps/files/css/mobile.css @@ -0,0 +1,68 @@ +@media only screen and (max-width: 768px) { + +/* don’t require a minimum width for files table */ +#body-user #filestable { + min-width: initial !important; +} + +/* do not show Deleted Files on mobile, not optimized yet and button too long */ +#controls #trash { + display: none; +} + +/* hide size and date columns */ +table th#headerSize, +table td.filesize, +table th#headerDate, +table td.date { + display: none; +} + +/* remove shift for multiselect bar to account for missing navigation */ +table.multiselect thead { + padding-left: 0; +} + +/* restrict length of displayed filename to prevent overflow */ +table td.filename .nametext { + max-width: 75% !important; +} + +/* always show actions on mobile, not only on hover */ +#fileList a.action { + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)" !important; + filter: alpha(opacity=20) !important; + opacity: .2 !important; + display: inline !important; +} +/* do not show Rename or Versions on mobile */ +#fileList .action.action-rename, +#fileList .action.action-versions { + display: none !important; +} +/* some padding for better clickability */ +#fileList a.action img { + padding: 0 6px 0 12px; +} +/* hide text of the actions on mobile */ +#fileList a.action span { + display: none; +} + +/* ellipsis on file names */ +.nametext { + width: 60%; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + +/* proper notification area for multi line messages */ +#notification-container { + display: -webkit-box; + display: -moz-box; + display: -ms-flexbox; + display: -webkit-flex; + display: flex; +} +} diff --git a/apps/files/index.php b/apps/files/index.php index c66cd40fb56..73601d26217 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -27,6 +27,7 @@ OCP\User::checkLoggedIn(); // Load the files we need OCP\Util::addStyle('files', 'files'); OCP\Util::addStyle('files', 'upload'); +OCP\Util::addStyle('files', 'mobile'); OCP\Util::addscript('files', 'file-upload'); OCP\Util::addscript('files', 'jquery.iframe-transport'); OCP\Util::addscript('files', 'jquery.fileupload'); diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 9a69d7b3688..a7d1fa9d8a2 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -15,21 +15,33 @@ var FileActions = { defaults: {}, icons: {}, currentFile: null, - register: function (mime, name, permissions, icon, action) { + register: function (mime, name, permissions, icon, action, displayName) { if (!FileActions.actions[mime]) { FileActions.actions[mime] = {}; } if (!FileActions.actions[mime][name]) { FileActions.actions[mime][name] = {}; } + if (!displayName) { + displayName = t('files', name); + } FileActions.actions[mime][name]['action'] = action; FileActions.actions[mime][name]['permissions'] = permissions; + FileActions.actions[mime][name]['displayName'] = displayName; FileActions.icons[name] = icon; }, setDefault: function (mime, name) { FileActions.defaults[mime] = name; }, get: function (mime, type, permissions) { + var actions = this.getActions(mime, type, permissions); + var filteredActions = {}; + $.each(actions, function (name, action) { + filteredActions[name] = action.action; + }); + return filteredActions; + }, + getActions: function (mime, type, permissions) { var actions = {}; if (FileActions.actions.all) { actions = $.extend(actions, FileActions.actions.all); @@ -51,7 +63,7 @@ var FileActions = { var filteredActions = {}; $.each(actions, function (name, action) { if (action.permissions & permissions) { - filteredActions[name] = action.action; + filteredActions[name] = action; } }); return filteredActions; @@ -82,7 +94,7 @@ var FileActions = { */ display: function (parent, triggerEvent) { FileActions.currentFile = parent; - var actions = FileActions.get(FileActions.getCurrentMimeType(), FileActions.getCurrentType(), FileActions.getCurrentPermissions()); + var actions = FileActions.getActions(FileActions.getCurrentMimeType(), FileActions.getCurrentType(), FileActions.getCurrentPermissions()); var file = FileActions.getCurrentFile(); var nameLinks; if (FileList.findFileEl(file).data('renaming')) { @@ -105,15 +117,16 @@ var FileActions = { event.data.actionFunc(file); }; - var addAction = function (name, action) { + var addAction = function (name, action, displayName) { // NOTE: Temporary fix to prevent rename action in root of Shared directory if (name === 'Rename' && $('#dir').val() === '/Shared') { return true; } if ((name === 'Download' || action !== defaultAction) && name !== 'Delete') { + var img = FileActions.icons[name], - actionText = t('files', name), + actionText = displayName, actionContainer = 'a.name>span.fileactions'; if (name === 'Rename') { @@ -125,7 +138,7 @@ var FileActions = { if (img.call) { img = img(file); } - var html = '<a href="#" class="action" data-action="' + name + '">'; + var html = '<a href="#" class="action action-' + name.toLowerCase() + '" data-action="' + name + '">'; if (img) { html += '<img class ="svg" src="' + img + '" />'; } @@ -133,8 +146,7 @@ var FileActions = { var element = $(html); element.data('action', name); - //alert(element); - element.on('click', {a: null, elem: parent, actionFunc: actions[name]}, actionHandler); + element.on('click', {a: null, elem: parent, actionFunc: actions[name].action}, actionHandler); parent.find(actionContainer).append(element); } @@ -142,12 +154,15 @@ var FileActions = { $.each(actions, function (name, action) { if (name !== 'Share') { - addAction(name, action); + displayName = action.displayName; + ah = action.action; + + addAction(name, ah, displayName); } }); if(actions.Share && !($('#dir').val() === '/' && file === 'Shared')){ - // t('files', 'Share') - addAction('Share', actions.Share); + displayName = t('files', 'Share'); + addAction('Share', actions.Share, displayName); } // remove the existing delete action diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 503bf681139..cda4e823a73 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -71,7 +71,7 @@ window.FileList={ }); // filename td td = $('<td></td>').attr({ - "class": "filename", + "class": "filename svg", "style": 'background-image:url('+iconurl+'); background-size: 32px;' }); var rand = Math.random().toString(16).slice(2); diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 1186a72a44f..1137364db4a 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -196,11 +196,14 @@ var Files = { if (width !== Files.lastWidth) { if ((width < Files.lastWidth || firstRun) && width < Files.breadcrumbsWidth) { if (Files.hiddenBreadcrumbs === 0) { - Files.breadcrumbsWidth -= $(Files.breadcrumbs[1]).get(0).offsetWidth; - $(Files.breadcrumbs[1]).find('a').hide(); - $(Files.breadcrumbs[1]).append('<span>...</span>'); - Files.breadcrumbsWidth += $(Files.breadcrumbs[1]).get(0).offsetWidth; - Files.hiddenBreadcrumbs = 2; + bc = $(Files.breadcrumbs[1]).get(0); + if (typeof bc != 'undefined') { + Files.breadcrumbsWidth -= bc.offsetWidth; + $(Files.breadcrumbs[1]).find('a').hide(); + $(Files.breadcrumbs[1]).append('<span>...</span>'); + Files.breadcrumbsWidth += bc.offsetWidth; + Files.hiddenBreadcrumbs = 2; + } } var i = Files.hiddenBreadcrumbs; while (width < Files.breadcrumbsWidth && i > 1 && i < Files.breadcrumbs.length - 1) { diff --git a/apps/files/l10n/am_ET.php b/apps/files/l10n/am_ET.php new file mode 100644 index 00000000000..0157af093e9 --- /dev/null +++ b/apps/files/l10n/am_ET.php @@ -0,0 +1,7 @@ +<?php +$TRANSLATIONS = array( +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 2c0335f3cc3..ac958e5dfd3 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -3,7 +3,9 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Невозможно переместить %s - файл с таким именем уже существует", "Could not move %s" => "Невозможно переместить %s", "File name cannot be empty." => "Имя файла не может быть пустым.", +"\"%s\" is an invalid file name." => "\"%s\" это не правильное имя файла.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неправильное имя: символы '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы.", +"The target folder has been moved or deleted." => "Целевой каталог был перемещен или удален.", "The name %s is already used in the folder %s. Please choose a different name." => "Имя %s уже используется для каталога %s. Пожалуйста, выберите другое имя.", "Not a valid source" => "Неправильный источник", "Server is not allowed to open URLs, please check the server configuration" => "Сервер не позволяет открывать URL-адреса, пожалуйста, проверьте настройки сервера", @@ -27,6 +29,8 @@ $TRANSLATIONS = array( "Invalid directory." => "Неверный каталог.", "Files" => "Файлы", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Невозможно загрузить {filename}, так как это либо каталог, либо файл нулевого размера", +"Total file size {size1} exceeds upload limit {size2}" => "Полный размер файла {size1} превышает лимит по загрузке {size2}", +"Not enough free space, you are uploading {size1} but only {size2} is left" => "Не достаточно свободного места, Вы загружаете {size1} но осталось только {size2}", "Upload cancelled." => "Загрузка отменена.", "Could not get result from server." => "Не удалось получить ответ от сервера.", "File upload is in progress. Leaving the page now will cancel the upload." => "Идёт загрузка файла. Покинув страницу, вы прервёте загрузку.", @@ -48,6 +52,7 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n файл","%n файла","%n файлов"), "{dirs} and {files}" => "{dirs} и {files}", "_Uploading %n file_::_Uploading %n files_" => array("Закачка %n файла","Закачка %n файлов","Закачка %n файлов"), +"\"{name}\" is an invalid file name." => "\"{name}\" это не правильное имя файла.", "Your storage is full, files can not be updated or synced anymore!" => "Ваше хранилище заполнено, произведите очистку перед загрузкой новых файлов.", "Your storage is almost full ({usedSpacePercent}%)" => "Ваше хранилище почти заполнено ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Приложение для шифрования активно, но ваши ключи не инициализированы, пожалуйста, перелогиньтесь", diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 5b0bad7f341..34acd9c4f51 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -5,15 +5,15 @@ <div id="new" class="button"> <a><?php p($l->t('New'));?></a> <ul> - <li class="icon-filetype-text" + <li class="icon-filetype-text svg" data-type="file" data-newname="<?php p($l->t('New text file')) ?>.txt"> <p><?php p($l->t('Text file'));?></p> </li> - <li class="icon-filetype-folder" + <li class="icon-filetype-folder svg" data-type="folder" data-newname="<?php p($l->t('New folder')) ?>"> <p><?php p($l->t('Folder'));?></p> </li> - <li class="icon-link" data-type="web"> + <li class="icon-link svg" data-type="web"> <p><?php p($l->t('From link'));?></p> </li> </ul> diff --git a/apps/files/templates/part.breadcrumb.php b/apps/files/templates/part.breadcrumb.php index 2a0df622767..69b4cbca10d 100644 --- a/apps/files/templates/part.breadcrumb.php +++ b/apps/files/templates/part.breadcrumb.php @@ -1,4 +1,4 @@ -<div class="crumb <?php if(!count($_["breadcrumb"])) p('last');?>" data-dir=''> +<div class="crumb svg <?php if(!count($_["breadcrumb"])) p('last');?>" data-dir=''> <a href="<?php print_unescaped($_['baseURL']); ?>"> <?php if(isset($_['rootBreadCrumb'])): echo $_['rootBreadCrumb']; diff --git a/apps/files_encryption/appinfo/info.xml b/apps/files_encryption/appinfo/info.xml index ab47de828b9..15a09a29f51 100644 --- a/apps/files_encryption/appinfo/info.xml +++ b/apps/files_encryption/appinfo/info.xml @@ -2,7 +2,7 @@ <info> <id>files_encryption</id> <name>Encryption</name> - <description>The ownCloud files encryption system provides server side-encryption. After the app was enabled you need to re-login to initialize your encryption keys. Please note that server side encryption requires that the ownCloud server admin can be trusted. The main purpose of this app is the encryption of files that are stored on externally mounted storages.</description> + <description>The ownCloud files encryption system provides server side-encryption. After the app is enabled you need to re-login to initialize your encryption keys. Please note that server side encryption requires that the ownCloud server admin can be trusted. The main purpose of this app is the encryption of files that are stored on externally mounted storages.</description> <licence>AGPL</licence> <author>Sam Tuke, Bjoern Schiessle, Florin Peter</author> <require>4</require> diff --git a/apps/files_encryption/l10n/cs_CZ.php b/apps/files_encryption/l10n/cs_CZ.php index 18848978a8a..cdeaf5b192b 100644 --- a/apps/files_encryption/l10n/cs_CZ.php +++ b/apps/files_encryption/l10n/cs_CZ.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "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." => "Ujistěte se prosím, že máte nainstalované PHP 5.3.3 nebo novější a že máte povolené a správně nakonfigurované OpenSSL včetně jeho rozšíření pro PHP. Prozatím byla aplikace pro šifrování vypnuta.", "Following users are not set up for encryption:" => "Následující uživatelé nemají nastavené šifrování:", "Initial encryption started... This can take some time. Please wait." => "Počáteční šifrování zahájeno... Toto může chvíli trvat. Počkejte prosím.", +"Initial encryption running... Please try again later." => "Probíhá počáteční šifrování... Zkuste to prosím znovu později.", "Go directly to your " => "Běžte přímo do vašeho", "personal settings" => "osobní nastavení", "Encryption" => "Šifrování", diff --git a/apps/files_encryption/l10n/ru.php b/apps/files_encryption/l10n/ru.php index bce245ce680..ba984868932 100644 --- a/apps/files_encryption/l10n/ru.php +++ b/apps/files_encryption/l10n/ru.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "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 включены и правильно настроены. На данный момент приложение шифрования отключено.", "Following users are not set up for encryption:" => "Для следующих пользователей шифрование не настроено:", "Initial encryption started... This can take some time. Please wait." => "Начато начальное шифрование... Это может занять какое-то время. Пожалуйста, подождите.", +"Initial encryption running... Please try again later." => "Работает первоначальное шифрование... Пожалуйста, повторите попытку позже.", "Go directly to your " => "Перейти прямо в", "personal settings" => "персональные настройки", "Encryption" => "Шифрование", diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index bae1fded53d..6549273c8f1 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -128,6 +128,8 @@ class Proxy extends \OC_FileProxy { // re-enable proxy - our work is done \OC_FileProxy::$enabled = $proxyStatus; + } else { + return false; } } } diff --git a/apps/files_external/3rdparty/smb4php/smb.php b/apps/files_external/3rdparty/smb4php/smb.php index 656930514f0..e325506fa14 100644 --- a/apps/files_external/3rdparty/smb4php/smb.php +++ b/apps/files_external/3rdparty/smb4php/smb.php @@ -8,6 +8,8 @@ # Homepage: http://www.phpclasses.org/smb4php # # Copyright (c) 2007 Victor M. Varela <vmvarela@gmail.com> +# Copyright (c) 2012 Frank Karlitschek <frank@owncloud.org> +# Copyright (c) 2014 Robin McCorkell <rmccorkell@karoshi.org.uk> # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -19,8 +21,6 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # -# Addition 17/12/2012 Frank Karlitschek (frank@owncloud.org) -# Addition 17/03/2014 Robin McCorkell (rmccorkell@karoshi.org.uk) # On the official website http://www.phpclasses.org/smb4php the # license is listed as LGPL so we assume that this is # dual-licensed GPL/LGPL @@ -44,6 +44,42 @@ $GLOBALS['__smb_cache'] = array ('stat' => array (), 'dir' => array ()); class smb { + private static $regexp = array ( + '^added interface ip=(.*) bcast=(.*) nmask=(.*)$' => 'skip', + 'Anonymous login successful' => 'skip', + '^Domain=\[(.*)\] OS=\[(.*)\] Server=\[(.*)\]$' => 'skip', + '^\tSharename[ ]+Type[ ]+Comment$' => 'shares', + '^\t---------[ ]+----[ ]+-------$' => 'skip', + '^\tServer [ ]+Comment$' => 'servers', + '^\t---------[ ]+-------$' => 'skip', + '^\tWorkgroup[ ]+Master$' => 'workg', + '^\t(.*)[ ]+(Disk|IPC)[ ]+IPC.*$' => 'skip', + '^\tIPC\\\$(.*)[ ]+IPC' => 'skip', + '^\t(.*)[ ]+(Disk)[ ]+(.*)$' => 'share', + '^\t(.*)[ ]+(Printer)[ ]+(.*)$' => 'skip', + '([0-9]+) blocks of size ([0-9]+)\. ([0-9]+) blocks available' => 'skip', + 'Got a positive name query response from ' => 'skip', + '^(session setup failed): (.*)$' => 'error', + '^(.*): ERRSRV - ERRbadpw' => 'error', + '^Error returning browse list: (.*)$' => 'error', + '^tree connect failed: (.*)$' => 'error', + '^(Connection to .* failed)(.*)$' => 'error-connect', + '^NT_STATUS_(.*) ' => 'error', + '^NT_STATUS_(.*)\$' => 'error', + 'ERRDOS - ERRbadpath \((.*).\)' => 'error', + 'cd (.*): (.*)$' => 'error', + '^cd (.*): NT_STATUS_(.*)' => 'error', + '^\t(.*)$' => 'srvorwg', + '^([0-9]+)[ ]+([0-9]+)[ ]+(.*)$' => 'skip', + '^Job ([0-9]+) cancelled' => 'skip', + '^[ ]+(.*)[ ]+([0-9]+)[ ]+(Mon|Tue|Wed|Thu|Fri|Sat|Sun)[ ](Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)[ ]+([0-9]+)[ ]+([0-9]{2}:[0-9]{2}:[0-9]{2})[ ]([0-9]{4})$' => 'files', + '^message start: ERRSRV - (ERRmsgoff)' => 'error' + ); + + function getRegexp() { + return self::$regexp; + } + function parse_url ($url) { $pu = parse_url (trim($url)); foreach (array ('domain', 'user', 'pass', 'host', 'port', 'path') as $i) { @@ -75,46 +111,16 @@ class smb { } - function execute ($command, $purl) { + function execute ($command, $purl, $regexp = NULL) { return smb::client ('-d 0 ' . escapeshellarg ('//' . $purl['host'] . '/' . $purl['share']) - . ' -c ' . escapeshellarg ($command), $purl + . ' -c ' . escapeshellarg ($command), $purl, $regexp ); } - function client ($params, $purl) { - - static $regexp = array ( - '^added interface ip=(.*) bcast=(.*) nmask=(.*)$' => 'skip', - 'Anonymous login successful' => 'skip', - '^Domain=\[(.*)\] OS=\[(.*)\] Server=\[(.*)\]$' => 'skip', - '^\tSharename[ ]+Type[ ]+Comment$' => 'shares', - '^\t---------[ ]+----[ ]+-------$' => 'skip', - '^\tServer [ ]+Comment$' => 'servers', - '^\t---------[ ]+-------$' => 'skip', - '^\tWorkgroup[ ]+Master$' => 'workg', - '^\t(.*)[ ]+(Disk|IPC)[ ]+IPC.*$' => 'skip', - '^\tIPC\\\$(.*)[ ]+IPC' => 'skip', - '^\t(.*)[ ]+(Disk)[ ]+(.*)$' => 'share', - '^\t(.*)[ ]+(Printer)[ ]+(.*)$' => 'skip', - '([0-9]+) blocks of size ([0-9]+)\. ([0-9]+) blocks available' => 'skip', - 'Got a positive name query response from ' => 'skip', - '^(session setup failed): (.*)$' => 'error', - '^(.*): ERRSRV - ERRbadpw' => 'error', - '^Error returning browse list: (.*)$' => 'error', - '^tree connect failed: (.*)$' => 'error', - '^(Connection to .* failed)(.*)$' => 'error-connect', - '^NT_STATUS_(.*) ' => 'error', - '^NT_STATUS_(.*)\$' => 'error', - 'ERRDOS - ERRbadpath \((.*).\)' => 'error', - 'cd (.*): (.*)$' => 'error', - '^cd (.*): NT_STATUS_(.*)' => 'error', - '^\t(.*)$' => 'srvorwg', - '^([0-9]+)[ ]+([0-9]+)[ ]+(.*)$' => 'skip', - '^Job ([0-9]+) cancelled' => 'skip', - '^[ ]+(.*)[ ]+([0-9]+)[ ]+(Mon|Tue|Wed|Thu|Fri|Sat|Sun)[ ](Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)[ ]+([0-9]+)[ ]+([0-9]{2}:[0-9]{2}:[0-9]{2})[ ]([0-9]{4})$' => 'files', - '^message start: ERRSRV - (ERRmsgoff)' => 'error' - ); + function client ($params, $purl, $regexp = NULL) { + + if ($regexp === NULL) $regexp = smb::$regexp; if (SMB4PHP_AUTHMODE == 'env') { putenv("USER={$purl['user']}%{$purl['pass']}"); diff --git a/apps/files_external/appinfo/app.php b/apps/files_external/appinfo/app.php index 0e83660f845..aeb7a2cb23a 100644 --- a/apps/files_external/appinfo/app.php +++ b/apps/files_external/appinfo/app.php @@ -1,6 +1,7 @@ <?php /** * Copyright (c) 2012 Robin Appelman <icewind@owncloud.com> + * Copyright (c) 2014 Robin McCorkell <rmccorkell@karoshi.org.uk> * This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. @@ -13,6 +14,7 @@ OC::$CLASSPATH['OC\Files\Storage\OwnCloud'] = 'files_external/lib/owncloud.php'; OC::$CLASSPATH['OC\Files\Storage\Google'] = 'files_external/lib/google.php'; OC::$CLASSPATH['OC\Files\Storage\Swift'] = 'files_external/lib/swift.php'; OC::$CLASSPATH['OC\Files\Storage\SMB'] = 'files_external/lib/smb.php'; +OC::$CLASSPATH['OC\Files\Storage\SMB_OC'] = 'files_external/lib/smb_oc.php'; OC::$CLASSPATH['OC\Files\Storage\AmazonS3'] = 'files_external/lib/amazons3.php'; OC::$CLASSPATH['OC\Files\Storage\Dropbox'] = 'files_external/lib/dropbox.php'; OC::$CLASSPATH['OC\Files\Storage\SFTP'] = 'files_external/lib/sftp.php'; @@ -27,4 +29,5 @@ if (OCP\Config::getAppValue('files_external', 'allow_user_mounting', 'yes') == ' // connecting hooks OCP\Util::connectHook('OC_Filesystem', 'post_initMountPoints', '\OC_Mount_Config', 'initMountPointsHook'); OCP\Util::connectHook('OC_User', 'post_login', 'OC\Files\Storage\iRODS', 'login'); +OCP\Util::connectHook('OC_User', 'post_login', 'OC\Files\Storage\SMB_OC', 'login'); diff --git a/apps/files_external/css/settings.css b/apps/files_external/css/settings.css index 11aeb10184b..1d3489f7f57 100644 --- a/apps/files_external/css/settings.css +++ b/apps/files_external/css/settings.css @@ -4,13 +4,6 @@ td.status > span { width: 16px; vertical-align: text-bottom; } -span.success { - background: #37ce02; - border-radius: 8px; -} -span.error { - background: #ce3702; -} td.mountPoint, td.backend { width:160px; } td.remove>img { visibility:hidden; padding-top:13px; } diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index cd2a3103eb7..00793a614c2 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -181,16 +181,21 @@ $(document).ready(function() { $.each(configurations, function(backend, parameters) { if (backend == backendClass) { $.each(parameters['configuration'], function(parameter, placeholder) { - if (placeholder.indexOf('*') != -1) { - td.append('<input type="password" data-parameter="'+parameter+'" placeholder="'+placeholder.substring(1)+'" />'); - } else if (placeholder.indexOf('!') != -1) { + var is_optional = false; + if (placeholder.indexOf('&') === 0) { + is_optional = true; + placeholder = placeholder.substring(1); + } + if (placeholder.indexOf('*') === 0) { + var class_string = is_optional ? ' class="optional"' : ''; + td.append('<input type="password"' + class_string + ' data-parameter="'+parameter+'" placeholder="'+placeholder.substring(1)+'" />'); + } else if (placeholder.indexOf('!') === 0) { td.append('<label><input type="checkbox" data-parameter="'+parameter+'" />'+placeholder.substring(1)+'</label>'); - } else if (placeholder.indexOf('&') != -1) { - td.append('<input type="text" class="optional" data-parameter="'+parameter+'" placeholder="'+placeholder.substring(1)+'" />'); - } else if (placeholder.indexOf('#') != -1) { + } else if (placeholder.indexOf('#') === 0) { td.append('<input type="hidden" data-parameter="'+parameter+'" />'); } else { - td.append('<input type="text" data-parameter="'+parameter+'" placeholder="'+placeholder+'" />'); + var class_string = is_optional ? ' class="optional"' : ''; + td.append('<input type="text"' + class_string + ' data-parameter="'+parameter+'" placeholder="'+placeholder+'" />'); } }); if (parameters['custom'] && $('#externalStorage tbody tr.'+backendClass.replace(/\\/g, '\\\\')).length == 1) { diff --git a/apps/files_external/l10n/cs_CZ.php b/apps/files_external/l10n/cs_CZ.php index 2f7bbd0c4a3..1b92e35c456 100644 --- a/apps/files_external/l10n/cs_CZ.php +++ b/apps/files_external/l10n/cs_CZ.php @@ -22,7 +22,7 @@ $TRANSLATIONS = array( "Users" => "Uživatelé", "Delete" => "Smazat", "Enable User External Storage" => "Zapnout externí uživatelské úložiště", -"Allow users to mount the following external storage" => "Povolit uživatelů připojit externí úložiště", +"Allow users to mount the following external storage" => "Povolit uživatelů připojit následující externí úložiště", "SSL root certificates" => "Kořenové certifikáty SSL", "Import Root Certificate" => "Importovat kořenového certifikátu" ); diff --git a/apps/files_external/l10n/pt_PT.php b/apps/files_external/l10n/pt_PT.php index e331d55726b..eb4d8feb41a 100644 --- a/apps/files_external/l10n/pt_PT.php +++ b/apps/files_external/l10n/pt_PT.php @@ -22,6 +22,7 @@ $TRANSLATIONS = array( "Users" => "Utilizadores", "Delete" => "Eliminar", "Enable User External Storage" => "Activar Armazenamento Externo para o Utilizador", +"Allow users to mount the following external storage" => "Permitir que os utilizadores montem o seguinte armazenamento externo", "SSL root certificates" => "Certificados SSL de raiz", "Import Root Certificate" => "Importar Certificado Root" ); diff --git a/apps/files_external/l10n/ru.php b/apps/files_external/l10n/ru.php index 66d6f9fa6b8..8ed437839cd 100644 --- a/apps/files_external/l10n/ru.php +++ b/apps/files_external/l10n/ru.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Grant access" => "Предоставление доступа", "Please provide a valid Dropbox app key and secret." => "Пожалуйста, предоставьте действующий ключ Dropbox и пароль.", "Error configuring Google Drive storage" => "Ошибка при настройке хранилища Google Drive", +"Saved" => "Сохранено", "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Внимание:</b> \"smbclient\" не установлен. Подключение по CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его.", "<b>Warning:</b> 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." => "<b>Внимание:</b> Поддержка FTP не включена в PHP. Подключение по FTP невозможно. Пожалуйста, обратитесь к системному администратору, чтобы включить.", "<b>Warning:</b> The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "<b>Внимание:</b> Поддержка Curl в PHP не включена или не установлена. Подключение ownCloud / WebDAV или GoogleDrive невозможно. Попросите вашего системного администратора установить его.", @@ -21,6 +22,7 @@ $TRANSLATIONS = array( "Users" => "Пользователи", "Delete" => "Удалить", "Enable User External Storage" => "Включить пользовательские внешние носители", +"Allow users to mount the following external storage" => "Разрешить пользователям монтировать следующую внешнюю систему хранения данных", "SSL root certificates" => "Корневые сертификаты SSL", "Import Root Certificate" => "Импортировать корневые сертификаты" ); diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index ffbab7bca80..472c3963d51 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -5,6 +5,7 @@ * @author Michael Gapczynski * @copyright 2012 Michael Gapczynski mtgap@owncloud.com * @copyright 2014 Vincent Petry <pvince81@owncloud.com> +* @copyright 2014 Robin McCorkell <rmccorkell@karoshi.org.uk> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE @@ -122,11 +123,18 @@ class OC_Mount_Config { 'password' => '*Password', 'share' => 'Share', 'root' => '&Root')); + $backends['\OC\Files\Storage\SMB_OC'] = array( + 'backend' => 'SMB / CIFS using OC login', + 'configuration' => array( + 'host' => 'URL', + 'username_as_share' => '!Username as share', + 'share' => '&Share', + 'root' => '&Root')); } } if(OC_Mount_Config::checkcurl()){ - $backends['\OC\Files\Storage\DAV']=array( + $backends['\OC\Files\Storage\DAV']=array( 'backend' => 'WebDAV', 'configuration' => array( 'host' => 'URL', @@ -134,7 +142,7 @@ class OC_Mount_Config { 'password' => '*Password', 'root' => '&Root', 'secure' => '!Secure https://')); - $backends['\OC\Files\Storage\OwnCloud']=array( + $backends['\OC\Files\Storage\OwnCloud']=array( 'backend' => 'ownCloud', 'configuration' => array( 'host' => 'URL', @@ -185,7 +193,7 @@ class OC_Mount_Config { * @return array of mount point string as key, mountpoint config as value */ public static function getAbsoluteMountPoints($user) { - $mountPoints = array(); + $mountPoints = array(); $datadir = \OC_Config::getValue("datadirectory", \OC::$SERVERROOT . "/data"); $mount_file = \OC_Config::getValue("mount_file", $datadir . "/mount.json"); @@ -304,18 +312,23 @@ class OC_Mount_Config { $mount['options'] = self::decryptPasswords($mount['options']); // Remove '/$user/files/' from mount point $mountPoint = substr($mountPoint, 13); - // Merge the mount point into the current mount points - if (isset($system[$mountPoint]) && $system[$mountPoint]['configuration'] == $mount['options']) { - $system[$mountPoint]['applicable']['groups'] - = array_merge($system[$mountPoint]['applicable']['groups'], array($group)); + + $config = array( + 'class' => $mount['class'], + 'mountpoint' => $mountPoint, + 'backend' => $backends[$mount['class']]['backend'], + 'options' => $mount['options'], + 'applicable' => array('groups' => array($group), 'users' => array()), + 'status' => self::getBackendStatus($mount['class'], $mount['options'], false) + ); + $hash = self::makeConfigHash($config); + // If an existing config exists (with same class, mountpoint and options) + if (isset($system[$hash])) { + // add the groups into that config + $system[$hash]['applicable']['groups'] + = array_merge($system[$hash]['applicable']['groups'], array($group)); } else { - $system[$mountPoint] = array( - 'class' => $mount['class'], - 'backend' => $backends[$mount['class']]['backend'], - 'configuration' => $mount['options'], - 'applicable' => array('groups' => array($group), 'users' => array()), - 'status' => self::getBackendStatus($mount['class'], $mount['options']) - ); + $system[$hash] = $config; } } } @@ -330,23 +343,27 @@ class OC_Mount_Config { $mount['options'] = self::decryptPasswords($mount['options']); // Remove '/$user/files/' from mount point $mountPoint = substr($mountPoint, 13); - // Merge the mount point into the current mount points - if (isset($system[$mountPoint]) && $system[$mountPoint]['configuration'] == $mount['options']) { - $system[$mountPoint]['applicable']['users'] - = array_merge($system[$mountPoint]['applicable']['users'], array($user)); + $config = array( + 'class' => $mount['class'], + 'mountpoint' => $mountPoint, + 'backend' => $backends[$mount['class']]['backend'], + 'options' => $mount['options'], + 'applicable' => array('groups' => array(), 'users' => array($user)), + 'status' => self::getBackendStatus($mount['class'], $mount['options'], false) + ); + $hash = self::makeConfigHash($config); + // If an existing config exists (with same class, mountpoint and options) + if (isset($system[$hash])) { + // add the users into that config + $system[$hash]['applicable']['users'] + = array_merge($system[$hash]['applicable']['users'], array($user)); } else { - $system[$mountPoint] = array( - 'class' => $mount['class'], - 'backend' => $backends[$mount['class']]['backend'], - 'configuration' => $mount['options'], - 'applicable' => array('groups' => array(), 'users' => array($user)), - 'status' => self::getBackendStatus($mount['class'], $mount['options']) - ); + $system[$hash] = $config; } } } } - return $system; + return array_values($system); } /** @@ -366,12 +383,13 @@ class OC_Mount_Config { $mount['class'] = '\OC\Files\Storage\\'.substr($mount['class'], 15); } $mount['options'] = self::decryptPasswords($mount['options']); - // Remove '/uid/files/' from mount point - $personal[substr($mountPoint, strlen($uid) + 8)] = array( + $personal[] = array( 'class' => $mount['class'], + // Remove '/uid/files/' from mount point + 'mountpoint' => substr($mountPoint, strlen($uid) + 8), 'backend' => $backends[$mount['class']]['backend'], - 'configuration' => $mount['options'], - 'status' => self::getBackendStatus($mount['class'], $mount['options']) + 'options' => $mount['options'], + 'status' => self::getBackendStatus($mount['class'], $mount['options'], true) ); } } @@ -384,7 +402,7 @@ class OC_Mount_Config { * @param array $options backend configuration options * @return bool true if the connection succeeded, false otherwise */ - private static function getBackendStatus($class, $options) { + private static function getBackendStatus($class, $options, $isPersonal) { if (self::$skipTest) { return true; } @@ -394,7 +412,7 @@ class OC_Mount_Config { if (class_exists($class)) { try { $storage = new $class($options); - return $storage->test(); + return $storage->test($isPersonal); } catch (Exception $exception) { \OCP\Util::logException('files_external', $exception); return false; @@ -461,7 +479,7 @@ class OC_Mount_Config { $mountPoints[$mountType] = $mount; } self::writeData($isPersonal, $mountPoints); - return self::getBackendStatus($class, $classOptions); + return self::getBackendStatus($class, $classOptions, $isPersonal); } /** @@ -538,7 +556,12 @@ class OC_Mount_Config { $datadir = \OC_Config::getValue('datadirectory', \OC::$SERVERROOT . '/data/'); $file = \OC_Config::getValue('mount_file', $datadir . '/mount.json'); } - $content = json_encode($data); + $options = 0; + if (defined('JSON_PRETTY_PRINT')) { + // only for PHP >= 5.4 + $options = JSON_PRETTY_PRINT; + } + $content = json_encode($data, $options); @file_put_contents($file, $content); @chmod($file, 0640); } @@ -707,4 +730,20 @@ class OC_Mount_Config { $cipher->setKey(\OCP\Config::getSystemValue('passwordsalt')); return $cipher; } + + /** + * Computes a hash based on the given configuration. + * This is mostly used to find out whether configurations + * are the same. + */ + private static function makeConfigHash($config) { + $data = json_encode( + array( + 'c' => $config['class'], + 'm' => $config['mountpoint'], + 'o' => $config['options'] + ) + ); + return hash('md5', $data); + } } diff --git a/apps/files_external/lib/smb_oc.php b/apps/files_external/lib/smb_oc.php new file mode 100644 index 00000000000..0c79c06c5df --- /dev/null +++ b/apps/files_external/lib/smb_oc.php @@ -0,0 +1,93 @@ +<?php +/** + * Copyright (c) 2014 Robin McCorkell <rmccorkell@karoshi.org.uk> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Files\Storage; + +require_once __DIR__ . '/../3rdparty/smb4php/smb.php'; + +class SMB_OC extends \OC\Files\Storage\SMB { + private $username_as_share; + + public function __construct($params) { + if (isset($params['host']) && \OC::$session->exists('smb-credentials')) { + $host=$params['host']; + $this->username_as_share = ($params['username_as_share'] === 'true'); + + $params_auth = \OC::$session->get('smb-credentials'); + $user = \OC::$session->get('loginname'); + $password = $params_auth['password']; + + $root=isset($params['root'])?$params['root']:'/'; + $share = ''; + + if ($this->username_as_share) { + $share = '/'.$user; + } elseif (isset($params['share'])) { + $share = $params['share']; + } else { + throw new \Exception(); + } + parent::__construct(array( + "user" => $user, + "password" => $password, + "host" => $host, + "share" => $share, + "root" => $root + )); + } else { + throw new \Exception(); + } + } + + public static function login( $params ) { + \OC::$session->set('smb-credentials', $params); + } + + public function isSharable($path) { + return false; + } + + public function test($isPersonal = true) { + if ($isPersonal) { + if ($this->stat('')) { + return true; + } + return false; + } else { + $smb = new \smb(); + $pu = $smb->parse_url($this->constructUrl('')); + + // Attempt to connect anonymously + $pu['user'] = ''; + $pu['pass'] = ''; + + // Share cannot be checked if dynamic + if ($this->username_as_share) { + if ($smb->look($pu)) { + return true; + } else { + return false; + } + } + if (!$pu['share']) { + return false; + } + + // The following error messages are expected due to anonymous login + $regexp = array( + '(NT_STATUS_ACCESS_DENIED)' => 'skip' + ) + $smb->getRegexp(); + + if ($smb->client("-d 0 " . escapeshellarg('//' . $pu['host'] . '/' . $pu['share']) . " -c exit", $pu, $regexp)) { + return true; + } else { + return false; + } + } + } +} diff --git a/apps/files_external/lib/swift.php b/apps/files_external/lib/swift.php index 7a56fcfc8b7..1337d9f581d 100644 --- a/apps/files_external/lib/swift.php +++ b/apps/files_external/lib/swift.php @@ -251,6 +251,10 @@ class Swift extends \OC\Files\Storage\Common { $mtime = $object->extra_headers['X-Object-Meta-Timestamp']; } + if (!empty($mtime)) { + $mtime = floor($mtime); + } + $stat = array(); $stat['size'] = $object->content_length; $stat['mtime'] = $mtime; @@ -370,7 +374,7 @@ class Swift extends \OC\Files\Storage\Common { 'X-Object-Meta-Timestamp' => $mtime ) ); - return $object->Update($settings); + return $object->UpdateMetadata($settings); } else { $object = $this->container->DataObject(); if (is_null($mtime)) { diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index de44d3c8644..80238666376 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -16,17 +16,17 @@ </thead> <tbody width="100%"> <?php $_['mounts'] = array_merge($_['mounts'], array('' => array())); ?> - <?php foreach ($_['mounts'] as $mountPoint => $mount): ?> - <tr <?php print_unescaped(($mountPoint != '') ? 'class="'.OC_Util::sanitizeHTML($mount['class']).'"' : 'id="addMountPoint"'); ?>> + <?php foreach ($_['mounts'] as $mount): ?> + <tr <?php print_unescaped(($mount['mountpoint'] !== '') ? 'class="'.OC_Util::sanitizeHTML($mount['class']).'"' : 'id="addMountPoint"'); ?>> <td class="status"> <?php if (isset($mount['status'])): ?> <span class="<?php p(($mount['status']) ? 'success' : 'error'); ?>"></span> <?php endif; ?> </td> <td class="mountPoint"><input type="text" name="mountPoint" - value="<?php p($mountPoint); ?>" + value="<?php p($mount['mountpoint']); ?>" placeholder="<?php p($l->t('Folder name')); ?>" /></td> - <?php if ($mountPoint == ''): ?> + <?php if ($mount['mountpoint'] == ''): ?> <td class="backend"> <select id="selectBackend" data-configurations='<?php print_unescaped(json_encode($_['backends'])); ?>'> <option value="" disabled selected @@ -41,32 +41,35 @@ data-class="<?php p($mount['class']); ?>"><?php p($mount['backend']); ?></td> <?php endif; ?> <td class ="configuration" width="100%"> - <?php if (isset($mount['configuration'])): ?> - <?php foreach ($mount['configuration'] as $parameter => $value): ?> + <?php if (isset($mount['options'])): ?> + <?php foreach ($mount['options'] as $parameter => $value): ?> <?php if (isset($_['backends'][$mount['class']]['configuration'][$parameter])): ?> - <?php $placeholder = $_['backends'][$mount['class']]['configuration'][$parameter]; ?> - <?php if (strpos($placeholder, '*') !== false): ?> + <?php + $placeholder = $_['backends'][$mount['class']]['configuration'][$parameter]; + $is_optional = FALSE; + if (strpos($placeholder, '&') === 0) { + $is_optional = TRUE; + $placeholder = substr($placeholder, 1); + } + ?> + <?php if (strpos($placeholder, '*') === 0): ?> <input type="password" + <?php if ($is_optional): ?> class="optional"<?php endif; ?> data-parameter="<?php p($parameter); ?>" value="<?php p($value); ?>" placeholder="<?php p(substr($placeholder, 1)); ?>" /> - <?php elseif (strpos($placeholder, '!') !== false): ?> + <?php elseif (strpos($placeholder, '!') === 0): ?> <label><input type="checkbox" data-parameter="<?php p($parameter); ?>" <?php if ($value == 'true'): ?> checked="checked"<?php endif; ?> /><?php p(substr($placeholder, 1)); ?></label> - <?php elseif (strpos($placeholder, '&') !== false): ?> - <input type="text" - class="optional" - data-parameter="<?php p($parameter); ?>" - value="<?php p($value); ?>" - placeholder="<?php p(substr($placeholder, 1)); ?>" /> - <?php elseif (strpos($placeholder, '#') !== false): ?> + <?php elseif (strpos($placeholder, '#') === 0): ?> <input type="hidden" data-parameter="<?php p($parameter); ?>" value="<?php p($value); ?>" /> <?php else: ?> <input type="text" + <?php if ($is_optional): ?> class="optional"<?php endif; ?> data-parameter="<?php p($parameter); ?>" value="<?php p($value); ?>" placeholder="<?php p($placeholder); ?>" /> @@ -108,7 +111,7 @@ </select> </td> <?php endif; ?> - <td <?php if ($mountPoint != ''): ?>class="remove" + <td <?php if ($mount['mountpoint'] != ''): ?>class="remove" <?php else: ?>style="visibility:hidden;" <?php endif ?>><img alt="<?php p($l->t('Delete')); ?>" title="<?php p($l->t('Delete')); ?>" diff --git a/apps/files_external/tests/mountconfig.php b/apps/files_external/tests/mountconfig.php index bf43bb31c38..c89874c94d5 100644 --- a/apps/files_external/tests/mountconfig.php +++ b/apps/files_external/tests/mountconfig.php @@ -212,13 +212,51 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { } /** + * Provider for testing configurations with different + * "applicable" values (all, user, groups) + */ + public function applicableConfigProvider() { + return array( + // applicable to "all" + array( + OC_Mount_Config::MOUNT_TYPE_USER, + 'all', + array( + 'users' => array('all'), + 'groups' => array() + ) + ), + // applicable to single user + array( + OC_Mount_Config::MOUNT_TYPE_USER, + self::TEST_USER1, + array( + 'users' => array(self::TEST_USER1), + 'groups' => array() + ) + ), + // applicable to single group + array( + OC_Mount_Config::MOUNT_TYPE_GROUP, + self::TEST_GROUP1, + array( + 'users' => array(), + 'groups' => array(self::TEST_GROUP1) + ) + ), + ); + } + + /** * Test reading and writing global config + * + * @dataProvider applicableConfigProvider */ - public function testReadWriteGlobalConfig() { - $mountType = OC_Mount_Config::MOUNT_TYPE_USER; - $applicable = 'all'; + public function testReadWriteGlobalConfig($mountType, $applicable, $expectApplicableArray) { + $mountType = $mountType; + $applicable = $applicable; $isPersonal = false; - $mountConfig = array( + $options = array( 'host' => 'smbhost', 'user' => 'smbuser', 'password' => 'smbpassword', @@ -231,7 +269,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { OC_Mount_Config::addMountPoint( '/ext', '\OC\Files\Storage\SMB', - $mountConfig, + $options, $mountType, $applicable, $isPersonal @@ -241,12 +279,13 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { // re-read config $config = OC_Mount_Config::getSystemMountPoints(); $this->assertEquals(1, count($config)); - $this->assertTrue(isset($config['ext'])); - $this->assertEquals('\OC\Files\Storage\SMB', $config['ext']['class']); - $savedMountConfig = $config['ext']['configuration']; - $this->assertEquals($mountConfig, $savedMountConfig); + $this->assertEquals('\OC\Files\Storage\SMB', $config[0]['class']); + $this->assertEquals('ext', $config[0]['mountpoint']); + $this->assertEquals($expectApplicableArray, $config[0]['applicable']); + $savedOptions = $config[0]['options']; + $this->assertEquals($options, $savedOptions); // key order needs to be preserved for the UI... - $this->assertEquals(array_keys($mountConfig), array_keys($savedMountConfig)); + $this->assertEquals(array_keys($options), array_keys($savedOptions)); } /** @@ -256,7 +295,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { $mountType = OC_Mount_Config::MOUNT_TYPE_USER; $applicable = self::TEST_USER1; $isPersonal = true; - $mountConfig = array( + $options = array( 'host' => 'smbhost', 'user' => 'smbuser', 'password' => 'smbpassword', @@ -269,7 +308,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { OC_Mount_Config::addMountPoint( '/ext', '\OC\Files\Storage\SMB', - $mountConfig, + $options, $mountType, $applicable, $isPersonal @@ -279,12 +318,12 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { // re-read config $config = OC_Mount_Config::getPersonalMountPoints(); $this->assertEquals(1, count($config)); - $this->assertTrue(isset($config['ext'])); - $this->assertEquals('\OC\Files\Storage\SMB', $config['ext']['class']); - $savedMountConfig = $config['ext']['configuration']; - $this->assertEquals($mountConfig, $savedMountConfig); + $this->assertEquals('\OC\Files\Storage\SMB', $config[0]['class']); + $this->assertEquals('ext', $config[0]['mountpoint']); + $savedOptions = $config[0]['options']; + $this->assertEquals($options, $savedOptions); // key order needs to be preserved for the UI... - $this->assertEquals(array_keys($mountConfig), array_keys($savedMountConfig)); + $this->assertEquals(array_keys($options), array_keys($savedOptions)); } /** @@ -362,7 +401,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { // re-read config, password was read correctly $config = OC_Mount_Config::getPersonalMountPoints(); - $savedMountConfig = $config['ext']['configuration']; + $savedMountConfig = $config[0]['options']; $this->assertEquals($mountConfig, $savedMountConfig); } @@ -475,4 +514,130 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { $this->assertEquals(0, count($mountPoints)); } } + + /** + * Test the same config for multiple users. + * The config will be merged by getSystemMountPoints(). + */ + public function testConfigMerging() { + $mountType = OC_Mount_Config::MOUNT_TYPE_USER; + $isPersonal = false; + $options = array( + 'host' => 'smbhost', + 'user' => 'smbuser', + 'password' => 'smbpassword', + 'share' => 'smbshare', + 'root' => 'smbroot' + ); + + // write config + $this->assertTrue( + OC_Mount_Config::addMountPoint( + '/ext', + '\OC\Files\Storage\SMB', + $options, + OC_Mount_Config::MOUNT_TYPE_USER, + self::TEST_USER1, + $isPersonal + ) + ); + + $this->assertTrue( + OC_Mount_Config::addMountPoint( + '/ext', + '\OC\Files\Storage\SMB', + $options, + OC_Mount_Config::MOUNT_TYPE_USER, + self::TEST_USER2, + $isPersonal + ) + ); + + $this->assertTrue( + OC_Mount_Config::addMountPoint( + '/ext', + '\OC\Files\Storage\SMB', + $options, + OC_Mount_Config::MOUNT_TYPE_GROUP, + self::TEST_GROUP2, + $isPersonal + ) + ); + + $this->assertTrue( + OC_Mount_Config::addMountPoint( + '/ext', + '\OC\Files\Storage\SMB', + $options, + OC_Mount_Config::MOUNT_TYPE_GROUP, + self::TEST_GROUP1, + $isPersonal + ) + ); + + // re-read config + $config = OC_Mount_Config::getSystemMountPoints(); + $this->assertEquals(1, count($config)); + $this->assertEquals('\OC\Files\Storage\SMB', $config[0]['class']); + $this->assertEquals('ext', $config[0]['mountpoint']); + $this->assertEquals($options, $config[0]['options']); + $this->assertEquals(array(self::TEST_USER1, self::TEST_USER2), $config[0]['applicable']['users']); + $this->assertEquals(array(self::TEST_GROUP2, self::TEST_GROUP1), $config[0]['applicable']['groups']); + } + + /** + * Create then re-read mount points configs where the mount points + * have the same path, the config must NOT be merged. + */ + public function testRereadMountpointWithSamePath() { + $mountType = OC_Mount_Config::MOUNT_TYPE_USER; + $isPersonal = false; + $options1 = array( + 'host' => 'smbhost', + 'user' => 'smbuser', + 'password' => 'smbpassword', + 'share' => 'smbshare', + 'root' => 'smbroot' + ); + + // write config + $this->assertTrue( + OC_Mount_Config::addMountPoint( + '/ext', + '\OC\Files\Storage\SMB', + $options1, + $mountType, + self::TEST_USER1, + $isPersonal + ) + ); + + $options2 = array( + 'host' => 'anothersmbhost', + 'user' => 'anothersmbuser', + 'password' => 'anothersmbpassword', + 'share' => 'anothersmbshare', + 'root' => 'anothersmbroot' + ); + $this->assertTrue( + OC_Mount_Config::addMountPoint( + '/ext', + '\OC\Files\Storage\SMB', + $options2, + $mountType, + self::TEST_USER2, + $isPersonal + ) + ); + + // re-read config + $config = OC_Mount_Config::getSystemMountPoints(); + $this->assertEquals(2, count($config)); + $this->assertEquals('\OC\Files\Storage\SMB', $config[0]['class']); + $this->assertEquals('ext', $config[0]['mountpoint']); + $this->assertEquals($options1, $config[0]['options']); + $this->assertEquals('\OC\Files\Storage\SMB', $config[1]['class']); + $this->assertEquals('ext', $config[1]['mountpoint']); + $this->assertEquals($options2, $config[1]['options']); + } } diff --git a/apps/files_sharing/css/mobile.css b/apps/files_sharing/css/mobile.css index 7d2116d190d..333c4c77fc9 100644 --- a/apps/files_sharing/css/mobile.css +++ b/apps/files_sharing/css/mobile.css @@ -1,4 +1,4 @@ -@media only screen and (max-width: 600px) { +@media only screen and (max-width: 768px) { /* make header scroll up for single shares, more view of content on small screens */ #header.share-file { @@ -45,5 +45,13 @@ table td.filename .nametext { display: none; } +/* ellipsis on file names */ +.nametext { + width: 60%; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + } diff --git a/apps/files_sharing/l10n/ar.php b/apps/files_sharing/l10n/ar.php index e5f919aac3f..f796f7ec59d 100644 --- a/apps/files_sharing/l10n/ar.php +++ b/apps/files_sharing/l10n/ar.php @@ -1,7 +1,17 @@ <?php $TRANSLATIONS = array( -"Shared by {owner}" => "مشاركة بواسطة المالك {owner}", +"Shared by {owner}" => "مشاركة من طرف {owner}", +"This share is password-protected" => "هذه المشاركة محمية بكلمة مرور", +"The password is wrong. Try again." => "كلمة المرور خاطئة. حاول مرة أخرى", "Password" => "كلمة المرور", -"shared by %s" => "مشاركة من قبل %s" +"Sorry, this link doesn’t seem to work anymore." => "عذرا، يبدو أن هذا الرابط لم يعد يعمل.", +"Reasons might be:" => "الأسباب الممكنة :", +"the item was removed" => "تم حذف العنصر المطلوب", +"the link expired" => "انتهت صلاحية الرابط", +"sharing is disabled" => "المشاركة غير مفعلة", +"For more info, please ask the person who sent this link." => "لمزيد من المعلومات، يرجى سؤال الشخص الذي أرسل هذا الرابط", +"shared by %s" => "مشاركة من قبل %s", +"Download %s" => "تحميل %s", +"Direct link" => "رابط مباشر" ); $PLURAL_FORMS = "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"; diff --git a/apps/files_sharing/l10n/cs_CZ.php b/apps/files_sharing/l10n/cs_CZ.php index 5d50ff41316..e7a8b16f000 100644 --- a/apps/files_sharing/l10n/cs_CZ.php +++ b/apps/files_sharing/l10n/cs_CZ.php @@ -10,7 +10,7 @@ $TRANSLATIONS = array( "the link expired" => "platnost odkazu vypršela", "sharing is disabled" => "sdílení je zakázané", "For more info, please ask the person who sent this link." => "Pro více informací kontaktujte osobu, která vám zaslala tento odkaz.", -"shared by %s" => "sdíleno %s", +"shared by %s" => "sdílí %s", "Download %s" => "Stáhnout %s", "Direct link" => "Přímý odkaz" ); diff --git a/apps/files_sharing/l10n/da.php b/apps/files_sharing/l10n/da.php index 6aae750cb78..6c6a39c2954 100644 --- a/apps/files_sharing/l10n/da.php +++ b/apps/files_sharing/l10n/da.php @@ -11,6 +11,7 @@ $TRANSLATIONS = array( "sharing is disabled" => "deling er deaktiveret", "For more info, please ask the person who sent this link." => "For yderligere information, kontakt venligst personen der sendte linket. ", "shared by %s" => "delt af %s", +"Download %s" => "Download %s", "Direct link" => "Direkte link" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 10f2182655f..01db29d72e2 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -357,9 +357,10 @@ class Shared_Cache extends Cache { * get the size of a folder and set it in the cache * * @param string $path + * @param array $entry (optional) meta data of the folder * @return int */ - public function calculateFolderSize($path) { + public function calculateFolderSize($path, $entry = null) { if ($cache = $this->getSourceCache($path)) { return $cache->calculateFolderSize($this->files[$path]); } diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index e2bbb548182..e3c5b6e4315 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -886,5 +886,5 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { class TestShareApi extends \OCA\Files\Share\Api { public function correctPathTest($path, $folder) { return self::correctPath($path, $folder); -} + } } diff --git a/apps/files_trashbin/ajax/list.php b/apps/files_trashbin/ajax/list.php index 124a236bcbd..cec18c46525 100644 --- a/apps/files_trashbin/ajax/list.php +++ b/apps/files_trashbin/ajax/list.php @@ -1,11 +1,5 @@ <?php -// only need filesystem apps -$RUNTIME_APPTYPES=array('filesystem'); - -// Init owncloud - - OCP\JSON::checkLoggedIn(); // Load the files diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 6aade210505..efe1e89f0bf 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -25,6 +25,11 @@ $(document).ready(function() { enableActions(); } + Files.updateStorageStatistics = function() { + // no op because the trashbin doesn't have + // storage info like free space / used space + }; + if (typeof FileActions !== 'undefined') { FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/history'), function(filename) { var tr = FileList.findFileEl(filename); diff --git a/apps/files_trashbin/l10n/ar.php b/apps/files_trashbin/l10n/ar.php index 68c51d1cc7d..4084daa127a 100644 --- a/apps/files_trashbin/l10n/ar.php +++ b/apps/files_trashbin/l10n/ar.php @@ -4,6 +4,7 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "تعذّر استرجاع %s ", "Deleted files" => "حذف الملفات", "Error" => "خطأ", +"restored" => "تمت الاستعادة", "Nothing in here. Your trash bin is empty!" => "لا يوجد شيء هنا. سلة المهملات خاليه.", "Name" => "اسم", "Restore" => "استعيد", diff --git a/apps/files_trashbin/lib/trashbin.php b/apps/files_trashbin/lib/trashbin.php index 7e91f8a59ff..7b14a4ec081 100644 --- a/apps/files_trashbin/lib/trashbin.php +++ b/apps/files_trashbin/lib/trashbin.php @@ -78,8 +78,8 @@ class Trashbin { $view = new \OC\Files\View('/'); - $source = \OCP\User::getUser().'/files_trashbin/files/' . $sourceFilename . '.d' . $timestamp; - $target = $owner.'/files_trashbin/files/' . $ownerFilename . '.d' . $timestamp; + $source = \OCP\User::getUser() . '/files_trashbin/files/' . $sourceFilename . '.d' . $timestamp; + $target = $owner . '/files_trashbin/files/' . $ownerFilename . '.d' . $timestamp; self::copy_recursive($source, $target, $view); @@ -117,7 +117,7 @@ class Trashbin { $proxyStatus = \OC_FileProxy::$enabled; \OC_FileProxy::$enabled = false; $trashPath = '/files_trashbin/files/' . $filename . '.d' . $timestamp; - $sizeOfAddedFiles = self::copy_recursive('/files/'.$file_path, $trashPath, $view); + $sizeOfAddedFiles = self::copy_recursive('/files/' . $file_path, $trashPath, $view); \OC_FileProxy::$enabled = $proxyStatus; if ($view->file_exists('files_trashbin/files/' . $filename . '.d' . $timestamp)) { @@ -145,7 +145,7 @@ class Trashbin { $userTrashSize -= self::expire($userTrashSize, $user); // if owner !== user we also need to update the owners trash size - if($owner !== $user) { + if ($owner !== $user) { $ownerTrashSize = self::getTrashbinSize($owner); $ownerTrashSize += $size; $ownerTrashSize -= self::expire($ownerTrashSize, $owner); @@ -298,6 +298,7 @@ class Trashbin { /** * restore files from trash bin + * * @param $file path to the deleted file * @param $filename name of the file * @param $timestamp time when the file was deleted @@ -312,7 +313,7 @@ class Trashbin { $location = ''; if ($timestamp) { $query = \OC_DB::prepare('SELECT `location` FROM `*PREFIX*files_trash`' - . ' WHERE `user`=? AND `id`=? AND `timestamp`=?'); + . ' WHERE `user`=? AND `id`=? AND `timestamp`=?'); $result = $query->execute(array($user, $filename, $timestamp))->fetchAll(); if (count($result) !== 1) { \OC_Log::write('files_trashbin', 'trash bin database inconsistent!', \OC_Log::ERROR); @@ -320,8 +321,9 @@ class Trashbin { $location = $result[0]['location']; // if location no longer exists, restore file in the root directory if ($location !== '/' && - (!$view->is_dir('files' . $location) || - !$view->isUpdatable('files' . $location))) { + (!$view->is_dir('files' . $location) || + !$view->isUpdatable('files' . $location)) + ) { $location = ''; } } @@ -631,6 +633,7 @@ class Trashbin { /** * check to see whether a file exists in trashbin + * * @param $filename path to the file * @param $timestamp of deletion time * @return true if file exists, otherwise false @@ -720,6 +723,7 @@ class Trashbin { /** * clean up the trash bin + * * @param int $trashbinSize current size of the trash bin * @param string $user * @return int size of expired files @@ -755,7 +759,7 @@ class Trashbin { // if size limit for trash bin reached, delete oldest files in trash bin if ($availableSpace < 0) { $query = \OC_DB::prepare('SELECT `location`,`type`,`id`,`timestamp` FROM `*PREFIX*files_trash`' - . ' WHERE `user`=? ORDER BY `timestamp` ASC'); + . ' WHERE `user`=? ORDER BY `timestamp` ASC'); $result = $query->execute(array($user))->fetchAll(); $length = count($result); $i = 0; @@ -803,6 +807,7 @@ class Trashbin { /** * find all versions which belong to the file we want to restore + * * @param $filename name of the file which should be restored * @param $timestamp timestamp when the file was deleted */ @@ -822,10 +827,10 @@ class Trashbin { foreach ($matches as $ma) { if ($timestamp) { $parts = explode('.v', substr($ma, 0, $offset)); - $versions[] = ( end($parts) ); + $versions[] = (end($parts)); } else { $parts = explode('.v', $ma); - $versions[] = ( end($parts) ); + $versions[] = (end($parts)); } } return $versions; @@ -833,6 +838,7 @@ class Trashbin { /** * find unique extension for restored file if a file with the same name already exists + * * @param $location where the file should be restored * @param $filename name of the file * @param \OC\Files\View $view filesystem view relative to users root directory @@ -850,9 +856,9 @@ class Trashbin { if ($view->file_exists('files' . $location . '/' . $filename)) { $i = 2; - $uniqueName = $name . " (".$l->t("restored").")". $ext; + $uniqueName = $name . " (" . $l->t("restored") . ")" . $ext; while ($view->file_exists('files' . $location . '/' . $uniqueName)) { - $uniqueName = $name . " (".$l->t("restored") . " " . $i . ")" . $ext; + $uniqueName = $name . " (" . $l->t("restored") . " " . $i . ")" . $ext; $i++; } @@ -915,16 +921,19 @@ class Trashbin { public static function isEmpty($user) { $view = new \OC\Files\View('/' . $user . '/files_trashbin'); - $content = $view->getDirectoryContent('/files'); - - if ($content) { + $dh = $view->opendir('/files'); + if (!$dh) { return false; } - + while ($file = readdir($dh)) { + if ($file !== '.' and $file !== '..') { + return false; + } + } return true; } public static function preview_icon($path) { - return \OC_Helper::linkToRoute( 'core_ajax_trashbin_preview', array('x' => 36, 'y' => 36, 'file' => $path )); + return \OC_Helper::linkToRoute('core_ajax_trashbin_preview', array('x' => 36, 'y' => 36, 'file' => $path)); } } diff --git a/apps/files_versions/appinfo/info.xml b/apps/files_versions/appinfo/info.xml index 661d64aa979..a735caee945 100644 --- a/apps/files_versions/appinfo/info.xml +++ b/apps/files_versions/appinfo/info.xml @@ -9,7 +9,7 @@ <description> ownCloud supports simple version control for files. The versioning app expires old versions automatically to make sure that - the user doesn't run out of space. Following pattern is used to delete + the user doesn't run out of space. The following pattern is used to delete old versions: For the first 10 seconds ownCloud keeps one version every 2 seconds; For the first hour ownCloud keeps one version every minute; diff --git a/apps/files_versions/js/versions.js b/apps/files_versions/js/versions.js index 4adf14745de..b452bc25b13 100644 --- a/apps/files_versions/js/versions.js +++ b/apps/files_versions/js/versions.js @@ -11,7 +11,7 @@ $(document).ready(function(){ // Add versions button to 'files/index.php' FileActions.register( 'file' - , t('files_versions', 'Versions') + , 'Versions' , OC.PERMISSION_UPDATE , function() { // Specify icon for hitory button @@ -36,6 +36,7 @@ $(document).ready(function(){ createVersionsDropdown(filename, file); } } + , t('files_versions', 'Versions') ); } diff --git a/apps/user_ldap/appinfo/info.xml b/apps/user_ldap/appinfo/info.xml index 9cc908e8522..e4a4375a737 100644 --- a/apps/user_ldap/appinfo/info.xml +++ b/apps/user_ldap/appinfo/info.xml @@ -2,8 +2,8 @@ <info> <id>user_ldap</id> <name>LDAP user and group backend</name> - <description>Authenticate users and groups by LDAP respectively Active - Directory. + <description>Authenticate users and groups through LDAP, such as OpenLDAP + or Active Directory. This app is not compatible with the WebDAV user backend. </description> diff --git a/apps/user_ldap/l10n/am_ET.php b/apps/user_ldap/l10n/am_ET.php new file mode 100644 index 00000000000..3a1e002311c --- /dev/null +++ b/apps/user_ldap/l10n/am_ET.php @@ -0,0 +1,6 @@ +<?php +$TRANSLATIONS = array( +"_%s group found_::_%s groups found_" => array("",""), +"_%s user found_::_%s users found_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/cs_CZ.php b/apps/user_ldap/l10n/cs_CZ.php index 930a4b10647..536834ee8b5 100644 --- a/apps/user_ldap/l10n/cs_CZ.php +++ b/apps/user_ldap/l10n/cs_CZ.php @@ -33,12 +33,14 @@ $TRANSLATIONS = array( "Save" => "Uložit", "Test Configuration" => "Vyzkoušet nastavení", "Help" => "Nápověda", +"Groups meeting these criteria are available in %s:" => "Skupiny splňující tyto podmínky jsou k dispozici v %s:", "only those object classes:" => "pouze tyto objektové třídy:", "only from those groups:" => "pouze z těchto skupin:", "Edit raw filter instead" => "Edituj filtr přímo", "Raw LDAP filter" => "Původní filtr LDAP", "The filter specifies which LDAP groups shall have access to the %s instance." => "Filtr určuje, kteří uživatelé LDAP mají mít přístup k instanci %s.", "groups found" => "nalezené skupiny", +"Users login with this attribute:" => "Uživatelé se přihlašují s tímto atributem:", "LDAP Username:" => "LDAP uživatelské jméno:", "LDAP Email Address:" => "LDAP e-mailová adresa:", "Other Attributes:" => "Další atributy:", @@ -53,6 +55,7 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Pro anonymní přístup ponechte údaje DN and heslo prázdné.", "One Base DN per line" => "Jedna základní DN na řádku", "You can specify Base DN for users and groups in the Advanced tab" => "V rozšířeném nastavení můžete určit základní DN pro uživatele a skupiny", +"Limit %s access to users meeting these criteria:" => "Omezit přístup %s uživatelům splňujícím tyto podmínky:", "The filter specifies which LDAP users shall have access to the %s instance." => "Filtr určuje, kteří uživatelé LDAP mají mít přístup k instanci %s.", "users found" => "nalezení uživatelé", "Back" => "Zpět", @@ -85,6 +88,8 @@ $TRANSLATIONS = array( "One Group Base DN per line" => "Jedna skupinová základní DN na řádku", "Group Search Attributes" => "Atributy vyhledávání skupin", "Group-Member association" => "Asociace člena skupiny", +"Nested Groups" => "Vnořené skupiny", +"When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Pokud zapnuto, je možno používat skupiny, které obsahují jiné skupiny. (Funguje pouze pokud atribut člena skupiny obsahuje DN.)", "Special Attributes" => "Speciální atributy", "Quota Field" => "Pole pro kvótu", "Quota Default" => "Výchozí kvóta", diff --git a/apps/user_webdavauth/appinfo/info.xml b/apps/user_webdavauth/appinfo/info.xml index 76b314e48aa..20c5909cc12 100755 --- a/apps/user_webdavauth/appinfo/info.xml +++ b/apps/user_webdavauth/appinfo/info.xml @@ -4,7 +4,7 @@ <name>WebDAV user backend</name> <description>Authenticate users by a WebDAV call. You can use any WebDAV server, ownCloud server or other webserver to authenticate. It should return http 200 for right credentials and http 401 for wrong ones. - This app is not compatible to the LDAP user and group backend.</description> + This app is not compatible with the LDAP user and group backend.</description> <licence>AGPL</licence> <author>Frank Karlitschek</author> <require>4.93</require> diff --git a/build/package.json b/build/package.json index c9ed7b96c6c..0c395839cf9 100644 --- a/build/package.json +++ b/build/package.json @@ -14,7 +14,9 @@ "karma": "*", "karma-jasmine": "*", "karma-junit-reporter": "*", - "karma-coverage": "*" + "karma-coverage": "*", + "karma-phantomjs-launcher": "*", + "phantomjs": "*" }, "engine": "node >= 0.8" } diff --git a/config/config.sample.php b/config/config.sample.php index 987a866e49b..140b75706ea 100755 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -178,6 +178,9 @@ $CONFIG = array( /* Enable or disable the logging of IP addresses in case of webform auth failures */ "log_authfailip" => false, +/* Whether ownCloud should log the last successfull cron exec */ +"cron_log" => true, + /* Whether http-basic username must equal username to login */ "basic_auth" => true, @@ -273,6 +276,15 @@ $CONFIG = array( /* all css and js files will be served by the web server statically in one js file and ons css file*/ 'asset-pipeline.enabled' => false, - /* where mount.json file should be stored, defaults to data/mount.json */ - 'mount_file' => '', +/* where mount.json file should be stored, defaults to data/mount.json */ +'mount_file' => '', + +/* + * Location of the cache folder, defaults to "data/$user/cache" where "$user" is the current user. + * + * When specified, the format will change to "$cache_path/$user" where "$cache_path" is the configured + * cache directory and "$user" is the user. + * + */ +'cache_path' => '' ); diff --git a/console.php b/console.php index 25b8b312539..dd2c1026e47 100644 --- a/console.php +++ b/console.php @@ -8,7 +8,6 @@ use Symfony\Component\Console\Application; -$RUNTIME_NOAPPS = true; require_once 'lib/base.php'; // Don't do anything if ownCloud has not been installed yet @@ -22,6 +21,9 @@ if (!OC::$CLI) { exit(0); } +// load all apps to get all api routes properly setup +OC_App::loadApps(); + $defaults = new OC_Defaults; $application = new Application($defaults->getName(), \OC_Util::getVersionString()); require_once 'core/register_command.php'; diff --git a/core/ajax/share.php b/core/ajax/share.php index 3f04e1e4ad1..e667d9b5faa 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -21,7 +21,6 @@ OC_JSON::checkLoggedIn(); OCP\JSON::callCheck(); -OC_App::loadApps(); $defaults = new \OCP\Defaults(); diff --git a/core/ajax/update.php b/core/ajax/update.php index 2a0cbb2036d..55e8ab15ec2 100644 --- a/core/ajax/update.php +++ b/core/ajax/update.php @@ -1,6 +1,5 @@ <?php set_time_limit(0); -$RUNTIME_NOAPPS = true; require_once '../../lib/base.php'; if (OC::checkUpgrade(false)) { diff --git a/core/command/upgrade.php b/core/command/upgrade.php index cfccfb5d2f0..ed72d136e24 100644 --- a/core/command/upgrade.php +++ b/core/command/upgrade.php @@ -34,9 +34,6 @@ class Upgrade extends Command { * @param OutputInterface $output output interface */ protected function execute(InputInterface $input, OutputInterface $output) { - global $RUNTIME_NOAPPS; - - $RUNTIME_NOAPPS = true; //no apps, yet require_once \OC::$SERVERROOT . '/lib/base.php'; diff --git a/core/command/user/report.php b/core/command/user/report.php index 70c5a8566b7..a5159310af1 100644 --- a/core/command/user/report.php +++ b/core/command/user/report.php @@ -46,7 +46,6 @@ class Report extends Command { } private function countUsers() { - \OC_App::loadApps(array('authentication')); $userManager = \OC::$server->getUserManager(); return $userManager->countUsers(); } @@ -56,4 +55,4 @@ class Report extends Command { $userDirectories = $dataview->getDirectoryContent('/', 'httpd/unix-directory'); return count($userDirectories); } -}
\ No newline at end of file +} diff --git a/core/css/jquery.ocdialog.css b/core/css/jquery.ocdialog.css index 236968e3245..a1221137bc4 100644 --- a/core/css/jquery.ocdialog.css +++ b/core/css/jquery.ocdialog.css @@ -43,7 +43,7 @@ background-color: #000; opacity: .20;filter:Alpha(Opacity=20); z-index: 999; - position: absolute; + position: fixed; top: 0; left: 0; width: 100%; height: 100%; } diff --git a/core/css/mobile.css b/core/css/mobile.css index a63aa902d34..c67ac3e5ecf 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -1,4 +1,12 @@ -@media only screen and (max-width: 600px) { +@media only screen and (max-width: 768px) { + +/* show caret indicator next to logo to make clear it is tappable */ +#owncloud.menutoggle { + background-image: url('../img/actions/caret.svg'); + background-repeat: no-repeat; + background-position: right 26px; + padding-right: 16px !important; +} /* compress search box on mobile, expand when focused */ .searchbox input[type="search"] { @@ -18,5 +26,80 @@ display: none; } +/* toggle navigation */ +#content-wrapper { + padding-left: 0; +} + +#navigation { + top: 45px; + bottom: initial; + width: 255px; + max-height: 90%; + margin-top: 0; + top: 45px; + background-color: rgba(36, 40, 47, .97); + overflow-x: initial; + border-bottom-right-radius: 7px; + border-bottom: 1px #333 solid; + border-right: 1px #333 solid; + box-shadow: 0 0 7px rgba(29,45,68,.97); + display: none; +} +#navigation, #navigation * { + box-sizing:border-box; -moz-box-sizing:border-box; +} +#navigation li { + display: inline-block; +} +#navigation a { + width: 80px; + height: 80px; + display: inline-block; + text-align: center; + padding: 20px 0; +} +#navigation a span { + display: inline-block; + font-size: 13px; + padding-bottom: 0; + padding-left: 0; + width: 80px; +} +#navigation .icon { + margin: 0 auto; + padding: 0; +} +#navigation li:first-child .icon { + padding-top: 0; +} +/* Apps management as sticky footer */ +#navigation .wrapper { + min-height: initial; + margin: 0; +} +#apps-management, #navigation .push { + height: initial; +} + + + +/* shift to account for missing navigation */ +#body-user #controls, +#body-settings #controls { + padding-left: 0; +} + +/* don’t require a minimum width for controls bar */ +#controls { + min-width: initial !important; +} + +/* position share dropdown */ +#dropdown { + margin-right: 10% !important; + width: 80% !important; +} + } diff --git a/core/css/styles.css b/core/css/styles.css index bd8111ebc72..2c043ab724c 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -77,6 +77,7 @@ body { background:#fefefe; font:normal .8em/1.6em "Helvetica Neue",Helvetica,Ari #header .logo { background-image: url(../img/logo.svg); + background-repeat: no-repeat; width: 250px; height: 118px; margin: 0 auto; @@ -84,6 +85,7 @@ body { background:#fefefe; font:normal .8em/1.6em "Helvetica Neue",Helvetica,Ari #header .logo-wide { background-image: url(../img/logo-wide.svg); + background-repeat: no-repeat; width: 147px; height: 32px; } @@ -246,6 +248,7 @@ input[type="submit"].enabled { -webkit-box-sizing: border-box; box-sizing: border-box; position: fixed; + top:45px; right: 0; left: 0; height: 44px; diff --git a/core/js/js.js b/core/js/js.js index 841f3a769f1..302b6b4d9fa 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -27,7 +27,7 @@ if (oc_debug !== true || typeof console === "undefined" || typeof console.log == if (!window.console) { window.console = {}; } - var methods = ['log', 'debug', 'warn', 'info', 'error', 'assert']; + var methods = ['log', 'debug', 'warn', 'info', 'error', 'assert', 'time', 'timeEnd']; for (var i = 0; i < methods.length; i++) { console[methods[i]] = function () { }; } @@ -482,6 +482,53 @@ var OC={ }).show(); }, 'html'); } + }, + + // for menu toggling + registerMenu: function($toggle, $menuEl) { + $menuEl.addClass('menu'); + $toggle.addClass('menutoggle'); + $toggle.on('click.menu', function(event) { + if ($menuEl.is(OC._currentMenu)) { + $menuEl.hide(); + OC._currentMenu = null; + OC._currentMenuToggle = null; + return false; + } + // another menu was open? + else if (OC._currentMenu) { + // close it + OC._currentMenu.hide(); + } + $menuEl.show(); + OC._currentMenu = $menuEl; + OC._currentMenuToggle = $toggle; + return false + }); + }, + + unregisterMenu: function($toggle, $menuEl) { + // close menu if opened + if ($menuEl.is(OC._currentMenu)) { + $menuEl.hide(); + OC._currentMenu = null; + OC._currentMenuToggle = null; + } + $toggle.off('click.menu').removeClass('menutoggle'); + $menuEl.removeClass('menu'); + }, + + /** + * Wrapper for matchMedia + * + * This is makes it possible for unit tests to + * stub matchMedia (which doesn't work in PhantomJS) + */ + _matchMedia: function(media) { + if (window.matchMedia) { + return window.matchMedia(media); + } + return false; } }; OC.search.customResults={}; @@ -712,11 +759,11 @@ SVGSupport.checkMimeType=function(){ if(value[0]==='"'){ value=value.substr(1,value.length-2); } - headers[parts[0]]=value; + headers[parts[0].toLowerCase()]=value; } } }); - if(headers["Content-Type"]!=='image/svg+xml'){ + if(headers["content-type"]!=='image/svg+xml'){ replaceSVG(); SVGSupport.checkMimeType.correct=false; } @@ -940,6 +987,67 @@ function initCore() { $('a.action').tipsy({gravity:'s', fade:true, live:true}); $('td .modified').tipsy({gravity:'s', fade:true, live:true}); $('input').tipsy({gravity:'w', fade:true}); + + // toggle for menus + $(document).on('mouseup.closemenus', function(event) { + var $el = $(event.target); + if ($el.closest('.menu').length || $el.closest('.menutoggle').length) { + // don't close when clicking on the menu directly or a menu toggle + return false; + } + if (OC._currentMenu) { + OC._currentMenu.hide(); + } + OC._currentMenu = null; + OC._currentMenuToggle = null; + }); + + + /** + * Set up the main menu toggle to react to media query changes. + * If the screen is small enough, the main menu becomes a toggle. + * If the screen is bigger, the main menu is not a toggle any more. + */ + function setupMainMenu() { + // toggle the navigation on mobile + if (!OC._matchMedia) { + return; + } + var mq = OC._matchMedia('(max-width: 768px)'); + var lastMatch = mq.matches; + var $toggle = $('#header #owncloud'); + var $navigation = $('#navigation'); + + function updateMainMenu() { + // mobile mode ? + if (lastMatch && !$toggle.hasClass('menutoggle')) { + // init the menu + OC.registerMenu($toggle, $navigation); + $toggle.data('oldhref', $toggle.attr('href')); + $toggle.attr('href', '#'); + $navigation.hide(); + } + else { + OC.unregisterMenu($toggle, $navigation); + $toggle.attr('href', $toggle.data('oldhref')); + $navigation.show(); + } + } + + updateMainMenu(); + + // TODO: debounce this + $(window).resize(function() { + if (lastMatch !== mq.matches) { + lastMatch = mq.matches; + updateMainMenu(); + } + }); + } + + if (window.matchMedia) { + setupMainMenu(); + } } $(document).ready(initCore); diff --git a/core/js/share.js b/core/js/share.js index 9ee50ff6963..e769edd0a21 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -48,7 +48,7 @@ OC.Share={ var action = $(file).find('.fileactions .action[data-action="Share"]'); var img = action.find('img').attr('src', image); action.addClass('permanent'); - action.html(' '+t('core', 'Shared')).prepend(img); + action.html(' <span>'+t('core', 'Shared')+'</span>').prepend(img); } else { var dir = $('#dir').val(); if (dir.length > 1) { @@ -63,7 +63,7 @@ OC.Share={ if (img.attr('src') != OC.imagePath('core', 'actions/public')) { img.attr('src', image); $(action).addClass('permanent'); - $(action).html(' '+t('core', 'Shared')).prepend(img); + $(action).html(' <span>'+t('core', 'Shared')+'</span>').prepend(img); } }); } @@ -103,10 +103,10 @@ OC.Share={ var img = action.find('img').attr('src', image); if (shares) { action.addClass('permanent'); - action.html(' '+ escapeHTML(t('core', 'Shared'))).prepend(img); + action.html(' <span>'+ escapeHTML(t('core', 'Shared'))+'</span>').prepend(img); } else { action.removeClass('permanent'); - action.html(' '+ escapeHTML(t('core', 'Share'))).prepend(img); + action.html(' <span>'+ escapeHTML(t('core', 'Share'))+'</span>').prepend(img); } } } diff --git a/core/js/tests/specs/coreSpec.js b/core/js/tests/specs/coreSpec.js index 069546387c7..57ea5be8be0 100644 --- a/core/js/tests/specs/coreSpec.js +++ b/core/js/tests/specs/coreSpec.js @@ -279,5 +279,109 @@ describe('Core base tests', function() { expect(OC.generateUrl('apps/files/download{file}', {file: '/Welcome.txt'})).toEqual(OC.webroot + '/index.php/apps/files/download/Welcome.txt'); }); }); + describe('Main menu mobile toggle', function() { + var oldMatchMedia; + var $toggle; + var $navigation; + + beforeEach(function() { + oldMatchMedia = OC._matchMedia; + // a separate method was needed because window.matchMedia + // cannot be stubbed due to a bug in PhantomJS: + // https://github.com/ariya/phantomjs/issues/12069 + OC._matchMedia = sinon.stub(); + $('#testArea').append('<div id="header">' + + '<a id="owncloud" href="#"></a>' + + '</div>' + + '<div id="navigation"></div>'); + $toggle = $('#owncloud'); + $navigation = $('#navigation'); + }); + + afterEach(function() { + OC._matchMedia = oldMatchMedia; + }); + it('Sets up menu toggle in mobile mode', function() { + OC._matchMedia.returns({matches: true}); + window.initCore(); + expect($toggle.hasClass('menutoggle')).toEqual(true); + expect($navigation.hasClass('menu')).toEqual(true); + }); + it('Does not set up menu toggle in desktop mode', function() { + OC._matchMedia.returns({matches: false}); + window.initCore(); + expect($toggle.hasClass('menutoggle')).toEqual(false); + expect($navigation.hasClass('menu')).toEqual(false); + }); + it('Switches on menu toggle when mobile mode changes', function() { + var mq = {matches: false}; + OC._matchMedia.returns(mq); + window.initCore(); + expect($toggle.hasClass('menutoggle')).toEqual(false); + mq.matches = true; + $(window).trigger('resize'); + expect($toggle.hasClass('menutoggle')).toEqual(true); + }); + it('Switches off menu toggle when mobile mode changes', function() { + var mq = {matches: true}; + OC._matchMedia.returns(mq); + window.initCore(); + expect($toggle.hasClass('menutoggle')).toEqual(true); + mq.matches = false; + $(window).trigger('resize'); + expect($toggle.hasClass('menutoggle')).toEqual(false); + }); + it('Clicking menu toggle toggles navigation in mobile mode', function() { + OC._matchMedia.returns({matches: true}); + window.initCore(); + $navigation.hide(); // normally done through media query triggered CSS + expect($navigation.is(':visible')).toEqual(false); + $toggle.click(); + expect($navigation.is(':visible')).toEqual(true); + $toggle.click(); + expect($navigation.is(':visible')).toEqual(false); + }); + it('Clicking menu toggle does not toggle navigation in desktop mode', function() { + OC._matchMedia.returns({matches: false}); + window.initCore(); + expect($navigation.is(':visible')).toEqual(true); + $toggle.click(); + expect($navigation.is(':visible')).toEqual(true); + }); + it('Switching to mobile mode hides navigation', function() { + var mq = {matches: false}; + OC._matchMedia.returns(mq); + window.initCore(); + expect($navigation.is(':visible')).toEqual(true); + mq.matches = true; + $(window).trigger('resize'); + expect($navigation.is(':visible')).toEqual(false); + }); + it('Switching to desktop mode shows navigation', function() { + var mq = {matches: true}; + OC._matchMedia.returns(mq); + window.initCore(); + expect($navigation.is(':visible')).toEqual(false); + mq.matches = false; + $(window).trigger('resize'); + expect($navigation.is(':visible')).toEqual(true); + }); + it('Switch to desktop with opened menu then back to mobile resets toggle', function() { + var mq = {matches: true}; + OC._matchMedia.returns(mq); + window.initCore(); + expect($navigation.is(':visible')).toEqual(false); + $toggle.click(); + expect($navigation.is(':visible')).toEqual(true); + mq.matches = false; + $(window).trigger('resize'); + expect($navigation.is(':visible')).toEqual(true); + mq.matches = true; + $(window).trigger('resize'); + expect($navigation.is(':visible')).toEqual(false); + $toggle.click(); + expect($navigation.is(':visible')).toEqual(true); + }); + }); }); diff --git a/core/l10n/am_ET.php b/core/l10n/am_ET.php new file mode 100644 index 00000000000..ffcdde48d47 --- /dev/null +++ b/core/l10n/am_ET.php @@ -0,0 +1,9 @@ +<?php +$TRANSLATIONS = array( +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ar.php b/core/l10n/ar.php index 64b9d702dcb..8c1d5ec3076 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -1,5 +1,7 @@ <?php $TRANSLATIONS = array( +"Unknown filetype" => "نوع الملف غير معروف", +"Invalid image" => "الصورة غير صالحة", "Sunday" => "الأحد", "Monday" => "الأثنين", "Tuesday" => "الثلاثاء", @@ -80,11 +82,13 @@ $TRANSLATIONS = array( "Add" => "اضف", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "حصل خطأ في عملية التحديث, يرجى ارسال تقرير بهذه المشكلة الى <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>.", "The update was successful. Redirecting you to ownCloud now." => "تم التحديث بنجاح , يتم اعادة توجيهك الان الى Owncloud", +"%s password reset" => "تمت إعادة ضبط كلمة مرور %s", "Use the following link to reset your password: {link}" => "استخدم هذه الوصلة لاسترجاع كلمة السر: {link}", "The link to reset your password has been sent to your email.<br>If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator ." => "وصلة تحديث كلمة المرور بعثت الى بريدك الالكتروني.<br> اذا لم تستقبل البريد خلال فترة زمنية قصيره, ابحث في سلة مهملات بريدك.", "Request failed!<br>Did you make sure your email/username was right?" => "الطلب رفض! <br> هل انت متأكد أن الاسم/العنوان البريدي صحيح؟", "You will receive a link to reset your password via Email." => "سوف نرسل لك بريد يحتوي على وصلة لتجديد كلمة السر.", "Username" => "إسم المستخدم", +"Yes, I really want to reset my password now" => "نعم، أريد إعادة ضبظ كلمة مروري", "Your password was reset" => "لقد تم تعديل كلمة السر", "To login page" => "الى صفحة الدخول", "New password" => "كلمات سر جديدة", @@ -98,9 +102,11 @@ $TRANSLATIONS = array( "Cloud not found" => "لم يتم إيجاد", "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)", +"Please update your PHP installation to use %s securely." => "يرجى تحديث نسخة PHP لاستخدام %s بطريقة آمنة", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "لا يوجد مولّد أرقام عشوائية ، الرجاء تفعيل الـ PHP OpenSSL extension.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "بدون وجود مولد أرقام عشوائية آمن قد يتمكن المهاجم من التنبؤ بكلمات اعادة ضبط كلمة المرور والتمكن من السيطرة على حسابك", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "مجلدات البيانات والملفات الخاصة قد تكون قابلة للوصول اليها عن طريق شبكة الانترنت وذلك بسبب ان ملف .htaccess لا يعمل بشكل صحيح.", +"For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\">documentation</a>." => "لمزيد من المعلومات عن كيفية إعداد خادمك، يرجى الاطلاع على <a href=\"%s\" target=\"_blank\">صفحة المساعدة</a>.", "Create an <strong>admin account</strong>" => "أضف </strong>مستخدم رئيسي <strong>", "Data folder" => "مجلد المعلومات", "Configure the database" => "أسس قاعدة البيانات", diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index 9178bb99cb2..397440bea2b 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -54,6 +54,7 @@ $TRANSLATIONS = array( "Expiration date" => "Дата на изтичане", "Share via email:" => "сподели по поща:", "No people found" => "Не са открити хора", +"group" => "група", "Resharing is not allowed" => "Допълнително споделяне не е разрешено", "Shared in {item} with {user}" => "Споделено в {item} с {user}", "Unshare" => "Премахни споделяне", diff --git a/core/l10n/ca.php b/core/l10n/ca.php index c696d1f0e6f..0a658d515d9 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( +"Expiration date is in the past." => "La data de venciment és en el passat.", "Couldn't send mail to following users: %s " => "No s'ha pogut enviar correu als usuaris següents: %s", "Turned on maintenance mode" => "Activat el mode de manteniment", "Turned off maintenance mode" => "Desactivat el mode de manteniment", @@ -121,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "A la pàgina d'inici de sessió", "New password" => "Contrasenya nova", "Reset password" => "Reinicialitza la contrasenya", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X no té suport i %s no funcionarà correctament en aquesta plataforma. Useu-ho al vostre risc!", +"For the best results, please consider using a GNU/Linux server instead." => "Per millors resultats, millor considereu utilitzar un servidor GNU/Linux.", "Personal" => "Personal", "Users" => "Usuaris", "Apps" => "Aplicacions", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 5709acf033c..ffe34f78280 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( +"Expiration date is in the past." => "Datum expirace je v minulosti.", "Couldn't send mail to following users: %s " => "Nebylo možné odeslat e-mail následujícím uživatelům: %s", "Turned on maintenance mode" => "Zapnut režim údržby", "Turned off maintenance mode" => "Vypnut režim údržby", @@ -108,6 +109,7 @@ $TRANSLATIONS = array( "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Aktualizace neproběhla úspěšně. Nahlaste prosím problém do <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">evidence chyb ownCloud</a>", "The update was successful. Redirecting you to ownCloud now." => "Aktualizace byla úspěšná. Přesměrovávám na ownCloud.", "%s password reset" => "reset hesla %s", +"A problem has occurred whilst sending the email, please contact your administrator." => "Při odesílání e-mailu nastala chyba, kontaktujte prosím svého administrátora.", "Use the following link to reset your password: {link}" => "Heslo obnovíte použitím následujícího odkazu: {link}", "The link to reset your password has been sent to your email.<br>If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator ." => "Odkaz na obnovení hesla byl odeslán na vaši e-mailovou adresu.<br>Pokud jej v krátké době neobdržíte, zkontrolujte váš koš a složku spam.<br>Pokud jej nenaleznete, kontaktujte svého správce.", "Request failed!<br>Did you make sure your email/username was right?" => "Požadavek selhal!<br>Ujistili jste se, že vaše uživatelské jméno a e-mail jsou správně?", @@ -120,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "Na stránku přihlášení", "New password" => "Nové heslo", "Reset password" => "Obnovit heslo", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X není podporován a %s nebude na této platformě správně fungovat. Používejte pouze na vlastní nebezpečí!", +"For the best results, please consider using a GNU/Linux server instead." => "Místo toho zvažte pro nejlepší funkčnost použití GNU/Linux serveru.", "Personal" => "Osobní", "Users" => "Uživatelé", "Apps" => "Aplikace", @@ -168,6 +172,7 @@ $TRANSLATIONS = array( "remember" => "zapamatovat", "Log in" => "Přihlásit", "Alternative Logins" => "Alternativní přihlášení", +"Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" => "Hej ty,<br><br>jen ti dávám vědět, že %s sdílí <strong>%s</strong> s tebou.<br><a href=\"%s\">Zobrazit!</a><br><br>", "This ownCloud instance is currently in single user mode." => "Tato instalace ownCloudu je momentálně v jednouživatelském módu.", "This means only administrators can use the instance." => "To znamená, že pouze správci systému mohou aplikaci používat.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Kontaktujte, prosím, správce systému, pokud se tato zpráva objevuje opakovaně nebo nečekaně.", diff --git a/core/l10n/da.php b/core/l10n/da.php index 4a98dfcc114..d3384dac432 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -56,6 +56,11 @@ $TRANSLATIONS = array( "(all selected)" => "(alle valgt)", "({count} selected)" => "({count} valgt)", "Error loading file exists template" => "Fejl ved inlæsning af; fil eksistere skabelon", +"Very weak password" => "Meget svagt kodeord", +"Weak password" => "Svagt kodeord", +"So-so password" => "Jævnt kodeord", +"Good password" => "Godt kodeord", +"Strong password" => "Stærkt kodeord", "Shared" => "Delt", "Share" => "Del", "Error" => "Fejl", @@ -103,6 +108,7 @@ $TRANSLATIONS = array( "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Opdateringen blev ikke udført korrekt. Rapporter venligst problemet til <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownClouds community</a>.", "The update was successful. Redirecting you to ownCloud now." => "Opdateringen blev udført korrekt. Du bliver nu viderestillet til ownCloud.", "%s password reset" => "%s adgangskode nulstillet", +"A problem has occurred whilst sending the email, please contact your administrator." => "Der opstod et problem under afsending af emailen. Kontakt venligst systemadministratoren.", "Use the following link to reset your password: {link}" => "Anvend følgende link til at nulstille din adgangskode: {link}", "The link to reset your password has been sent to your email.<br>If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator ." => "Linket til at nulstille dit kodeord er blevet sendt til din e-post. <br> Hvis du ikke modtager den inden for en rimelig tid, så tjek dine spam / junk mapper.<br> Hvis det ikke er der, så spørg din lokale administrator.", "Request failed!<br>Did you make sure your email/username was right?" => "Anmodning mislykkedes!<br>Er du sikker på at din e-post / brugernavn var korrekt?", @@ -140,6 +146,7 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Dine data mappe og filer er sandsynligvis tilgængelige fra internettet fordi .htaccess filen ikke virker.", "For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\">documentation</a>." => "For information om, hvordan du konfigurerer din server korrekt se <a href=\"%s\" target=\"_blank\">dokumentationen</a>.", "Create an <strong>admin account</strong>" => "Opret en <strong>administratorkonto</strong>", +"Storage & database" => "Lager & database", "Data folder" => "Datamappe", "Configure the database" => "Konfigurer databasen", "will be used" => "vil blive brugt", diff --git a/core/l10n/de.php b/core/l10n/de.php index 38092b99256..79edfb725d7 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( +"Expiration date is in the past." => "Ablaufdatum liegt in der Vergangenheit.", "Couldn't send mail to following users: %s " => "Die E-Mail konnte nicht an folgende Benutzer gesendet werden: %s", "Turned on maintenance mode" => "Wartungsmodus eingeschaltet", "Turned off maintenance mode" => "Wartungsmodus ausgeschaltet", @@ -121,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "Zur Login-Seite", "New password" => "Neues Passwort", "Reset password" => "Passwort zurücksetzen", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OSX wird nicht unterstützt und %s wird auf dieser Platform nicht korrekt funktionieren. Benutzung auf eigenes Risiko!", +"For the best results, please consider using a GNU/Linux server instead." => "Für die besten Resultate sollte stattdessen ein GNU/Linux Server verwendet werden.", "Personal" => "Persönlich", "Users" => "Benutzer", "Apps" => "Apps", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index b704ab81a1e..a0877e792e2 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( +"Expiration date is in the past." => "Ablaufdatum liegt in der Vergangenheit.", "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", @@ -121,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "Zur Login-Seite", "New password" => "Neues Passwort", "Reset password" => "Passwort zurücksetzen", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OSX wird nicht unterstützt und %s wird auf dieser Platform nicht korrekt funktionieren. Benutzung auf eigenes Risiko!", +"For the best results, please consider using a GNU/Linux server instead." => "Für die besten Resultate sollte stattdessen ein GNU/Linux Server verwendet werden.", "Personal" => "Persönlich", "Users" => "Benutzer", "Apps" => "Apps", diff --git a/core/l10n/en_GB.php b/core/l10n/en_GB.php index 7e2d5b8e910..bc36f5a4446 100644 --- a/core/l10n/en_GB.php +++ b/core/l10n/en_GB.php @@ -122,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "To login page", "New password" => "New password", "Reset password" => "Reset password", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! ", +"For the best results, please consider using a GNU/Linux server instead." => "For the best results, please consider using a GNU/Linux server instead.", "Personal" => "Personal", "Users" => "Users", "Apps" => "Apps", diff --git a/core/l10n/es.php b/core/l10n/es.php index 7794914fc9e..52f1a15089a 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -1,6 +1,6 @@ <?php $TRANSLATIONS = array( -"Expiration date is in the past." => "La fecha de caducidad está en el pasado.", +"Expiration date is in the past." => "Ha pasado la fecha de caducidad", "Couldn't send mail to following users: %s " => "No se pudo enviar el mensaje a los siguientes usuarios: %s", "Turned on maintenance mode" => "Modo mantenimiento activado", "Turned off maintenance mode" => "Modo mantenimiento desactivado", @@ -105,7 +105,7 @@ $TRANSLATIONS = array( "Edit tags" => "Editar etiquetas", "Error loading dialog template: {error}" => "Error cargando plantilla de diálogo: {error}", "No tags selected for deletion." => "No hay etiquetas seleccionadas para borrar.", -"Please reload the page." => "Vuelva a cargar la página.", +"Please reload the page." => "Recargue/Actualice la página", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "La actualización ha fracasado. Por favor, informe de este problema a la <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">Comunidad de ownCloud</a>.", "The update was successful. Redirecting you to ownCloud now." => "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora.", "%s password reset" => "%s restablecer contraseña", @@ -122,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "A la página de inicio de sesión", "New password" => "Nueva contraseña", "Reset password" => "Restablecer contraseña", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X no está soportado y %s no funcionará bien en esta plataforma. ¡Úsela a su propio riesgo! ", +"For the best results, please consider using a GNU/Linux server instead." => "Para óptimos resultados, considere utilizar un servidor GNU/Linux.", "Personal" => "Personal", "Users" => "Usuarios", "Apps" => "Aplicaciones", @@ -177,6 +179,6 @@ $TRANSLATIONS = array( "Thank you for your patience." => "Gracias por su paciencia.", "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." +"Please reload this page after a short time to continue using ownCloud." => "Por favor, recargue la página tras un corto periodo de tiempo para continuar usando ownCloud" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 7811e62e0b6..c1c678e7e3f 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -122,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "A páxina de conexión", "New password" => "Novo contrasinal", "Reset password" => "Restabelecer o contrasinal", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X non é compatíbel e %s non funcionará correctamente nesta plataforma. Úseo baixo o seu risco!", +"For the best results, please consider using a GNU/Linux server instead." => "Para obter mellores resultados, considere o emprego dun servidor GNU/Linux no seu canto.", "Personal" => "Persoal", "Users" => "Usuarios", "Apps" => "Aplicativos", diff --git a/core/l10n/it.php b/core/l10n/it.php index 86b664d616f..2f0017263fa 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -122,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "Alla pagina di accesso", "New password" => "Nuova password", "Reset password" => "Ripristina la password", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X non è supportato e %s non funzionerà correttamente su questa piattaforma. Usalo a tuo rischio!", +"For the best results, please consider using a GNU/Linux server instead." => "Per avere il risultato migliore, prendi in considerazione l'utilizzo di un server GNU/Linux.", "Personal" => "Personale", "Users" => "Utenti", "Apps" => "Applicazioni", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 77e1dff586f..05cef6afd5a 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -122,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "Naar de login-pagina", "New password" => "Nieuw wachtwoord", "Reset password" => "Reset wachtwoord", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OSX wordt niet ondersteund en %s zal niet goed werken op dit platform. Gebruik het op uw eigen risico!", +"For the best results, please consider using a GNU/Linux server instead." => "Voor het beste resultaat adviseren wij het gebruik van een GNU/Linux server.", "Personal" => "Persoonlijk", "Users" => "Gebruikers", "Apps" => "Apps", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index e1b97a4b247..17fde36c7cd 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -122,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "Do strony logowania", "New password" => "Nowe hasło", "Reset password" => "Zresetuj hasło", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X nie jest wspierany i %s nie będzie działać poprawnie na tej platformie. Używasz na własne ryzyko!", +"For the best results, please consider using a GNU/Linux server instead." => "Aby uzyskać najlepsze rezultaty, rozważ w to miejsce użycie serwera GNU/Linux.", "Personal" => "Osobiste", "Users" => "Użytkownicy", "Apps" => "Aplikacje", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index a0fa7b14d2b..b31925cdf79 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -122,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "Para a página de login", "New password" => "Nova senha", "Reset password" => "Redefinir senha", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X não é suportado e %s não funcionará corretamente nesta plataforma. Use-o por sua conta e risco!", +"For the best results, please consider using a GNU/Linux server instead." => "Para obter os melhores resultados, por favor, considere o uso de um servidor GNU/Linux em seu lugar.", "Personal" => "Pessoal", "Users" => "Usuários", "Apps" => "Aplicações", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 8d84e7d31bc..e2fdc36be0b 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( +"Expiration date is in the past." => "Дата истечения срока действия в прошлом.", "Couldn't send mail to following users: %s " => "Невозможно отправить письмо следующим пользователям: %s", "Turned on maintenance mode" => "Режим отладки включён", "Turned off maintenance mode" => "Режим отладки отключён", @@ -56,6 +57,11 @@ $TRANSLATIONS = array( "(all selected)" => "(выбраны все)", "({count} selected)" => "({count} выбрано)", "Error loading file exists template" => "Ошибка при загрузке шаблона существующего файла", +"Very weak password" => "Очень слабый пароль", +"Weak password" => "Слабый пароль", +"So-so password" => "Так себе пароль", +"Good password" => "Хороший пароль", +"Strong password" => "Устойчивый к взлому пароль", "Shared" => "Общие", "Share" => "Открыть доступ", "Error" => "Ошибка", @@ -103,6 +109,7 @@ $TRANSLATIONS = array( "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "При обновлении произошла ошибка. Пожалуйста сообщите об этом в <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud сообщество</a>.", "The update was successful. Redirecting you to ownCloud now." => "Обновление прошло успешно. Перенаправляемся в Ваш ownCloud...", "%s password reset" => "%s сброс пароля", +"A problem has occurred whilst sending the email, please contact your administrator." => "Произошла ошибка при отправке сообщения электронной почты, пожалуйста, свяжитесь с Вашим администратором.", "Use the following link to reset your password: {link}" => "Используйте следующую ссылку чтобы сбросить пароль: {link}", "The link to reset your password has been sent to your email.<br>If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator ." => "Ссылка для сброса пароля отправлена вам по электронной почте.<br>Если вы не получите письмо в пределах одной-двух минут, проверьте папку Спам. <br>Если письма там нет, обратитесь к своему администратору.", "Request failed!<br>Did you make sure your email/username was right?" => "Запрос не удался. Вы уверены, что email или имя пользователя указаны верно?", @@ -115,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "На страницу авторизации", "New password" => "Новый пароль", "Reset password" => "Сбросить пароль", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X не поддерживается и %s не будет работать правильно на этой платформе. Используйте ее на свой страх и риск!", +"For the best results, please consider using a GNU/Linux server instead." => "Для достижения наилучших результатов, пожалуйста, рассмотрите возможность использовать взамен GNU/Linux сервер.", "Personal" => "Личное", "Users" => "Пользователи", "Apps" => "Приложения", @@ -140,6 +149,7 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Ваша папка с данными и файлы возможно доступны из интернета потому что файл .htaccess не работает.", "For information how to properly configure your server, please see the <a href=\"%s\" target=\"_blank\">documentation</a>." => "Для информации, как правильно настроить Ваш сервер, пожалуйста загляните в <a hrev=\"%s\"target=\"blank\">документацию</a>.", "Create an <strong>admin account</strong>" => "Создать <strong>учётную запись администратора</strong>", +"Storage & database" => "Система хранения данных & база данных", "Data folder" => "Директория с данными", "Configure the database" => "Настройка базы данных", "will be used" => "будет использовано", @@ -162,6 +172,7 @@ $TRANSLATIONS = array( "remember" => "запомнить", "Log in" => "Войти", "Alternative Logins" => "Альтернативные имена пользователя", +"Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> with you.<br><a href=\"%s\">View it!</a><br><br>" => "Здравствуйте,<br><br>просто даём вам знать, что %s открыл доступ к %s для вас.<br><a href=\"%s\">Посмотреть!</a><br><br>", "This ownCloud instance is currently in single user mode." => "Эта установка ownCloud в настоящее время в однопользовательском режиме.", "This means only administrators can use the instance." => "Это значит, что только администраторы могут использовать эту установку.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Обратитесь к вашему системному администратору если это сообщение не исчезает или появляется неожиданно.", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 51a4c7d2e24..2cfdfd11899 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( +"Expiration date is in the past." => "Datum preteka je v preteklosti.", "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", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index bd717ef8d92..affa1b063d0 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -111,7 +111,7 @@ $TRANSLATIONS = array( "%s password reset" => "%s parola sıfırlama", "A problem has occurred whilst sending the email, please contact your administrator." => "E-posta gönderilirken bir hata oluştu. Lütfen yönetinizle iletişime geçin.", "Use the following link to reset your password: {link}" => "Parolanızı sıfırlamak için bu bağlantıyı kullanın: {link}", -"The link to reset your password has been sent to your email.<br>If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator ." => "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.<br>Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk dizinini kontrol ediniz.<br> Eğer orada da bulamazsanız sistem yöneticinize sorunuz.", +"The link to reset your password has been sent to your email.<br>If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator ." => "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.<br>Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk/gereksiz dizinini kontrol ediniz.<br> Eğer yine bulamazsanız sistem yöneticinize sorunuz.", "Request failed!<br>Did you make sure your email/username was right?" => "İstek başarısız!<br>E-posta ve/veya kullanıcı adınızın doğru olduğundan emin misiniz?", "You will receive a link to reset your password via Email." => "Parolanızı sıfırlamak için bir bağlantıyı e-posta olarak alacaksınız.", "Username" => "Kullanıcı Adı", @@ -122,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "Giriş sayfasına git", "New password" => "Yeni parola", "Reset password" => "Parolayı sıfırla", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X desteklenmemediğinden %s bu platformda düzgün çalışmayacak. Kendi riskinizle kullanın!", +"For the best results, please consider using a GNU/Linux server instead." => "En iyi sonuçlar için GNU/Linux sunucusu kullanın.", "Personal" => "Kişisel", "Users" => "Kullanıcılar", "Apps" => "Uygulamalar", diff --git a/core/routes.php b/core/routes.php index 76cf03c3673..74be8806120 100644 --- a/core/routes.php +++ b/core/routes.php @@ -7,7 +7,8 @@ */ // Post installation check -/** @var $this OC_Router */ + +/** @var $this OCP\Route\IRouter */ $this->create('post_setup_check', '/post-setup-check') ->action('OC_Setup', 'postSetupCheck'); diff --git a/core/setup/controller.php b/core/setup/controller.php index bb9c9101fe2..1a8e9b2b764 100644 --- a/core/setup/controller.php +++ b/core/setup/controller.php @@ -20,7 +20,7 @@ class Controller { $errors = array('errors' => $e); if(count($e) > 0) { - $options = array_merge($post, $opts, $errors); + $options = array_merge($opts, $post, $errors); $this->display($options); } else { @@ -28,7 +28,8 @@ class Controller { } } else { - $this->display($opts); + $options = array_merge($opts, $post); + $this->display($options); } } @@ -41,6 +42,7 @@ class Controller { 'dbname' => '', 'dbtablespace' => '', 'dbhost' => '', + 'dbtype' => '', ); $parameters = array_merge($defaults, $post); diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index 91157b923a5..5788d1d5bd3 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -36,7 +36,7 @@ <body id="body-login"> <div class="wrapper"><!-- for sticky footer --> <header><div id="header"> - <div class='logo'></div> + <div class="logo svg"></div> <div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div> </div></header> diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 3d897503480..ba5f6ef9b54 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -15,7 +15,7 @@ </title> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> - <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=0.5, maximum-scale=1.0"> + <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0"> <meta name="apple-itunes-app" content="app-id=543672169"> <link rel="shortcut icon" href="<?php print_unescaped(image_path('', 'favicon.png')); ?>" /> <link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path('', 'favicon-touch.png')); ?>" /> @@ -46,7 +46,7 @@ </div> <header><div id="header"> <a href="<?php print_unescaped(link_to('', 'index.php')); ?>" title="" id="owncloud"> - <div class='logo-wide'></div> + <div class="logo-wide svg"></div> </a> <div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div> <div id="settings" class="svg"> @@ -48,6 +48,9 @@ try { require_once 'lib/base.php'; + // load all apps to get all api routes properly setup + OC_App::loadApps(); + \OC::$session->close(); $logger = \OC_Log::$object; @@ -119,6 +122,10 @@ try { // done! TemporaryCronClass::$sent = true; + // Log the successfull cron exec + if (OC_Config::getValue('cron_log', true)) { + OC_Appconfig::setValue('core', 'lastcron', time()); + } exit(); } catch (Exception $ex) { diff --git a/index.php b/index.php index 0a2f15f9f5e..bd94d0e908d 100755 --- a/index.php +++ b/index.php @@ -21,8 +21,6 @@ * */ -$RUNTIME_NOAPPS = true; //no apps, yet - try { require_once 'lib/base.php'; diff --git a/l10n/ach/core.po b/l10n/ach/core.po index fd769464486..3640708d6e3 100644 --- a/l10n/ach/core.po +++ b/l10n/ach/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/ach/settings.po b/l10n/ach/settings.po index b36c8be6ba4..ebba9b13098 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ady/core.po b/l10n/ady/core.po index 3595cbff3fb..a686756ba93 100644 --- a/l10n/ady/core.po +++ b/l10n/ady/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/ady/settings.po b/l10n/ady/settings.po index b5a1d179782..334e9c42e7f 100644 --- a/l10n/ady/settings.po +++ b/l10n/ady/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/af/core.po b/l10n/af/core.po index 101475a4c79..94d53b73573 100644 --- a/l10n/af/core.po +++ b/l10n/af/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/af/settings.po b/l10n/af/settings.po index af8fee54359..d312d89bbf6 100644 --- a/l10n/af/settings.po +++ b/l10n/af/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index aa1182d724b..1edc5b40a1d 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -533,6 +533,18 @@ msgstr "Nuwe wagwoord" msgid "Reset password" msgstr "Herstel wagwoord" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Persoonlik" diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index 040f1b78f06..92e777a3d53 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ak/core.po b/l10n/ak/core.po index f6cfe7040fa..f498dda78d8 100644 --- a/l10n/ak/core.po +++ b/l10n/ak/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/ak/settings.po b/l10n/ak/settings.po index 5ffaa25d81b..cb7953cc98c 100644 --- a/l10n/ak/settings.po +++ b/l10n/ak/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/am_ET/core.po b/l10n/am_ET/core.po new file mode 100644 index 00000000000..7101e46cec9 --- /dev/null +++ b/l10n/am_ET/core.po @@ -0,0 +1,801 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-25 09:38+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am_ET\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: avatar/controller.php:62 +msgid "No image or file provided" +msgstr "" + +#: avatar/controller.php:81 +msgid "Unknown filetype" +msgstr "" + +#: avatar/controller.php:85 +msgid "Invalid image" +msgstr "" + +#: avatar/controller.php:115 avatar/controller.php:142 +msgid "No temporary profile picture available, try again" +msgstr "" + +#: avatar/controller.php:135 +msgid "No crop data provided" +msgstr "" + +#: js/config.php:36 +msgid "Sunday" +msgstr "" + +#: js/config.php:37 +msgid "Monday" +msgstr "" + +#: js/config.php:38 +msgid "Tuesday" +msgstr "" + +#: js/config.php:39 +msgid "Wednesday" +msgstr "" + +#: js/config.php:40 +msgid "Thursday" +msgstr "" + +#: js/config.php:41 +msgid "Friday" +msgstr "" + +#: js/config.php:42 +msgid "Saturday" +msgstr "" + +#: js/config.php:47 +msgid "January" +msgstr "" + +#: js/config.php:48 +msgid "February" +msgstr "" + +#: js/config.php:49 +msgid "March" +msgstr "" + +#: js/config.php:50 +msgid "April" +msgstr "" + +#: js/config.php:51 +msgid "May" +msgstr "" + +#: js/config.php:52 +msgid "June" +msgstr "" + +#: js/config.php:53 +msgid "July" +msgstr "" + +#: js/config.php:54 +msgid "August" +msgstr "" + +#: js/config.php:55 +msgid "September" +msgstr "" + +#: js/config.php:56 +msgid "October" +msgstr "" + +#: js/config.php:57 +msgid "November" +msgstr "" + +#: js/config.php:58 +msgid "December" +msgstr "" + +#: js/js.js:458 +msgid "Settings" +msgstr "" + +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:995 +msgid "seconds ago" +msgstr "" + +#: js/js.js:996 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:997 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:998 +msgid "today" +msgstr "" + +#: js/js.js:999 +msgid "yesterday" +msgstr "" + +#: js/js.js:1000 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1001 +msgid "last month" +msgstr "" + +#: js/js.js:1002 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1003 +msgid "months ago" +msgstr "" + +#: js/js.js:1004 +msgid "last year" +msgstr "" + +#: js/js.js:1005 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:146 +msgid "Error loading file picker template: {error}" +msgstr "" + +#: js/oc-dialogs.js:172 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:182 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:199 +msgid "Ok" +msgstr "" + +#: js/oc-dialogs.js:219 +msgid "Error loading message template: {error}" +msgstr "" + +#: js/oc-dialogs.js:347 +msgid "{count} file conflict" +msgid_plural "{count} file conflicts" +msgstr[0] "" +msgstr[1] "" + +#: js/oc-dialogs.js:361 +msgid "One file conflict" +msgstr "" + +#: js/oc-dialogs.js:367 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "" +"If you select both versions, the copied file will have a number added to its" +" name." +msgstr "" + +#: js/oc-dialogs.js:376 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:386 +msgid "Continue" +msgstr "" + +#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +msgid "(all selected)" +msgstr "" + +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +msgid "({count} selected)" +msgstr "" + +#: js/oc-dialogs.js:457 +msgid "Error loading file exists template" +msgstr "" + +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + +#: js/share.js:51 js/share.js:66 js/share.js:106 +msgid "Shared" +msgstr "" + +#: js/share.js:109 +msgid "Share" +msgstr "" + +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:767 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:171 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:178 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:188 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:190 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:214 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:220 +msgid "Share link" +msgstr "" + +#: js/share.js:223 +msgid "Password protect" +msgstr "" + +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 +msgid "Password" +msgstr "" + +#: js/share.js:230 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:234 +msgid "Email link to person" +msgstr "" + +#: js/share.js:235 +msgid "Send" +msgstr "" + +#: js/share.js:240 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:241 +msgid "Expiration date" +msgstr "" + +#: js/share.js:277 +msgid "Share via email:" +msgstr "" + +#: js/share.js:280 +msgid "No people found" +msgstr "" + +#: js/share.js:324 js/share.js:363 +msgid "group" +msgstr "" + +#: js/share.js:335 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:379 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:401 +msgid "Unshare" +msgstr "" + +#: js/share.js:409 +msgid "notify by email" +msgstr "" + +#: js/share.js:412 +msgid "can edit" +msgstr "" + +#: js/share.js:414 +msgid "access control" +msgstr "" + +#: js/share.js:417 +msgid "create" +msgstr "" + +#: js/share.js:420 +msgid "update" +msgstr "" + +#: js/share.js:423 +msgid "delete" +msgstr "" + +#: js/share.js:426 +msgid "share" +msgstr "" + +#: js/share.js:698 +msgid "Password protected" +msgstr "" + +#: js/share.js:711 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:729 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:754 +msgid "Sending ..." +msgstr "" + +#: js/share.js:765 +msgid "Email sent" +msgstr "" + +#: js/share.js:789 +msgid "Warning" +msgstr "" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "" + +#: js/update.js:17 +msgid "" +"The update was unsuccessful. Please report this issue to the <a " +"href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud " +"community</a>." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:70 +#, php-format +msgid "%s password reset" +msgstr "" + +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:7 +msgid "" +"The link to reset your password has been sent to your email.<br>If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.<br>If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!<br>Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:25 +msgid "" +"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?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:116 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:15 +msgid "Cloud not found" +msgstr "" + +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +msgstr "" + +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" + +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:26 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:27 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:34 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:40 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:42 +#, php-format +msgid "" +"For information how to properly configure your server, please see the <a " +"href=\"%s\" target=\"_blank\">documentation</a>." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an <strong>admin account</strong>" +msgstr "" + +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" + +#: templates/installation.php:77 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:90 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:94 +msgid "will be used" +msgstr "" + +#: templates/installation.php:109 +msgid "Database user" +msgstr "" + +#: templates/installation.php:118 +msgid "Database password" +msgstr "" + +#: templates/installation.php:123 +msgid "Database name" +msgstr "" + +#: templates/installation.php:132 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:140 +msgid "Database host" +msgstr "" + +#: templates/installation.php:150 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:150 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable " +"JavaScript</a> and re-load this interface." +msgstr "" + +#: templates/layout.user.php:44 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:74 templates/singleuser.user.php:8 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:46 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:51 +msgid "remember" +msgstr "" + +#: templates/login.php:54 +msgid "Log in" +msgstr "" + +#: templates/login.php:60 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> " +"with you.<br><a href=\"%s\">View it!</a><br><br>" +msgstr "" + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "" + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "" + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "" + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "" + +#: templates/update.admin.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "" diff --git a/l10n/am_ET/files.po b/l10n/am_ET/files.po new file mode 100644 index 00000000000..e301286aeef --- /dev/null +++ b/l10n/am_ET/files.po @@ -0,0 +1,416 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-25 09:38+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am_ET\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:15 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:25 ajax/move.php:28 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:58 js/files.js:98 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:63 +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" + +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:97 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:102 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:119 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:156 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:22 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:66 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:19 ajax/upload.php:53 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:29 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:71 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:78 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:79 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:81 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:82 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:83 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:84 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:85 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:103 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:160 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:170 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:189 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 js/filelist.js:14 +msgid "Files" +msgstr "" + +#: js/file-upload.js:247 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" + +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:340 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:385 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:477 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:564 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:568 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:570 js/filelist.js:430 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:636 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:652 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:702 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:149 +msgid "Share" +msgstr "" + +#: js/fileactions.js:162 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:223 +msgid "Rename" +msgstr "" + +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +msgid "Pending" +msgstr "" + +#: js/filelist.js:456 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:591 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:591 +msgid "undo" +msgstr "" + +#: js/filelist.js:662 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:695 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:931 js/filelist.js:969 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" + +#: js/files.js:117 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:121 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:134 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:138 +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:142 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:379 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:610 js/files.js:654 +msgid "Error moving file" +msgstr "" + +#: js/files.js:610 js/files.js:654 +msgid "Error" +msgstr "" + +#: js/files.js:672 templates/index.php:68 +msgid "Name" +msgstr "" + +#: js/files.js:673 templates/index.php:80 +msgid "Size" +msgstr "" + +#: js/files.js:674 templates/index.php:82 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:111 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:14 templates/index.php:23 +msgid "Upload" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:6 +msgid "New" +msgstr "" + +#: templates/index.php:9 +msgid "New text file" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:13 +msgid "New folder" +msgstr "" + +#: templates/index.php:14 +msgid "Folder" +msgstr "" + +#: templates/index.php:17 +msgid "From link" +msgstr "" + +#: templates/index.php:41 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:46 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:52 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:57 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:74 +msgid "Download" +msgstr "" + +#: templates/index.php:85 templates/index.php:86 +msgid "Delete" +msgstr "" + +#: templates/index.php:98 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:100 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:105 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:108 +msgid "Current scanning" +msgstr "" diff --git a/l10n/am_ET/files_encryption.po b/l10n/am_ET/files_encryption.po new file mode 100644 index 00000000000..ee25cebfde9 --- /dev/null +++ b/l10n/am_ET/files_encryption.po @@ -0,0 +1,201 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-25 09:38+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am_ET\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:52 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:54 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: 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 "" + +#: files/error.php:16 +#, php-format +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 "" + +#: 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 "" + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + +#: hooks/hooks.php:64 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:65 +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 "" + +#: hooks/hooks.php:295 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:4 templates/settings-personal.php:3 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:7 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:11 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:29 templates/settings-personal.php:59 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:34 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:40 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:47 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:58 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:9 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:12 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:14 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:22 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:28 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:33 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:42 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:44 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:60 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:61 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/am_ET/files_external.po b/l10n/am_ET/files_external.po new file mode 100644 index 00000000000..a99ed6d50e1 --- /dev/null +++ b/l10n/am_ET/files_external.po @@ -0,0 +1,127 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-25 09:38+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am_ET\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:68 js/google.js:89 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:102 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:45 js/google.js:122 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:631 +msgid "" +"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:635 +msgid "" +"<b>Warning:</b> 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:638 +msgid "" +"<b>Warning:</b> The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:155 templates/settings.php:156 +msgid "Delete" +msgstr "" + +#: templates/settings.php:127 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount the following external storage" +msgstr "" + +#: templates/settings.php:147 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:165 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/am_ET/files_sharing.po b/l10n/am_ET/files_sharing.po new file mode 100644 index 00000000000..5df40a55708 --- /dev/null +++ b/l10n/am_ET/files_sharing.po @@ -0,0 +1,72 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-25 09:38+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am_ET\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + +#: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 +msgid "Password" +msgstr "" + +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:17 +#, php-format +msgid "shared by %s" +msgstr "" + +#: templates/public.php:44 +#, php-format +msgid "Download %s" +msgstr "" + +#: templates/public.php:48 +msgid "Direct link" +msgstr "" diff --git a/l10n/am_ET/files_trashbin.po b/l10n/am_ET/files_trashbin.po new file mode 100644 index 00000000000..5c0bf63448b --- /dev/null +++ b/l10n/am_ET/files_trashbin.po @@ -0,0 +1,64 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-25 09:38+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am_ET\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:59 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:64 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +msgid "Error" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 +msgid "restored" +msgstr "" + +#: templates/index.php:7 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 +msgid "Name" +msgstr "" + +#: templates/index.php:23 templates/index.php:25 +msgid "Restore" +msgstr "" + +#: templates/index.php:31 +msgid "Deleted" +msgstr "" + +#: templates/index.php:34 templates/index.php:35 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:8 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/am_ET/files_versions.po b/l10n/am_ET/files_versions.po new file mode 100644 index 00000000000..63482f68050 --- /dev/null +++ b/l10n/am_ET/files_versions.po @@ -0,0 +1,43 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-25 09:38+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am_ET\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:14 +msgid "Versions" +msgstr "" + +#: js/versions.js:60 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:87 +msgid "More versions..." +msgstr "" + +#: js/versions.js:125 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:155 +msgid "Restore" +msgstr "" diff --git a/l10n/am_ET/lib.po b/l10n/am_ET/lib.po new file mode 100644 index 00000000000..0bec5cd684f --- /dev/null +++ b/l10n/am_ET/lib.po @@ -0,0 +1,338 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-25 09:38+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am_ET\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: private/app.php:236 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:248 +msgid "No app name specified" +msgstr "" + +#: private/app.php:353 +msgid "Help" +msgstr "" + +#: private/app.php:366 +msgid "Personal" +msgstr "" + +#: private/app.php:377 +msgid "Settings" +msgstr "" + +#: private/app.php:389 +msgid "Users" +msgstr "" + +#: private/app.php:402 +msgid "Admin" +msgstr "" + +#: private/app.php:875 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "" + +#: private/avatar.php:66 +msgid "Unknown filetype" +msgstr "" + +#: private/avatar.php:71 +msgid "Invalid image" +msgstr "" + +#: private/defaults.php:35 +msgid "web services under your control" +msgstr "" + +#: private/files.php:231 +msgid "ZIP download is turned off." +msgstr "" + +#: private/files.php:232 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: private/files.php:233 private/files.php:261 +msgid "Back to Files" +msgstr "" + +#: private/files.php:258 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: private/files.php:259 +msgid "" +"Please download the files separately in smaller chunks or kindly ask your " +"administrator." +msgstr "" + +#: private/installer.php:64 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:71 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:76 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:90 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:104 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:126 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:132 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:141 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:147 +msgid "" +"App can't be installed because it contains the <shipped>true</shipped> tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:160 +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:170 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:183 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:29 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:40 private/json.php:63 private/json.php:88 +msgid "Authentication error" +msgstr "" + +#: private/json.php:52 +msgid "Token expired. Please reload page." +msgstr "" + +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + +#: private/search/provider/file.php:18 private/search/provider/file.php:36 +msgid "Files" +msgstr "" + +#: private/search/provider/file.php:27 private/search/provider/file.php:34 +msgid "Text" +msgstr "" + +#: private/search/provider/file.php:30 +msgid "Images" +msgstr "" + +#: private/setup/abstractdatabase.php:26 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: private/setup/abstractdatabase.php:29 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: private/setup/abstractdatabase.php:32 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: private/setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" + +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL/MariaDB" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL/MariaDB." +msgstr "" + +#: private/setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: private/setup/oci.php:41 private/setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: private/setup/oci.php:170 private/setup/oci.php:202 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: private/setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: private/setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: private/setup.php:202 +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:203 +#, php-format +msgid "Please double check the <a href='%s'>installation guides</a>." +msgstr "" + +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:133 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:134 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:135 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:136 +msgid "today" +msgstr "" + +#: private/template/functions.php:137 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:139 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:141 +msgid "last month" +msgstr "" + +#: private/template/functions.php:142 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:144 +msgid "last year" +msgstr "" + +#: private/template/functions.php:145 +msgid "years ago" +msgstr "" diff --git a/l10n/am_ET/settings.po b/l10n/am_ET/settings.po new file mode 100644 index 00000000000..f2886d1023c --- /dev/null +++ b/l10n/am_ET/settings.po @@ -0,0 +1,824 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am_ET\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:299 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:336 +msgid "Authentication method" +msgstr "" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 changepassword/controller.php:55 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your full name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change full name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:25 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: changepassword/controller.php:20 +msgid "Wrong password" +msgstr "" + +#: changepassword/controller.php:42 +msgid "No user supplied" +msgstr "" + +#: changepassword/controller.php:74 +msgid "" +"Please provide an admin recovery password, otherwise all user data will be " +"lost" +msgstr "" + +#: changepassword/controller.php:79 +msgid "" +"Wrong admin recovery password. Please check the password and try again." +msgstr "" + +#: changepassword/controller.php:87 +msgid "" +"Back-end doesn't support password change, but the users encryption key was " +"successfully updated." +msgstr "" + +#: changepassword/controller.php:92 changepassword/controller.php:103 +msgid "Unable to change password" +msgstr "" + +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 +msgid "Disable" +msgstr "" + +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 +msgid "Enable" +msgstr "" + +#: js/apps.js:95 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:149 +msgid "Updating...." +msgstr "" + +#: js/apps.js:152 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:152 +msgid "Error" +msgstr "" + +#: js/apps.js:153 templates/apps.php:54 +msgid "Update" +msgstr "" + +#: js/apps.js:156 +msgid "Updated" +msgstr "" + +#: js/personal.js:246 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:277 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:278 +msgid "Weak password" +msgstr "" + +#: js/personal.js:279 +msgid "So-so password" +msgstr "" + +#: js/personal.js:280 +msgid "Good password" +msgstr "" + +#: js/personal.js:281 +msgid "Strong password" +msgstr "" + +#: js/personal.js:316 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/users.js:47 +msgid "deleted" +msgstr "" + +#: js/users.js:47 +msgid "undo" +msgstr "" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 +msgid "Groups" +msgstr "" + +#: js/users.js:105 templates/users.php:90 templates/users.php:128 +msgid "Group Admin" +msgstr "" + +#: js/users.js:127 templates/users.php:168 +msgid "Delete" +msgstr "" + +#: js/users.js:310 +msgid "add group" +msgstr "" + +#: js/users.js:486 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:487 js/users.js:493 js/users.js:508 +msgid "Error creating user" +msgstr "" + +#: js/users.js:492 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:516 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:49 personal.php:50 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "" + +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:47 templates/admin.php:61 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:50 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "" + +#: templates/admin.php:64 +msgid "" +"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." +msgstr "" + +#: templates/admin.php:75 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:78 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:79 +#, php-format +msgid "Please double check the <a href=\"%s\">installation guides</a>." +msgstr "" + +#: templates/admin.php:90 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:93 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:104 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:107 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:118 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:123 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:127 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:131 +#, 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:143 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:146 +msgid "" +"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." +msgstr "" + +#: templates/admin.php:160 +msgid "Cron" +msgstr "" + +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:192 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:200 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:205 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:211 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:212 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:219 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:220 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:227 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:228 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:235 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:236 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:243 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:246 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:253 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:254 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:261 +msgid "Security" +msgstr "" + +#: templates/admin.php:274 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:276 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:282 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:294 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:296 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:327 +msgid "From address" +msgstr "" + +#: templates/admin.php:349 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:353 +msgid "Server address" +msgstr "" + +#: templates/admin.php:357 +msgid "Port" +msgstr "" + +#: templates/admin.php:362 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:363 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:366 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:370 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:371 +msgid "Send email" +msgstr "" + +#: templates/admin.php:376 +msgid "Log" +msgstr "" + +#: templates/admin.php:377 +msgid "Log level" +msgstr "" + +#: templates/admin.php:409 +msgid "More" +msgstr "" + +#: templates/admin.php:410 +msgid "Less" +msgstr "" + +#: templates/admin.php:416 templates/personal.php:181 +msgid "Version" +msgstr "" + +#: templates/admin.php:420 templates/personal.php:184 +msgid "" +"Developed by the <a href=\"http://ownCloud.org/contact\" " +"target=\"_blank\">ownCloud community</a>, the <a " +"href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is " +"licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" " +"target=\"_blank\"><abbr title=\"Affero General Public " +"License\">AGPL</abbr></a>." +msgstr "" + +#: templates/apps.php:14 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:31 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:37 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:19 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:27 +#, php-format +msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" +msgstr "" + +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +msgid "Password" +msgstr "" + +#: templates/personal.php:40 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:41 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:43 +msgid "Current password" +msgstr "" + +#: templates/personal.php:46 +msgid "New password" +msgstr "" + +#: templates/personal.php:50 +msgid "Change password" +msgstr "" + +#: templates/personal.php:64 templates/users.php:86 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:81 +msgid "Email" +msgstr "" + +#: templates/personal.php:83 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:101 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:103 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:104 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:105 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:107 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" + +#: templates/personal.php:112 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:120 templates/personal.php:121 +msgid "Language" +msgstr "" + +#: templates/personal.php:140 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:147 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:149 +#, php-format +msgid "" +"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via " +"WebDAV</a>" +msgstr "" + +#: templates/personal.php:161 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:167 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:172 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:19 +msgid "Login Name" +msgstr "" + +#: templates/users.php:28 +msgid "Create" +msgstr "" + +#: templates/users.php:34 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:35 templates/users.php:36 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:40 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:137 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:46 templates/users.php:146 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:64 templates/users.php:161 +msgid "Other" +msgstr "" + +#: templates/users.php:85 +msgid "Username" +msgstr "" + +#: templates/users.php:92 +msgid "Storage" +msgstr "" + +#: templates/users.php:106 +msgid "change full name" +msgstr "" + +#: templates/users.php:110 +msgid "set new password" +msgstr "" + +#: templates/users.php:141 +msgid "Default" +msgstr "" diff --git a/l10n/am_ET/user_ldap.po b/l10n/am_ET/user_ldap.po new file mode 100644 index 00000000000..df272f69784 --- /dev/null +++ b/l10n/am_ET/user_ldap.po @@ -0,0 +1,523 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-25 09:38+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am_ET\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:42 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:46 +msgid "" +"The configuration is invalid. Please have a look at the logs for further " +"details." +msgstr "" + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:83 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:84 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:99 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:127 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:128 +msgid "Success" +msgstr "" + +#: js/settings.js:133 +msgid "Error" +msgstr "" + +#: js/settings.js:838 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:847 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:856 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:873 js/settings.js:882 +msgid "Select groups" +msgstr "" + +#: js/settings.js:876 js/settings.js:885 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:879 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:906 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:913 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:922 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:923 +msgid "Confirm Deletion" +msgstr "" + +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:784 lib/wizard.php:796 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:963 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Groups meeting these criteria are available in %s:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" + +#: templates/part.wizard-loginfilter.php:4 +msgid "Users login with this attribute:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:38 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" +msgstr "" + +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" +msgstr "" + +#: templates/part.wizard-server.php:30 +msgid "Host" +msgstr "" + +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 +msgid "User DN" +msgstr "" + +#: 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 "" + +#: templates/part.wizard-server.php:52 +msgid "Password" +msgstr "" + +#: templates/part.wizard-server.php:53 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" + +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit %s access to users meeting these criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:20 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:22 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:22 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:23 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:23 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:24 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:25 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:25 +msgid "Only connect to the replica server." +msgstr "" + +#: templates/settings.php:26 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:27 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:27 +#, php-format +msgid "" +"Not recommended, use it for testing only! If connection only works with this" +" option, import the LDAP server's SSL certificate in your %s server." +msgstr "" + +#: templates/settings.php:28 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:28 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:30 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:32 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" + +#: templates/settings.php:33 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:33 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:34 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:34 templates/settings.php:37 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:35 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:35 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" + +#: templates/settings.php:36 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:36 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:37 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:38 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:43 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:44 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:44 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:45 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:46 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:46 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:52 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:53 +msgid "" +"By default the internal username will be created from the UUID attribute. It" +" makes sure that the username is unique and characters do not need to be " +"converted. The internal username has the restriction that only these " +"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " +"with their ASCII correspondence or simply omitted. On collisions a number " +"will be added/increased. The internal username is used to identify a user " +"internally. It is also the default name for the user home folder. It is also" +" a part of remote URLs, for instance for all *DAV services. With this " +"setting, the default behavior can be overridden. To achieve a similar " +"behavior as before ownCloud 5 enter the user display name attribute in the " +"following field. Leave it empty for default behavior. Changes will have " +"effect only on newly mapped (added) LDAP users." +msgstr "" + +#: templates/settings.php:54 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:55 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:56 +msgid "" +"By default, the UUID attribute is automatically detected. The UUID attribute" +" is used to doubtlessly identify LDAP users and groups. Also, the internal " +"username will be created based on the UUID, if not specified otherwise " +"above. You can override the setting and pass an attribute of your choice. " +"You must make sure that the attribute of your choice can be fetched for both" +" users and groups and it is unique. Leave it empty for default behavior. " +"Changes will have effect only on newly mapped (added) LDAP users and groups." +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:58 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:59 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:60 +msgid "" +"Usernames are used to store and assign (meta) data. In order to precisely " +"identify and recognize users, each LDAP user will have a internal username. " +"This requires a mapping from username to LDAP user. The created username is " +"mapped to the UUID of the LDAP user. Additionally the DN is cached as well " +"to reduce LDAP interaction, but it is not used for identification. If the DN" +" changes, the changes will be found. The internal username is used all over." +" Clearing the mappings will have leftovers everywhere. Clearing the mappings" +" is not configuration sensitive, it affects all LDAP configurations! Never " +"clear the mappings in a production environment, only in a testing or " +"experimental stage." +msgstr "" + +#: templates/settings.php:61 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:61 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/am_ET/user_webdavauth.po b/l10n/am_ET/user_webdavauth.po new file mode 100644 index 00000000000..effb19c1696 --- /dev/null +++ b/l10n/am_ET/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-25 09:38+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am_ET\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "Address: " +msgstr "" + +#: templates/settings.php:7 +msgid "" +"The user credentials will be sent to this address. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index ce9440bbe6e..b31f6772137 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-25 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 14:00+0000\n" +"Last-Translator: Abderraouf Mehdi Bouhali <armbouhali@gmail.com>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,11 +46,11 @@ msgstr "" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "نوع الملف غير معروف" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "الصورة غير صالحة" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" @@ -491,7 +491,7 @@ msgstr "تم التحديث بنجاح , يتم اعادة توجيهك الان #: lostpassword/controller.php:70 #, php-format msgid "%s password reset" -msgstr "" +msgstr "تمت إعادة ضبط كلمة مرور %s" #: lostpassword/controller.php:72 msgid "" @@ -533,7 +533,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "نعم، أريد إعادة ضبظ كلمة مروري" #: lostpassword/templates/lostpassword.php:30 msgid "Reset" @@ -555,6 +555,18 @@ msgstr "كلمات سر جديدة" msgid "Reset password" msgstr "تعديل كلمة السر" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "شخصي" @@ -642,7 +654,7 @@ msgstr "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" #: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "يرجى تحديث نسخة PHP لاستخدام %s بطريقة آمنة" #: templates/installation.php:33 msgid "" @@ -667,7 +679,7 @@ msgstr "مجلدات البيانات والملفات الخاصة قد تكو msgid "" "For information how to properly configure your server, please see the <a " "href=\"%s\" target=\"_blank\">documentation</a>." -msgstr "" +msgstr "لمزيد من المعلومات عن كيفية إعداد خادمك، يرجى الاطلاع على <a href=\"%s\" target=\"_blank\">صفحة المساعدة</a>." #: templates/installation.php:48 msgid "Create an <strong>admin account</strong>" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 45ba3707ab5..03c7ac1650d 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -19,66 +19,66 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "فشل في نقل الملف %s - يوجد ملف بنفس هذا الاسم" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "فشل في نقل %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "اسم الملف لا يجوز أن يكون فارغا" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -90,54 +90,54 @@ msgstr "غير قادر على تحميل المجلد" msgid "Invalid Token" msgstr "علامة غير صالحة" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "لم يتم رفع أي ملف , خطأ غير معروف" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "تم ترفيع الملفات بنجاح." -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "حجم الملف المرفوع تجاوز قيمة upload_max_filesize الموجودة في ملف php.ini " -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "لم يتم ترفيع أي من الملفات" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "المجلد المؤقت غير موجود" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "خطأ في الكتابة على القرص الصلب" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "لا يوجد مساحة تخزينية كافية" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "*فشلت علمية الرفع. تعذر إيجاد الملف الذي تم رفعه.\n*فشلت علمية التحميل. تعذر إيجاد الملف الذي تم تحميله." -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "فشلت عملية الرفع. تعذر الحصول على معلومات الملف." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "مسار غير صحيح." @@ -158,40 +158,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "تم إلغاء عملية رفع الملفات ." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "تعذر الحصول على نتيجة من الخادم" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "عملية رفع الملفات قيد التنفيذ. اغلاق الصفحة سوف يلغي عملية رفع الملفات." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} موجود مسبقا" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index ef6f0d12859..103ad5d2377 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Abderraouf Mehdi Bouhali <armbouhali@gmail.com>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-23 11:30+0000\n" +"Last-Translator: Abderraouf Mehdi Bouhali <armbouhali@gmail.com>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +20,15 @@ msgstr "" #: js/share.js:13 msgid "Shared by {owner}" -msgstr "مشاركة بواسطة المالك {owner}" +msgstr "مشاركة من طرف {owner}" #: templates/authenticate.php:4 msgid "This share is password-protected" -msgstr "" +msgstr "هذه المشاركة محمية بكلمة مرور" #: templates/authenticate.php:7 msgid "The password is wrong. Try again." -msgstr "" +msgstr "كلمة المرور خاطئة. حاول مرة أخرى" #: templates/authenticate.php:10 msgid "Password" @@ -35,27 +36,27 @@ msgstr "كلمة المرور" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "عذرا، يبدو أن هذا الرابط لم يعد يعمل." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "الأسباب الممكنة :" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "تم حذف العنصر المطلوب" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "انتهت صلاحية الرابط" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "المشاركة غير مفعلة" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "لمزيد من المعلومات، يرجى سؤال الشخص الذي أرسل هذا الرابط" #: templates/public.php:17 #, php-format @@ -65,8 +66,8 @@ msgstr "مشاركة من قبل %s" #: templates/public.php:44 #, php-format msgid "Download %s" -msgstr "" +msgstr "تحميل %s" #: templates/public.php:48 msgid "Direct link" -msgstr "" +msgstr "رابط مباشر" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 4eef8c34320..e354e3194c0 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Abderraouf Mehdi Bouhali <armbouhali@gmail.com>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-19 06:40+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:10+0000\n" +"Last-Translator: Abderraouf Mehdi Bouhali <armbouhali@gmail.com>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,9 +36,9 @@ msgstr "حذف الملفات" msgid "Error" msgstr "خطأ" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" -msgstr "" +msgstr "تمت الاستعادة" #: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index a78e73ae96a..e86849ce2bc 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Abderraouf Mehdi Bouhali <armbouhali@gmail.com>, 2014 # suliman <291101251@std.qu.edu.sa>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" -"PO-Revision-Date: 2014-03-18 08:40+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-23 13:40+0000\n" +"Last-Translator: Abderraouf Mehdi Bouhali <armbouhali@gmail.com>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,11 +57,11 @@ msgstr "خطا في ترقية \"%s\"." #: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "نوع الملف غير معروف" #: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "الصورة غير صالحة" #: private/defaults.php:35 msgid "web services under your control" @@ -103,7 +104,7 @@ msgstr "" #: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" -msgstr "" +msgstr "الأرشيفات من نوع %s غير مدعومة" #: private/installer.php:104 msgid "Failed to open archive when installing app" @@ -111,7 +112,7 @@ msgstr "" #: private/installer.php:126 msgid "App does not provide an info.xml file" -msgstr "" +msgstr "التطبيق لا يتوفر على ملف info.xml" #: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" @@ -137,12 +138,12 @@ msgstr "" #: private/installer.php:170 msgid "App directory already exists" -msgstr "" +msgstr "مجلد التطبيق موجود مسبقا" #: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "" +msgstr "لا يمكن إنشاء مجلد التطبيق. يرجى تعديل الصلاحيات. %s" #: private/json.php:29 msgid "Application is not enabled" @@ -158,7 +159,7 @@ msgstr "انتهت صلاحية الكلمة , يرجى اعادة تحميل ا #: private/json.php:75 msgid "Unknown user" -msgstr "" +msgstr "المستخدم غير معروف" #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" @@ -200,7 +201,7 @@ msgstr "انت بحاجة لكتابة اسم مستخدم موجود أو حس #: private/setup/mysql.php:12 msgid "MySQL/MariaDB username and/or password not valid" -msgstr "" +msgstr "اسم مستخدم أو كلمة مرور MySQL/MariaDB غير صحيحين" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -228,7 +229,7 @@ msgstr "الأمر المخالف كان : \"%s\"" #: private/setup/mysql.php:85 #, php-format msgid "MySQL/MariaDB user '%s'@'localhost' exists already." -msgstr "" +msgstr "مستخدم MySQL/MariaDB '%s'@'localhost' موجود مسبقا" #: private/setup/mysql.php:86 msgid "Drop this user from MySQL/MariaDB" @@ -241,11 +242,11 @@ msgstr "" #: private/setup/mysql.php:92 msgid "Drop this user from MySQL/MariaDB." -msgstr "" +msgstr "حذف هذا المستخدم من MySQL/MariaDB" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" -msgstr "" +msgstr "لم تنجح محاولة اتصال Oracle" #: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" @@ -268,13 +269,13 @@ msgstr "اعداد اسم مستخدم للمدير" msgid "Set an admin password." msgstr "اعداد كلمة مرور للمدير" -#: private/setup.php:198 +#: private/setup.php:202 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:199 +#: private/setup.php:203 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "الرجاء التحقق من <a href='%s'>دليل التنصيب</a>." @@ -283,7 +284,7 @@ msgstr "الرجاء التحقق من <a href='%s'>دليل التنصيب</a>. #: private/share/mailnotifications.php:119 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s شارك »%s« معك" #: private/tags.php:193 #, php-format diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 06d399baad7..6e6dd969c68 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 11:40+0000\n" -"Last-Translator: m.shehab <shehab.mahmood@gmail.com>\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -50,15 +50,15 @@ msgstr "تم ارسال البريد الالكتروني" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:282 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "وضعية الإرسال" -#: admin/controller.php:118 templates/admin.php:295 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "التشفير" -#: admin/controller.php:120 templates/admin.php:319 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "أسلوب التطابق" @@ -430,157 +430,173 @@ msgid "Cron" msgstr "مجدول" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "قم بتنفيذ مهمة واحدة مع كل صفحة تم تحميلها" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "الملف cron.php تم تسجيله فى خدمه webcron لاستدعاء الملف cron.php كل 15 دقيقه" -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "استخدم نظام خدمة cron لـ استدعاء ملف cron.php كل 15 دقيقة " -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "مشاركة" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "السماح بالمشاركة عن طريق الAPI " -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "السماح للتطبيقات بالمشاركة عن طريق الAPI" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "السماح بالعناوين" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "السماح للمستعملين بمشاركة البنود للعموم عن طريق الروابط " -#: templates/admin.php:210 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "السماح بالرفع للعامة " -#: templates/admin.php:211 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "السماح للمستخدمين بتفعيل الرفع للاخرين من خلال مجلد المشاركة العام " -#: templates/admin.php:218 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "السماح بإعادة المشاركة " -#: templates/admin.php:219 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "السماح للمستخدمين باعادة مشاركة الملفات التي تم مشاركتها معهم" -#: templates/admin.php:226 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "السماح للمستعملين بإعادة المشاركة مع أي أحد " -#: templates/admin.php:229 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "السماح للمستعمينٍ لإعادة المشاركة فقط مع المستعملين في مجموعاتهم" -#: templates/admin.php:236 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "السماح بتنبيهات البريد الالكتروني." -#: templates/admin.php:237 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "السماح للمستخدم الى ارسال تنبيه البريد الالكتروني للملفات المشتركة " -#: templates/admin.php:244 +#: templates/admin.php:261 msgid "Security" msgstr "حماية" -#: templates/admin.php:257 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "فرض HTTPS" -#: templates/admin.php:259 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "اجبار العميل للاتصال بـ %s عن طريق اتصال مشفر" -#: templates/admin.php:265 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "يرجى الاتصال بـ %s عن طريق HTTPS لتفعيل او تعطيل SSL enforcement." -#: templates/admin.php:277 +#: templates/admin.php:294 msgid "Email Server" msgstr "خادم البريد الالكتروني" -#: templates/admin.php:279 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:310 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:332 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:336 +#: templates/admin.php:353 msgid "Server address" msgstr "عنوان الخادم" -#: templates/admin.php:340 +#: templates/admin.php:357 msgid "Port" msgstr "المنفذ" -#: templates/admin.php:345 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:346 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:354 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:359 +#: templates/admin.php:376 msgid "Log" msgstr "سجل" -#: templates/admin.php:360 +#: templates/admin.php:377 msgid "Log level" msgstr "مستوى السجل" -#: templates/admin.php:392 +#: templates/admin.php:409 msgid "More" msgstr "المزيد" -#: templates/admin.php:393 +#: templates/admin.php:410 msgid "Less" msgstr "أقل" -#: templates/admin.php:399 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "إصدار" -#: templates/admin.php:403 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 7b68c2ffef2..a4e3832904c 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/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: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 11:40+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: m.shehab <shehab.mahmood@gmail.com>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/az/core.po b/l10n/az/core.po index 1a5b86d9bd8..d27ed545d6b 100644 --- a/l10n/az/core.po +++ b/l10n/az/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/az/settings.po b/l10n/az/settings.po index 3865826ed1c..b43ce968a40 100644 --- a/l10n/az/settings.po +++ b/l10n/az/settings.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: az\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: admin/controller.php:66 #, php-format @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/be/core.po b/l10n/be/core.po index effb684e298..b654e238ac4 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -544,6 +544,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/be/settings.po b/l10n/be/settings.po index 89a49c03c77..1209b101c88 100644 --- a/l10n/be/settings.po +++ b/l10n/be/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 1b04afa78a5..ca776f7ede6 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# cybertorture <cybertorture@gmail.com>, 2014 +# cybertorture, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-25 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 08:40+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" @@ -358,7 +358,7 @@ msgstr "Не са открити хора" #: js/share.js:324 js/share.js:363 msgid "group" -msgstr "" +msgstr "група" #: js/share.js:335 msgid "Resharing is not allowed" @@ -534,6 +534,18 @@ msgstr "Нова парола" msgid "Reset password" msgstr "Нулиране на парола" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Лични" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index bb8c6f450fa..6d6412edeed 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Файлът е качен успешно" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Файлът който се опитвате да качите надвишава стойностите в MAX_FILE_SIZE в HTML формата." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Файлът е качен частично" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Фахлът не бе качен" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Липсва временна папка" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Възникна проблем при запис в диска" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Невалидна директория." @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Качването е спряно." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 2536afc6938..1b3b08d1c86 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "Пощата е изпратена" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Криптиране" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "Обновяване" msgid "Updated" msgstr "Обновено" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Вашият web сървър все още не е удачно настроен да позволява синхронизация на файлове, защото WebDAV интерфейсът изглежда не работи." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Крон" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Споделяне" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Адрес на сървъра" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Още" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "По-малко" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Версия" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 658e5fef623..78f3b6a1147 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 289807abe81..de745e7cda0 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -533,6 +533,18 @@ msgstr "নতুন কূটশব্দ" msgid "Reset password" msgstr "কূটশব্দ পূনঃনির্ধারণ কর" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "ব্যক্তিগত" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 199301ae110..43c3d26d9a4 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "%s কে স্থানান্তর করা সম্ভব হলো না - এই নামের ফাইল বিদ্যমান" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "%s কে স্থানান্তর করা সম্ভব হলো না" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "ফাইলের নামটি ফাঁকা রাখা যাবে না।" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "কোন ফাইল আপলোড করা হয় নি। সমস্যার কারণটি অজ্ঞাত।" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "কোন সমস্যা হয় নি, ফাইল আপলোড সুসম্পন্ন হয়েছে।" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "আপলোড করা ফাইলটি php.ini তে বর্ণিত upload_max_filesize নির্দেশিত আয়তন অতিক্রম করছেঃ" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "আপলোড করা ফাইলটি HTML ফর্মে উল্লিখিত MAX_FILE_SIZE নির্ধারিত ফাইলের সর্বোচ্চ আকার অতিক্রম করতে চলেছে " -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "আপলোড করা ফাইলটি আংশিক আপলোড করা হয়েছে" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "কোন ফাইল আপলোড করা হয় নি" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "অস্থায়ী ফোল্ডারটি হারানো গিয়েছে" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "ডিস্কে লিখতে ব্যর্থ" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "ভুল ডিরেক্টরি" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "আপলোড বাতিল করা হয়েছে।" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} টি বিদ্যমান" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index c0055544d1c..6262dfa6513 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "ই-মেইল পাঠানো হয়েছে" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "সংকেতায়ন" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "পরিবর্ধন" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "নিরাপত্তাজনিত সতর্কতা" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "সার্ভার ঠিকানা" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "পোর্ট" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "বেশী" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "কম" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "ভার্সন" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 5e7729e1d4d..a7caeb40194 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index 1ec7d92c27d..fe90076c0d4 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -538,6 +538,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 0bd442a17ae..09ae4d496d7 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: bs\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/bs/settings.po b/l10n/bs/settings.po index 1cc7c77d8b9..42c0053daf9 100644 --- a/l10n/bs/settings.po +++ b/l10n/bs/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/bs/user_ldap.po b/l10n/bs/user_ldap.po index 3ec9651aca4..268fdc806b2 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 5307cf0d57a..6ea1ff1cdb7 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-25 13:08+0000\n" +"Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,7 +22,7 @@ msgstr "" #: ajax/share.php:88 msgid "Expiration date is in the past." -msgstr "" +msgstr "La data de venciment és en el passat." #: ajax/share.php:120 ajax/share.php:162 #, php-format @@ -536,6 +536,18 @@ msgstr "Contrasenya nova" msgid "Reset password" msgstr "Reinicialitza la contrasenya" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "Mac OS X no té suport i %s no funcionarà correctament en aquesta plataforma. Useu-ho al vostre risc!" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "Per millors resultats, millor considereu utilitzar un servidor GNU/Linux." + #: strings.php:5 msgid "Personal" msgstr "Personal" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 1f6bb0a6955..f504332b2d6 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -21,66 +21,66 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "No s'ha pogut moure %s - Ja hi ha un fitxer amb aquest nom" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr " No s'ha pogut moure %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "El nom del fitxer no pot ser buit." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" no es un fitxer vàlid." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "La carpeta de destí s'ha mogut o eliminat." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "El nom %s ja s'usa en la carpeta %s. Indiqueu un nom diferent." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "No és un origen vàlid" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "El servidor no té autorització per obrir URLs, comproveu la configuració del servidor" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "S'ha produït un error en baixar %s a %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "S'ha produït un error en crear el fitxer" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "El nom de la carpeta no pot ser buit." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "S'ha produït un error en crear la carpeta" @@ -92,54 +92,54 @@ msgstr "No es pot establir la carpeta de pujada." msgid "Invalid Token" msgstr "Testimoni no vàlid" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "No s'ha carregat cap fitxer. Error desconegut" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "No hi ha errors, el fitxer s'ha carregat correctament" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "L’arxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El fitxer carregat supera la directiva MAX_FILE_SIZE especificada al formulari HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "El fitxer només s'ha carregat parcialment" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "No s'ha carregat cap fitxer" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Falta un fitxer temporal" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Ha fallat en escriure al disc" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "No hi ha prou espai disponible" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "La pujada ha fallat. El fitxer pujat no s'ha trobat." -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "La pujada ha fallat. No s'ha pogut obtenir informació del fitxer." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Directori no vàlid." @@ -160,40 +160,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "No hi ha prou espai lliure, està carregant {size1} però només pot {size2}" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "La pujada s'ha cancel·lat." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "No hi ha resposta del servidor." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "L'URL no pot ser buit" -#: js/file-upload.js:566 +#: js/file-upload.js:568 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:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} ja existeix" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "No s'ha pogut crear el fitxer" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "No s'ha pogut crear la carpeta" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Error en obtenir la URL" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index caae9ab09e8..9368907aeb2 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -4,14 +4,15 @@ # # Translators: # rogerc, 2013-2014 +# Josep Torné <josep@substantiu.com>, 2014 # rogerc, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" -"PO-Revision-Date: 2014-03-18 09:10+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 13:43+0000\n" +"Last-Translator: Josep Torné <josep@substantiu.com>\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" @@ -49,15 +50,15 @@ msgstr "El correu electrónic s'ha enviat" msgid "You need to set your user email before being able to send test emails." msgstr "Heu d'establir un nom d'usuari abans de poder enviar correus de prova." -#: admin/controller.php:116 templates/admin.php:282 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Mode d'enviament" -#: admin/controller.php:118 templates/admin.php:295 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Xifrat" -#: admin/controller.php:120 templates/admin.php:319 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Mètode d'autenticació" @@ -429,157 +430,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "L'últim cron s'ha executat el %s" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Executa una tasca per cada paquet carregat" -#: templates/admin.php:175 +#: templates/admin.php:192 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:183 +#: templates/admin.php:200 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:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Compartir" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Habilita l'API de compartir" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Permet que les aplicacions utilitzin l'API de compartir" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Permet enllaços" -#: templates/admin.php:203 +#: templates/admin.php:220 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:210 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Permet pujada pública" -#: templates/admin.php:211 +#: templates/admin.php:228 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:218 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Permet compartir de nou" -#: templates/admin.php:219 +#: templates/admin.php:236 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:226 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Permet compartir amb qualsevol" -#: templates/admin.php:229 +#: templates/admin.php:246 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:236 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Permet notificacions per correu electrónic" -#: templates/admin.php:237 +#: templates/admin.php:254 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:244 +#: templates/admin.php:261 msgid "Security" msgstr "Seguretat" -#: templates/admin.php:257 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Força HTTPS" -#: templates/admin.php:259 +#: templates/admin.php:276 #, 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:265 +#: templates/admin.php:282 #, 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:277 +#: templates/admin.php:294 msgid "Email Server" msgstr "Servidor de correu" -#: templates/admin.php:279 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "S'usa per enviar notificacions." -#: templates/admin.php:310 +#: templates/admin.php:327 msgid "From address" msgstr "Des de l'adreça" -#: templates/admin.php:332 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Es requereix autenticació" -#: templates/admin.php:336 +#: templates/admin.php:353 msgid "Server address" msgstr "Adreça del servidor" -#: templates/admin.php:340 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:345 +#: templates/admin.php:362 msgid "Credentials" msgstr "Credencials" -#: templates/admin.php:346 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "Nom d'usuari SMTP" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "Contrasenya SMTP" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Prova l'arranjament del correu" -#: templates/admin.php:354 +#: templates/admin.php:371 msgid "Send email" msgstr "Envia correu" -#: templates/admin.php:359 +#: templates/admin.php:376 msgid "Log" msgstr "Registre" -#: templates/admin.php:360 +#: templates/admin.php:377 msgid "Log level" msgstr "Nivell de registre" -#: templates/admin.php:392 +#: templates/admin.php:409 msgid "More" msgstr "Més" -#: templates/admin.php:393 +#: templates/admin.php:410 msgid "Less" msgstr "Menys" -#: templates/admin.php:399 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versió" -#: templates/admin.php:403 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index ce1cd4df022..90f2c187f2f 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/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: 2014-03-19 01:55-0400\n" -"PO-Revision-Date: 2014-03-18 08:52+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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/cs_CZ/core.po b/l10n/cs_CZ/core.po index f9c88aad9f3..32fec75418b 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-23 22:41+0000\n" +"Last-Translator: pstast <petr@stastny.eu>\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" @@ -27,7 +27,7 @@ msgstr "" #: ajax/share.php:88 msgid "Expiration date is in the past." -msgstr "" +msgstr "Datum expirace je v minulosti." #: ajax/share.php:120 ajax/share.php:162 #, php-format @@ -488,7 +488,7 @@ msgstr "reset hesla %s" msgid "" "A problem has occurred whilst sending the email, please contact your " "administrator." -msgstr "" +msgstr "Při odesílání e-mailu nastala chyba, kontaktujte prosím svého administrátora." #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -546,6 +546,18 @@ msgstr "Nové heslo" msgid "Reset password" msgstr "Obnovit heslo" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "Mac OS X není podporován a %s nebude na této platformě správně fungovat. Používejte pouze na vlastní nebezpečí!" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "Místo toho zvažte pro nejlepší funkčnost použití GNU/Linux serveru." + #: strings.php:5 msgid "Personal" msgstr "Osobní" @@ -767,7 +779,7 @@ msgstr "Alternativní přihlášení" msgid "" "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> " "with you.<br><a href=\"%s\">View it!</a><br><br>" -msgstr "" +msgstr "Hej ty,<br><br>jen ti dávám vědět, že %s sdílí <strong>%s</strong> s tebou.<br><a href=\"%s\">Zobrazit!</a><br><br>" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index fff8ff7c03c..cdc38895bf0 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"Last-Translator: pstast <petr@stastny.eu>\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" @@ -25,66 +25,66 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Nelze přesunout %s - již existuje soubor se stejným názvem" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Nelze přesunout %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Název souboru nemůže být prázdný řetězec." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" je neplatným názvem souboru." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Cílová složka byla přesunuta nebo smazána." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Název %s ve složce %s již existuje. Vyberte prosím jiné jméno." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Neplatný zdroj" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server není oprávněn otevírat adresy URL. Ověřte, prosím, konfiguraci serveru." -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Chyba při stahování %s do %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Chyba při vytváření souboru" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Název složky nemůže být prázdný." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Chyba při vytváření složky" @@ -96,54 +96,54 @@ msgstr "Nelze nastavit adresář pro nahrané soubory." msgid "Invalid Token" msgstr "Neplatný token" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Žádný soubor nebyl odeslán. Neznámá chyba" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Soubor byl odeslán úspěšně" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný ve formuláři HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Soubor byl odeslán pouze částečně" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Žádný soubor nebyl odeslán" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Chybí adresář pro dočasné soubory" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Zápis na disk selhal" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nedostatek dostupného úložného prostoru" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Nahrávání selhalo. Nepodařilo se nalézt nahraný soubor." -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Nahrávání selhalo. Nepodařilo se získat informace o souboru." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Neplatný adresář" @@ -164,40 +164,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Není dostatek místa pro uložení, velikost souboru je {size1}, zbývá pouze {size2}" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Odesílání zrušeno." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Nepodařilo se získat výsledek ze serveru." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Probíhá odesílání souboru. Opuštění stránky způsobí zrušení nahrávání." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL nemůže zůstat prázdná" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "V osobní složce je název 'Shared' rezervovaný" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} již existuje" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Nepodařilo se vytvořit soubor" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Nepodařilo se vytvořit složku" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Chyba při načítání URL" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index 48ef3fef556..27f50770daf 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -7,15 +7,15 @@ # Honza K. <honza889@gmail.com>, 2013 # liska_, 2013 # Martin <fireball@atlas.cz>, 2013 -# pstast <petr@stastny.eu>, 2013 +# pstast <petr@stastny.eu>, 2013-2014 # Tomáš Chvátal <tomas.chvatal@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-23 22:41+0000\n" +"Last-Translator: pstast <petr@stastny.eu>\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" @@ -107,7 +107,7 @@ msgstr "Počáteční šifrování zahájeno... Toto může chvíli trvat. Počk #: js/detect-migration.js:25 msgid "Initial encryption running... Please try again later." -msgstr "" +msgstr "Probíhá počáteční šifrování... Zkuste to prosím znovu později." #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 349b37ace76..b9152a082ad 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -4,14 +4,14 @@ # # Translators: # m23 <black23@gmail.com>, 2014 -# pstast <petr@stastny.eu>, 2013 +# pstast <petr@stastny.eu>, 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" -"PO-Revision-Date: 2014-03-18 21:30+0000\n" -"Last-Translator: m23 <black23@gmail.com>\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-23 21:50+0000\n" +"Last-Translator: pstast <petr@stastny.eu>\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" @@ -43,20 +43,20 @@ msgstr "Chyba při nastavení úložiště Google Drive" msgid "Saved" msgstr "Uloženo" -#: lib/config.php:512 +#: lib/config.php:631 msgid "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Varování:</b> 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:516 +#: lib/config.php:635 msgid "" "<b>Warning:</b> 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 "<b>Varování:</b> 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:519 +#: lib/config.php:638 msgid "" "<b>Warning:</b> The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -118,7 +118,7 @@ msgstr "Zapnout externí uživatelské úložiště" #: templates/settings.php:130 msgid "Allow users to mount the following external storage" -msgstr "Povolit uživatelů připojit externí úložiště" +msgstr "Povolit uživatelů připojit následující externí úložiště" #: templates/settings.php:147 msgid "SSL root certificates" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index ce64f200f2f..4b4b4e76aa6 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -5,14 +5,14 @@ # Translators: # liska_, 2013 # m23 <black23@gmail.com>, 2014 -# pstast <petr@stastny.eu>, 2013 +# pstast <petr@stastny.eu>, 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" -"PO-Revision-Date: 2014-03-18 12:24+0000\n" -"Last-Translator: m23 <black23@gmail.com>\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-23 21:50+0000\n" +"Last-Translator: pstast <petr@stastny.eu>\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" @@ -63,7 +63,7 @@ msgstr "Pro více informací kontaktujte osobu, která vám zaslala tento odkaz. #: templates/public.php:17 #, php-format msgid "shared by %s" -msgstr "sdíleno %s" +msgstr "sdílí %s" #: templates/public.php:44 #, php-format diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 88c09e4d702..cebf39ff8de 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-23 21:48+0000\n" +"Last-Translator: pstast <petr@stastny.eu>\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" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 7d2e44fc8d4..c1edc976374 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -6,15 +6,15 @@ # Honza K. <honza889@gmail.com>, 2013 # liska_, 2013 # m23 <black23@gmail.com>, 2014 -# pstast <petr@stastny.eu>, 2013 +# pstast <petr@stastny.eu>, 2013-2014 # Tomáš Chvátal <tomas.chvatal@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" -"PO-Revision-Date: 2014-03-18 21:30+0000\n" -"Last-Translator: m23 <black23@gmail.com>\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-23 21:50+0000\n" +"Last-Translator: pstast <petr@stastny.eu>\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" @@ -236,7 +236,7 @@ msgstr "MySQL/MariaDB uživatel '%s'@'localhost' již existuje." #: private/setup/mysql.php:86 msgid "Drop this user from MySQL/MariaDB" -msgstr "Zahodit uživatele z MySQL/MariaDB" +msgstr "Smazat tohoto uživatele z MySQL/MariaDB" #: private/setup/mysql.php:91 #, php-format @@ -245,7 +245,7 @@ msgstr "MySQL/MariaDB uživatel '%s'@'%%' již existuje" #: private/setup/mysql.php:92 msgid "Drop this user from MySQL/MariaDB." -msgstr "Zahodit uživatele z MySQL/MariaDB." +msgstr "Smazat tohoto uživatele z MySQL/MariaDB." #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -272,13 +272,13 @@ msgstr "Zadejte uživatelské jméno správce." msgid "Set an admin password." msgstr "Zadejte heslo správce." -#: private/setup.php:198 +#: private/setup.php:202 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:199 +#: private/setup.php:203 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Zkonzultujte, prosím, <a href='%s'>průvodce instalací</a>." diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index a4e5a0e16c6..3a2d8b6029b 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 21:20+0000\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 21:10+0000\n" "Last-Translator: m23 <black23@gmail.com>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" #: admin/controller.php:66 #, php-format msgid "Invalid value supplied for %s" -msgstr "" +msgstr "Uvedena nesprávná hodnota pro %s" #: admin/controller.php:73 msgid "Saved" @@ -35,16 +35,16 @@ msgstr "Uloženo" #: admin/controller.php:90 msgid "test email settings" -msgstr "nastavení zkušebního emailu" +msgstr "otestovat nastavení e-mailu" #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." -msgstr "" +msgstr "Pokud jste obdrželi tento e-mail, nastavení se zdají být v pořádku." #: admin/controller.php:94 msgid "" "A problem occurred while sending the e-mail. Please revisit your settings." -msgstr "" +msgstr "Při odesílání e-mailu nastala chyba. Překontrolujte vaše nastavení." #: admin/controller.php:99 msgid "Email sent" @@ -52,19 +52,19 @@ msgstr "E-mail odeslán" #: admin/controller.php:101 msgid "You need to set your user email before being able to send test emails." -msgstr "" +msgstr "Pro možnost odeslání zkušebních e-mailů musíte nejprve nastavit svou e-mailovou adresu." -#: admin/controller.php:116 templates/admin.php:282 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" -msgstr "" +msgstr "Mód odesílání" -#: admin/controller.php:118 templates/admin.php:295 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Šifrování" -#: admin/controller.php:120 templates/admin.php:319 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" -msgstr "Metoda autentifikace" +msgstr "Metoda ověření" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -325,11 +325,11 @@ msgstr "Přihlásit" #: templates/admin.php:18 msgid "Plain" -msgstr "" +msgstr "Čistý text" #: templates/admin.php:19 msgid "NT LAN Manager" -msgstr "" +msgstr "Správce NT LAN" #: templates/admin.php:24 msgid "SSL" @@ -434,157 +434,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "Poslední cron byl spuštěn v %s." + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "Poslední cron byl spuštěn v %s. To se stalo před více než hodinu. Vypadá to, že není něco v pořádku." + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "Cron ještě nebyl spuštěn!" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Spustit jednu úlohu s každým načtením stránky" -#: templates/admin.php:175 +#: templates/admin.php:192 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 volal cron.php jednou za 15 minut přes http." -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Použít systémovou službu cron pro volání cron.php každých 15 minut." -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Sdílení" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Povolit API sdílení" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Povolit aplikacím používat API sdílení" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Povolit odkazy" -#: templates/admin.php:203 +#: templates/admin.php:220 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:210 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Povolit veřejné nahrávání souborů" -#: templates/admin.php:211 +#: templates/admin.php:228 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:218 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Povolit znovu-sdílení" -#: templates/admin.php:219 +#: templates/admin.php:236 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:226 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Povolit uživatelům sdílet s kýmkoliv" -#: templates/admin.php:229 +#: templates/admin.php:246 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:236 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Povolit e-mailová upozornění" -#: templates/admin.php:237 +#: templates/admin.php:254 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:244 +#: templates/admin.php:261 msgid "Security" msgstr "Zabezpečení" -#: templates/admin.php:257 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Vynutit HTTPS" -#: templates/admin.php:259 +#: templates/admin.php:276 #, 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:265 +#: templates/admin.php:282 #, 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:277 +#: templates/admin.php:294 msgid "Email Server" -msgstr "Emailový server" +msgstr "E-mailový server" -#: templates/admin.php:279 +#: templates/admin.php:296 msgid "This is used for sending out notifications." -msgstr "Toto se používá při odesílání upozornění." +msgstr "Toto se používá pro odesílání upozornění." -#: templates/admin.php:310 +#: templates/admin.php:327 msgid "From address" msgstr "Adresa odesílatele" -#: templates/admin.php:332 +#: templates/admin.php:349 msgid "Authentication required" -msgstr "Ověření vyžadováno" +msgstr "Vyžadováno ověření" -#: templates/admin.php:336 +#: templates/admin.php:353 msgid "Server address" msgstr "Adresa serveru" -#: templates/admin.php:340 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:345 +#: templates/admin.php:362 msgid "Credentials" msgstr "Přihlašovací údaje" -#: templates/admin.php:346 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "SMTP uživatelské jméno " -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "SMTP heslo" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Test email settings" -msgstr "Nastavení zkušebního emailu" +msgstr "Otestovat nastavení e-mailu" -#: templates/admin.php:354 +#: templates/admin.php:371 msgid "Send email" msgstr "Odeslat e-mail" -#: templates/admin.php:359 +#: templates/admin.php:376 msgid "Log" msgstr "Záznam" -#: templates/admin.php:360 +#: templates/admin.php:377 msgid "Log level" msgstr "Úroveň zaznamenávání" -#: templates/admin.php:392 +#: templates/admin.php:409 msgid "More" msgstr "Více" -#: templates/admin.php:393 +#: templates/admin.php:410 msgid "Less" msgstr "Méně" -#: templates/admin.php:399 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Verze" -#: templates/admin.php:403 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -695,7 +711,7 @@ msgstr "Vaše e-mailová adresa" msgid "" "Fill in an email address to enable password recovery and receive " "notifications" -msgstr "" +msgstr "Zadejte e-mailovou adresu pro umožnění obnovy zapomenutého hesla a pro přijímání upozornění." #: templates/personal.php:96 msgid "Profile picture" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 37b925a6984..f20b90fcd2d 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -7,15 +7,15 @@ # Honza K. <honza889@gmail.com>, 2013 # liska_, 2013 # cvanca <mrs.jenkins.oh.yeah@gmail.com>, 2013 -# pstast <petr@stastny.eu>, 2013 +# pstast <petr@stastny.eu>, 2013-2014 # Tomáš Chvátal <tomas.chvatal@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"Last-Translator: pstast <petr@stastny.eu>\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" @@ -171,7 +171,7 @@ msgstr "Nápověda" #: templates/part.wizard-groupfilter.php:4 #, php-format msgid "Groups meeting these criteria are available in %s:" -msgstr "" +msgstr "Skupiny splňující tyto podmínky jsou k dispozici v %s:" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -207,7 +207,7 @@ msgstr "nalezené skupiny" #: templates/part.wizard-loginfilter.php:4 msgid "Users login with this attribute:" -msgstr "" +msgstr "Uživatelé se přihlašují s tímto atributem:" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -275,7 +275,7 @@ msgstr "V rozšířeném nastavení můžete určit základní DN pro uživatele #: templates/part.wizard-userfilter.php:4 #, php-format msgid "Limit %s access to users meeting these criteria:" -msgstr "" +msgstr "Omezit přístup %s uživatelům splňujícím tyto podmínky:" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -419,13 +419,13 @@ msgstr "Asociace člena skupiny" #: templates/settings.php:39 msgid "Nested Groups" -msgstr "" +msgstr "Vnořené skupiny" #: templates/settings.php:39 msgid "" "When switched on, groups that contain groups are supported. (Only works if " "the group member attribute contains DNs.)" -msgstr "" +msgstr "Pokud zapnuto, je možno používat skupiny, které obsahují jiné skupiny. (Funguje pouze pokud atribut člena skupiny obsahuje DN.)" #: templates/settings.php:41 msgid "Special Attributes" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 232e585fe01..68a772c1cb9 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -544,6 +544,18 @@ msgstr "Cyfrinair newydd" msgid "Reset password" msgstr "Ailosod cyfrinair" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personol" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 57f1b462337..f9ca4e11176 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Methwyd symud %s - Mae ffeil gyda'r enw hwn eisoes yn bodoli" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Methwyd symud %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Does dim hawl cael enw ffeil gwag." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ni lwythwyd ffeil i fyny. Gwall anhysbys." -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Does dim gwall, llwythodd y ffeil i fyny'n llwyddiannus" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb upload_max_filesize yn php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb MAX_FILE_SIZE bennwyd yn y ffurflen HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Dim ond yn rhannol y llwythwyd y ffeil i fyny" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ni lwythwyd ffeil i fyny" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Plygell dros dro yn eisiau" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Methwyd ysgrifennu i'r ddisg" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Dim digon o le storio ar gael" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Cyfeiriadur annilys." @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Diddymwyd llwytho i fyny." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Mae ffeiliau'n cael eu llwytho i fyny. Bydd gadael y dudalen hon nawr yn diddymu'r broses." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} yn bodoli'n barod" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 70953b5b176..d9646c0cc2e 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "Anfonwyd yr e-bost" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Amgryptiad" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Rhybudd Diogelwch" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 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." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index d0c43b131c4..cc9dff4f5d9 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/da/core.po b/l10n/da/core.po index 8e2aaca4f4f..352b90b2cff 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Sappe, 2013 +# Sappe, 2013-2014 # claus_chr <claus_chr@webspeed.dk>, 2013 # kaffeldt <kasper.affeldt@gmail.com>, 2013 # lodahl <leiflodahl@gmail.com>, 2013 @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-25 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 11:00+0000\n" +"Last-Translator: Sappe\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" @@ -267,23 +267,23 @@ msgstr "Fejl ved inlæsning af; fil eksistere skabelon" #: js/setup.js:84 msgid "Very weak password" -msgstr "" +msgstr "Meget svagt kodeord" #: js/setup.js:85 msgid "Weak password" -msgstr "" +msgstr "Svagt kodeord" #: js/setup.js:86 msgid "So-so password" -msgstr "" +msgstr "Jævnt kodeord" #: js/setup.js:87 msgid "Good password" -msgstr "" +msgstr "Godt kodeord" #: js/setup.js:88 msgid "Strong password" -msgstr "" +msgstr "Stærkt kodeord" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" @@ -482,7 +482,7 @@ msgstr "%s adgangskode nulstillet" msgid "" "A problem has occurred whilst sending the email, please contact your " "administrator." -msgstr "" +msgstr "Der opstod et problem under afsending af emailen. Kontakt venligst systemadministratoren." #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -540,6 +540,18 @@ msgstr "Nyt kodeord" msgid "Reset password" msgstr "Nulstil kodeord" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personligt" @@ -660,7 +672,7 @@ msgstr "Opret en <strong>administratorkonto</strong>" #: templates/installation.php:70 msgid "Storage & database" -msgstr "" +msgstr "Lager & database" #: templates/installation.php:77 msgid "Data folder" diff --git a/l10n/da/files.po b/l10n/da/files.po index ccacffbeb91..16d923ac96e 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -22,66 +22,66 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Kunne ikke flytte %s - der findes allerede en fil med dette navn" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Kunne ikke flytte %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Filnavnet kan ikke stå tomt." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" er et ugyldigt filnavn." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Mappen er blevet slettet eller fjernet." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Navnet %s er allerede i brug i mappen %s. Vælg venligst et andet navn." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Ikke en gyldig kilde" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server har ikke tilladelse til at åbne URL'er. Kontroller venligst serverens indstillinger" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Fejl ved hentning af %s til %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Fejl ved oprettelse af fil" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Mappenavnet kan ikke være tomt." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Fejl ved oprettelse af mappen" @@ -93,54 +93,54 @@ msgstr "Ude af stand til at vælge upload mappe." msgid "Invalid Token" msgstr "Ugyldig Token " -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil blev uploadet. Ukendt fejl." -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Der skete ingen fejl, filen blev succesfuldt uploadet" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uploadede fil overstiger MAX_FILE_SIZE indstilingen, som specificeret i HTML formularen" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Filen blev kun delvist uploadet." -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ingen fil uploadet" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Manglende midlertidig mappe." -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Fejl ved skrivning til disk." -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Der er ikke nok plads til rådlighed" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Upload fejlede. Kunne ikke finde den uploadede fil." -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Upload fejlede. Kunne ikke hente filinformation." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Ugyldig mappe." @@ -161,40 +161,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Der er ikke tilstrækkeligt friplads. Du uplaoder {size1} men der er kun {size2} tilbage" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Upload afbrudt." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Kunne ikke hente resultat fra server." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL kan ikke være tom" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Navnet 'Shared' er reserveret i hjemmemappen." -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} eksisterer allerede" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Kunne ikke oprette fil" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Kunne ikke oprette mappe" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Fejl ved URL" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 784b4385ff3..a1f254615ef 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -5,13 +5,14 @@ # Translators: # Sappe, 2013 # lodahl <leiflodahl@gmail.com>, 2013 +# Amplificator, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-23 18:20+0000\n" +"Last-Translator: Amplificator\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" @@ -67,7 +68,7 @@ msgstr "delt af %s" #: templates/public.php:44 #, php-format msgid "Download %s" -msgstr "" +msgstr "Download %s" #: templates/public.php:48 msgid "Direct link" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 0c41528bd31..b0a5605312e 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Sappe, 2013 +# Sappe, 2013-2014 # claus_chr <claus_chr@webspeed.dk>, 2013 # lodahl <leiflodahl@gmail.com>, 2013 # Ole Holm Frandsen <froksen@gmail.com>, 2013 @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-25 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 11:30+0000\n" +"Last-Translator: Sappe\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" @@ -161,7 +161,7 @@ msgstr "Adgang er udløbet. Genindlæs siden." #: private/json.php:75 msgid "Unknown user" -msgstr "" +msgstr "Ukendt bruger" #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" @@ -196,23 +196,23 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL brugernavn og/eller adgangskode ikke er gyldigt: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Du bliver nødt til at indtaste en eksisterende bruger eller en administrator." #: private/setup/mysql.php:12 msgid "MySQL/MariaDB username and/or password not valid" -msgstr "" +msgstr "Ugyldigt MySQL/MariaDB brugernavn og/eller kodeord " #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 #: private/setup/oci.php:151 private/setup/oci.php:162 #: private/setup/oci.php:169 private/setup/oci.php:178 #: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:89 -#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 -#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Databasefejl: \"%s\"" @@ -221,9 +221,9 @@ msgstr "Databasefejl: \"%s\"" #: private/setup/oci.php:122 private/setup/oci.php:145 #: private/setup/oci.php:152 private/setup/oci.php:163 #: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:90 -#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 -#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Fejlende kommando var: \"%s\"" @@ -231,20 +231,20 @@ msgstr "Fejlende kommando var: \"%s\"" #: private/setup/mysql.php:85 #, php-format msgid "MySQL/MariaDB user '%s'@'localhost' exists already." -msgstr "" +msgstr "MySQL/MariaDB bruger '%s'@'localhost' eksistere allerede." #: private/setup/mysql.php:86 msgid "Drop this user from MySQL/MariaDB" -msgstr "" +msgstr "Slet denne bruger fra MySQL/MariaDB" #: private/setup/mysql.php:91 #, php-format msgid "MySQL/MariaDB user '%s'@'%%' already exists" -msgstr "" +msgstr "MySQL/MariaDB bruger '%s'@'%%' eksistere allerede" #: private/setup/mysql.php:92 msgid "Drop this user from MySQL/MariaDB." -msgstr "" +msgstr "Drop denne bruger fra MySQL/MariaDB." #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -259,7 +259,7 @@ msgstr "Oracle brugernavn og/eller kodeord er ikke gyldigt." msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fejlende kommando var: \"%s\", navn: %s, password: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL brugernavn og/eller kodeord er ikke gyldigt." @@ -271,13 +271,13 @@ msgstr "Angiv et admin brugernavn." msgid "Set an admin password." msgstr "Angiv et admin kodeord." -#: private/setup.php:198 +#: private/setup.php:202 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:199 +#: private/setup.php:203 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Dobbelttjek venligst <a href='%s'>installations vejledningerne</a>." diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 60a7e89f3cc..ecc1285414a 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Sappe, 2013 +# Sappe, 2013-2014 # lodahl <leiflodahl@gmail.com>, 2013 # Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>, 2013 # Ole Holm Frandsen <froksen@gmail.com>, 2013 @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-19 23:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 09:30+0000\n" +"Last-Translator: Sappe\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" @@ -32,7 +32,7 @@ msgstr "Gemt" #: admin/controller.php:90 msgid "test email settings" -msgstr "" +msgstr "test email indstillinger" #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." @@ -51,15 +51,15 @@ msgstr "E-mail afsendt" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:282 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:295 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Kryptering" -#: admin/controller.php:120 templates/admin.php:319 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -161,7 +161,7 @@ msgstr "Kunne ikke ændre kodeord" #: js/admin.js:73 msgid "Sending..." -msgstr "" +msgstr "Sender..." #: js/apps.js:45 templates/help.php:4 msgid "User Documentation" @@ -169,7 +169,7 @@ msgstr "Brugerdokumentation" #: js/apps.js:50 msgid "Admin Documentation" -msgstr "" +msgstr "Administrator Dokumentation" #: js/apps.js:67 msgid "Update to {appversion}" @@ -221,23 +221,23 @@ msgstr "Vælg et profilbillede" #: js/personal.js:277 msgid "Very weak password" -msgstr "" +msgstr "Meget svagt kodeord" #: js/personal.js:278 msgid "Weak password" -msgstr "" +msgstr "Svagt kodeord" #: js/personal.js:279 msgid "So-so password" -msgstr "" +msgstr "Jævnt kodeord" #: js/personal.js:280 msgid "Good password" -msgstr "" +msgstr "Godt kodeord" #: js/personal.js:281 msgid "Strong password" -msgstr "" +msgstr "Stærkt kodeord" #: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." @@ -326,15 +326,15 @@ msgstr "" #: templates/admin.php:19 msgid "NT LAN Manager" -msgstr "" +msgstr "NT LAN Manager" #: templates/admin.php:24 msgid "SSL" -msgstr "" +msgstr "SSL" #: templates/admin.php:25 msgid "TLS" -msgstr "" +msgstr "TLS" #: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" @@ -431,157 +431,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Udføre en opgave med hver side indlæst" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php er registreret til at en webcron service skal kalde cron.php hvert 15 minut over http." -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Brug systemets cron service til at kalde cron.php hvert 15. minut." -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Aktiver Share API" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Tillad apps til at bruge Share API" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Tillad links" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Tillad brugere at dele elementer til offentligheden med links" -#: templates/admin.php:210 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Tillad offentlig upload" -#: templates/admin.php:211 +#: templates/admin.php:228 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:218 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Tillad videredeling" -#: templates/admin.php:219 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Tillad brugere at dele elementer delt med dem igen" -#: templates/admin.php:226 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Tillad brugere at dele med alle" -#: templates/admin.php:229 +#: templates/admin.php:246 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:236 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Tillad mail underretninger" -#: templates/admin.php:237 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Tillad brugere at sende mail underretninger for delte filer" -#: templates/admin.php:244 +#: templates/admin.php:261 msgid "Security" msgstr "Sikkerhed" -#: templates/admin.php:257 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Gennemtving HTTPS" -#: templates/admin.php:259 +#: templates/admin.php:276 #, 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:265 +#: templates/admin.php:282 #, 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:277 +#: templates/admin.php:294 msgid "Email Server" -msgstr "" +msgstr "Email Server" -#: templates/admin.php:279 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:310 +#: templates/admin.php:327 msgid "From address" -msgstr "" +msgstr "Fra adresse" -#: templates/admin.php:332 +#: templates/admin.php:349 msgid "Authentication required" -msgstr "" +msgstr "Godkendelse påkrævet" -#: templates/admin.php:336 +#: templates/admin.php:353 msgid "Server address" msgstr "Serveradresse" -#: templates/admin.php:340 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:345 +#: templates/admin.php:362 msgid "Credentials" -msgstr "" +msgstr "Brugeroplysninger" -#: templates/admin.php:346 +#: templates/admin.php:363 msgid "SMTP Username" -msgstr "" +msgstr "SMTP Brugernavn" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "SMTP Password" -msgstr "" +msgstr "SMTP Kodeord" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Test email settings" -msgstr "" +msgstr "Test email indstillinger" -#: templates/admin.php:354 +#: templates/admin.php:371 msgid "Send email" -msgstr "" +msgstr "Send email" -#: templates/admin.php:359 +#: templates/admin.php:376 msgid "Log" msgstr "Log" -#: templates/admin.php:360 +#: templates/admin.php:377 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:392 +#: templates/admin.php:409 msgid "More" msgstr "Mere" -#: templates/admin.php:393 +#: templates/admin.php:410 msgid "Less" msgstr "Mindre" -#: templates/admin.php:399 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:403 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -605,7 +621,7 @@ msgstr "Vælg en App" #: templates/apps.php:42 msgid "Documentation:" -msgstr "" +msgstr "Dokumentation:" #: templates/apps.php:48 msgid "See application page at apps.owncloud.com" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 67ac87e3643..91bc2bece8a 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/de/core.po b/l10n/de/core.po index a5bc3ac6544..471f29b8a0e 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -6,7 +6,7 @@ # arkascha <foss@christian-reiner.info>, 2013 # I Robot, 2013 # Marcel Kühlhorn <tux93@opensuse.org>, 2013 -# Mario Siegmann <mario_siegmann@web.de>, 2013 +# Mario Siegmann <mario_siegmann@web.de>, 2013-2014 # JamFX <niko@nik-o-mat.de>, 2013 # ninov <ninovdl@ymail.com>, 2013 # Pwnicorn <pwnicorndev@gmail.com>, 2013 @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 10:50+0000\n" +"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\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" @@ -29,7 +29,7 @@ msgstr "" #: ajax/share.php:88 msgid "Expiration date is in the past." -msgstr "" +msgstr "Ablaufdatum liegt in der Vergangenheit." #: ajax/share.php:120 ajax/share.php:162 #, php-format @@ -543,6 +543,18 @@ msgstr "Neues Passwort" msgid "Reset password" msgstr "Passwort zurücksetzen" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "Mac OSX wird nicht unterstützt und %s wird auf dieser Platform nicht korrekt funktionieren. Benutzung auf eigenes Risiko!" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "Für die besten Resultate sollte stattdessen ein GNU/Linux Server verwendet werden." + #: strings.php:5 msgid "Personal" msgstr "Persönlich" diff --git a/l10n/de/files.po b/l10n/de/files.po index e2f5d517187..d6ab1aa2101 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -25,66 +25,66 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert bereits" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Konnte %s nicht verschieben" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Der Dateiname darf nicht leer sein." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" ist kein gültiger Dateiname." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Der Zielordner wurde verschoben oder gelöscht." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Der Name %s wird bereits im Ordner %s benutzt. Bitte wähle einen anderen Namen." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Keine gültige Quelle" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Dem Server ist das Öffnen von URLs nicht erlaubt, bitte die Serverkonfiguration prüfen" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Fehler beim Herunterladen von %s nach %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Fehler beim Erstellen der Datei" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Der Ordner-Name darf nicht leer sein." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Fehler beim Erstellen des Ordners" @@ -96,54 +96,54 @@ msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." msgid "Invalid Token" msgstr "Ungültiges Merkmal" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Datei ist größer, als die MAX_FILE_SIZE Direktive erlaubt, die im HTML-Formular spezifiziert ist" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Hochladen fehlgeschlagen. Hochgeladene Datei konnte nicht gefunden werden." -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Hochladen fehlgeschlagen. Dateiinformationen konnten nicht abgerufen werden." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -164,40 +164,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Nicht genügend freier Speicherplatz, du möchtest {size1} hochladen, es sind jedoch nur noch {size2} verfügbar." -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Ergebnis konnte nicht vom Server abgerufen werden." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "Die URL darf nicht leer sein" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Die Datei konnte nicht erstellt werden" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Der Ordner konnte nicht erstellt werden" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Fehler beim Abrufen der URL" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 64f6540e12b..b120125988d 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -4,6 +4,7 @@ # # Translators: # arkascha <foss@christian-reiner.info>, 2013 +# I Robot, 2014 # Mario Siegmann <mario_siegmann@web.de>, 2013-2014 # ninov <ninovdl@ymail.com>, 2013 # Pwnicorn <pwnicorndev@gmail.com>, 2013 @@ -15,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" -"PO-Revision-Date: 2014-03-12 11:20+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 11:50+0000\n" "Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -55,15 +56,15 @@ msgstr "E-Mail wurde verschickt" msgid "You need to set your user email before being able to send test emails." msgstr "Du musst zunächst deine Benutzer-E-Mail-Adresse setzen, bevor du Test-E-Mail verschicken kannst." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Sende-Modus" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Verschlüsselung" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Authentifizierungsmethode" @@ -219,31 +220,31 @@ msgstr "Aktualisierung durchführen" msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Wähle ein Profilbild" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "Sehr schwaches Passwort" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "Schwaches Passwort" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "Durchschnittliches Passwort" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "Gutes Passwort" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "Starkes Passwort" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Entschlüssle Dateien ... Bitte warten, denn dieser Vorgang kann einige Zeit beanspruchen." @@ -435,157 +436,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "Letzter Cron wurde um %s ausgeführt." + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "Letzter Cron wurde um %s ausgeführt. Dies ist mehr als eine Stunde her, möglicherweise liegt ein Fehler vor." + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "Cron wurde bis jetzt noch nicht ausgeführt!" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Führe eine Aufgabe mit jeder geladenen Seite aus" -#: templates/admin.php:175 +#: templates/admin.php:192 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:183 +#: templates/admin.php:200 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:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Aktiviere Sharing-API" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Erlaubt Apps die Nutzung der Share-API" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Erlaubt Links" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Erlaubt Benutzern, Inhalte über öffentliche Links zu teilen" -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Öffentliches Hochladen erlauben" -#: templates/admin.php:212 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Erlaubt es Benutzern, andere Benutzer einzurichten, dass diese in deren öffentlich freigegebenen Ordner hochladen dürfen" -#: templates/admin.php:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Erlaubt erneutes Teilen" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:231 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Benutzern ihrer Gruppe zu teilen" -#: templates/admin.php:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Mail-Benachrichtigung erlauben" -#: templates/admin.php:239 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" -#: templates/admin.php:246 +#: templates/admin.php:261 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Erzwinge HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die clientseitigen Anwendungen, verschlüsselte Verbindungen zu %s herzustellen." -#: templates/admin.php:267 +#: templates/admin.php:282 #, 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:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "E-Mail-Server" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "Dies wird zum Senden von Benachrichtigungen verwendet." -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Absender-Adresse" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Authentifizierung benötigt" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Adresse des Servers" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Zugangsdaten" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "SMTP Benutzername" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "SMTP Passwor" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Teste E-Mail-Einstellunge" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Sende E-Mail" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Log" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Loglevel" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Mehr" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Weniger" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -654,7 +671,7 @@ msgstr "Erstinstallation erneut durchführen" #: templates/personal.php:27 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" -msgstr "Du verwendest <strong>%s</strong> der verfügbaren <strong>%s<strong>" +msgstr "Du verwendest <strong>%s</strong> der verfügbaren <strong>%s</strong>" #: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index b41d11b2bd9..61ce5eaac60 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 13:11+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_AT/core.po b/l10n/de_AT/core.po index fea8c13b101..1134976fb22 100644 --- a/l10n/de_AT/core.po +++ b/l10n/de_AT/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -534,6 +534,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Persönlich" diff --git a/l10n/de_AT/files.po b/l10n/de_AT/files.po index 8c9106e7e2e..1cff24b0dea 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: de_AT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/de_AT/settings.po b/l10n/de_AT/settings.po index 3e57f3c3d97..567f670a464 100644 --- a/l10n/de_AT/settings.po +++ b/l10n/de_AT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -48,15 +48,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -212,31 +212,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -333,18 +333,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -353,68 +353,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Adresse des Servers" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/de_AT/user_ldap.po b/l10n/de_AT/user_ldap.po index 8fe6722c368..1e86832a9e0 100644 --- a/l10n/de_AT/user_ldap.po +++ b/l10n/de_AT/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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index 824000ec112..bb41b4f03b5 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -543,6 +543,18 @@ msgstr "Neues Passwort" msgid "Reset password" msgstr "Passwort zurücksetzen" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Persönlich" diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index 486924cf1b5..223375e7fa1 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -26,66 +26,66 @@ msgstr "" "Language: de_CH\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert bereits." -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Konnte %s nicht verschieben" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Der Dateiname darf nicht leer sein." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ungültiger Name, «\\», «/», «<», «>», «:», «\"», «|», «?» und «*» sind nicht zulässig." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -97,54 +97,54 @@ msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." msgid "Invalid Token" msgstr "Ungültiges Merkmal" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Datei ist grösser, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -165,40 +165,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po index c0a9698cd14..a57d5b69ac2 100644 --- a/l10n/de_CH/settings.po +++ b/l10n/de_CH/settings.po @@ -11,13 +11,13 @@ # kabum <uu.kabum@gmail.com>, 2013 # Mario Siegmann <mario_siegmann@web.de>, 2013 # Mirodin <blobbyjj@ymail.com>, 2013 -# traductor <transifex-3.7.mensaje@spamgourmet.com>, 2013 +# traductor, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -56,15 +56,15 @@ msgstr "Email gesendet" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Verschlüsselung" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -220,31 +220,31 @@ msgstr "Update durchführen" msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Entschlüssel Dateien ... Bitte warten Sie, denn dieser Vorgang kann einige Zeit beanspruchen." @@ -341,18 +341,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Sicherheitshinweis" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -361,68 +361,68 @@ msgid "" "root." msgstr "Ihr Datenverzeichnis und Ihre Dateien sind möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis ausserhalb des Wurzelverzeichnisses des Webservers." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Einrichtungswarnung" -#: templates/admin.php:74 +#: templates/admin.php:78 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." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "Bitte überprüfen Sie die <a href=\"%s\">Instalationsanleitungen</a>." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Das Modul 'fileinfo' fehlt" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Die Lokalisierung funktioniert nicht" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Keine Internetverbindung" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -431,162 +431,178 @@ 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:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Eine Aufgabe bei jedem Laden der Seite ausführen" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Share-API aktivieren" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Anwendungen erlauben, die Share-API zu benutzen" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Links erlauben" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Erlaube öffentliches hochladen" -#: templates/admin.php:208 +#: templates/admin.php:228 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:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Erlaube Weiterverteilen" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:227 +#: templates/admin.php:246 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:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "HTTPS erzwingen" -#: templates/admin.php:257 +#: templates/admin.php:276 #, 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:263 +#: templates/admin.php:282 #, 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:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Adresse des Servers" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Log" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Mehr" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Weniger" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/de_CH/user_ldap.po b/l10n/de_CH/user_ldap.po index c71f7f57765..14344bc7b1d 100644 --- a/l10n/de_CH/user_ldap.po +++ b/l10n/de_CH/user_ldap.po @@ -10,13 +10,13 @@ # Marcel Kühlhorn <tux93@opensuse.org>, 2013 # Mario Siegmann <mario_siegmann@web.de>, 2013 # multimill <multimill@gmail.com>, 2012 -# traductor <transifex-3.7.mensaje@spamgourmet.com>, 2012-2013 +# traductor, 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index fdf92773ce2..16a7061e933 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -9,7 +9,7 @@ # I Robot, 2014 # lysathor, 2014 # Marcel Kühlhorn <tux93@opensuse.org>, 2013 -# Mario Siegmann <mario_siegmann@web.de>, 2013 +# Mario Siegmann <mario_siegmann@web.de>, 2013-2014 # stefanniedermann <stefan.niedermann@googlemail.com>, 2014 # traductor, 2013 # noxin <transifex.com@davidmainzer.com>, 2013 @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 10:50+0000\n" +"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\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" @@ -30,7 +30,7 @@ msgstr "" #: ajax/share.php:88 msgid "Expiration date is in the past." -msgstr "" +msgstr "Ablaufdatum liegt in der Vergangenheit." #: ajax/share.php:120 ajax/share.php:162 #, php-format @@ -544,6 +544,18 @@ msgstr "Neues Passwort" msgid "Reset password" msgstr "Passwort zurücksetzen" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "Mac OSX wird nicht unterstützt und %s wird auf dieser Platform nicht korrekt funktionieren. Benutzung auf eigenes Risiko!" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "Für die besten Resultate sollte stattdessen ein GNU/Linux Server verwendet werden." + #: strings.php:5 msgid "Personal" msgstr "Persönlich" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 3183c48ba99..5e50b0b468c 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -28,66 +28,66 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert bereits." -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Konnte %s nicht verschieben" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Der Dateiname darf nicht leer sein." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" ist kein gültiger Dateiname." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Der Ziel-Ordner wurde verschoben oder gelöscht." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Der Name %s wird bereits im Ordner %s benutzt. Bitte wählen Sie einen anderen Namen." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Keine gültige Quelle" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Dem Server ist das Öffnen von URLs nicht erlaubt, bitte die Serverkonfiguration prüfen" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Fehler beim Herunterladen von %s nach %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Fehler beim Erstellen der Datei" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Der Ordner-Name darf nicht leer sein." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Fehler beim Erstellen des Ordners" @@ -99,54 +99,54 @@ msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." msgid "Invalid Token" msgstr "Ungültiges Merkmal" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Datei ist größer, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Hochladen fehlgeschlagen. Die hochgeladene Datei konnte nicht gefunden werden." -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Hochladen fehlgeschlagen. Die Dateiinformationen konnten nicht abgerufen werden." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -167,40 +167,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Nicht genügend freier Speicherplatz, Sie möchten {size1} hochladen, es sind jedoch nur noch {size2} verfügbar." -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Ergebnis konnte nicht vom Server abgerufen werden." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "Die URL darf nicht leer sein" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Die Datei konnte nicht erstellt werden" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Der Ordner konnte nicht erstellt werden" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Fehler beim Abrufen der URL" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 7a0b42a6be0..2af94421409 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" -"PO-Revision-Date: 2014-03-12 11:20+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 11:50+0000\n" "Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -56,15 +56,15 @@ msgstr "Email gesendet" msgid "You need to set your user email before being able to send test emails." msgstr "Sie müssen Ihre Benutzer-E-Mail-Adresse setzen, bevor Sie Test-E-Mails versenden können." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Sende-Modus" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Verschlüsselung" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Authentifizierungsmethode" @@ -220,31 +220,31 @@ msgstr "Update durchführen" msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Wählen Sie ein Profilbild" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "Sehr schwaches Passwort" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "Schwaches Passwort" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "Passables Passwort" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "Gutes Passwort" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "Starkes Passwort" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Entschlüssle Dateien ... Bitte warten Sie, denn dieser Vorgang kann einige Zeit beanspruchen." @@ -436,157 +436,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "Letzter Cron wurde um %s ausgeführt." + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "Letzter Cron wurde um %s ausgeführt. Dies ist mehr als eine Stunde her, möglicherweise liegt ein Fehler vor." + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "Cron wurde bis jetzt noch nicht ausgeführt!" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Eine Aufgabe bei jedem Laden der Seite ausführen" -#: templates/admin.php:175 +#: templates/admin.php:192 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:183 +#: templates/admin.php:200 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:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Share-API aktivieren" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Anwendungen erlauben, die Share-API zu benutzen" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Links erlauben" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen" -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Öffentliches Hochladen erlauben" -#: templates/admin.php:212 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Erlaubt es Benutzern, andere Benutzer einzurichten, dass diese in deren öffentlich freigegebenen Ordner hochladen dürfen" -#: templates/admin.php:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Erlaube Weiterverteilen" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:231 +#: templates/admin.php:246 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:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Mail-Benachrichtigung erlauben" -#: templates/admin.php:239 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" -#: templates/admin.php:246 +#: templates/admin.php:261 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "HTTPS erzwingen" -#: templates/admin.php:261 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die clientseitigen Anwendungen, verschlüsselte Verbindungen zu %s herzustellen." -#: templates/admin.php:267 +#: templates/admin.php:282 #, 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:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "E-Mail-Server" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "Dies wird für das Senden von Benachrichtigungen verwendet." -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Absender-Adresse" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Authentifizierung benötigt" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Adresse des Servers" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Zugangsdaten" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "SMTP Benutzername" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "SMTP Passwort" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "E-Mail-Einstellungen testen" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "E-Mail senden" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Log" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Mehr" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Weniger" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index c96d99dfa1a..721016886e3 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -7,14 +7,14 @@ # Marcel Kühlhorn <tux93@opensuse.org>, 2013 # Mario Siegmann <mario_siegmann@web.de>, 2013-2014 # JamFX <niko@nik-o-mat.de>, 2013 -# traductor <transifex-3.7.mensaje@spamgourmet.com>, 2013 +# traductor, 2013 # noxin <transifex.com@davidmainzer.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 13:11+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: Mario Siegmann <mario_siegmann@web.de>\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/el/core.po b/l10n/el/core.po index b864a36680f..54906380cd8 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -542,6 +542,18 @@ msgstr "Νέο συνθηματικό" msgid "Reset password" msgstr "Επαναφορά συνθηματικού" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Προσωπικά" diff --git a/l10n/el/files.po b/l10n/el/files.po index 211efff6eda..fc989942bb6 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -22,66 +22,66 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Αδυναμία μετακίνησης του %s - υπάρχει ήδη αρχείο με αυτό το όνομα" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Αδυναμία μετακίνησης του %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Το όνομα αρχείου δεν μπορεί να είναι κενό." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "Το \"%s\" είναι ένα μη έγκυρο όνομα αρχείου." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Το όνομα %s χρησιμοποιείτε ήδη στον φάκελο %s. Παρακαλώ επιλέξτε ένα άλλο όνομα." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Μη έγκυρη πηγή" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Ο διακομιστής δεν επιτρέπεται να ανοίγει URL, παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Σφάλμα κατά τη λήψη του %s στο %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Σφάλμα κατά τη δημιουργία του αρχείου" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Το όνομα φακέλου δεν μπορεί να είναι κενό." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Σφάλμα δημιουργίας φακέλου" @@ -93,54 +93,54 @@ msgstr "Αδυναμία ορισμού καταλόγου αποστολής." msgid "Invalid Token" msgstr "Μη έγκυρο Token" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Το αρχείο που εστάλει υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"upload_max_filesize\" του php.ini" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Το ανεβασμένο αρχείο υπερβαίνει το MAX_FILE_SIZE που ορίζεται στην HTML φόρμα" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Το αρχείο εστάλει μόνο εν μέρει" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Κανένα αρχείο δεν στάλθηκε" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Λείπει ο προσωρινός φάκελος" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Αποτυχία εγγραφής στο δίσκο" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Μη επαρκής διαθέσιμος αποθηκευτικός χώρος" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Η φόρτωση απέτυχε. Αδυναμία εύρεσης αρχείου προς φόρτωση." -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Η φόρτωση απέτυχε. Αδυναμία λήψης πληροφοριών αρχείων." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Μη έγκυρος φάκελος." @@ -161,40 +161,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Η αποστολή ακυρώθηκε." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Αδυναμία λήψης αποτελέσματος από το διακομιστή." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "Η URL δεν πρέπει να είναι κενή" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Στον αρχικό φάκελο το όνομα 'Shared' διατηρείται από το σύστημα" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} υπάρχει ήδη" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Αδυναμία δημιουργίας αρχείου" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Αδυναμία δημιουργίας φακέλου" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Σφάλμα φόρτωσης URL" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 5a5c9e89330..963340f3af1 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-13 14:21+0000\n" -"Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,15 +55,15 @@ msgstr "Το Email απεστάλη " msgid "You need to set your user email before being able to send test emails." msgstr "Πρέπει να ορίσετε το email του χρήστη πριν να είστε σε θέση να στείλετε δοκιμαστικά emails." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Κατάσταση αποστολής" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Κρυπτογράφηση" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Μέθοδος πιστοποίησης" @@ -435,157 +435,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Εκτέλεση μιας διεργασίας με κάθε σελίδα που φορτώνεται" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "Το cron.php είναι καταχωρημένο σε μια υπηρεσία webcron ώστε να καλεί το cron.php κάθε 15 λεπτά μέσω http." -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Χρήση της υπηρεσίας cron του συστήματος για να καλεστεί το αρχείο cron.php κάθε 15 λεπτά." -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Διαμοιρασμός" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Ενεργοποίηση API Διαμοιρασμού" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Να επιτρέπονται σύνδεσμοι" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν δημόσια με συνδέσμους" -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Επιτρέψτε κοινόχρηστο ανέβασμα" -#: templates/admin.php:212 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Επιτρέψτε στους χρήστες να καθιστούν άλλους χρήστες ικανούς να ανεβάζουν στους κοινόχρηστους φακέλους τους" -#: templates/admin.php:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Να επιτρέπεται ο επαναδιαμοιρασμός" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε" -#: templates/admin.php:231 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Να επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας" -#: templates/admin.php:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Επιτρέψτε ειδοποιήσεις ηλεκτρονικού ταχυδρομείου" -#: templates/admin.php:239 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Επιτρέψτε στο χρήστη να στέλνει ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία" -#: templates/admin.php:246 +#: templates/admin.php:261 msgid "Security" msgstr "Ασφάλεια" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Επιβολή χρήσης HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Επιβάλλει τους δέκτες να συνδέονται με το %s μέσω κρυπογραφημένης σύνδεσης." -#: templates/admin.php:267 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Παρακαλώ συνδεθείτε στο %s σας μέσω HTTPS για να ενεργοποιήσετε ή να απενεργοποιήσετε την επιβολή του SSL." -#: templates/admin.php:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "Διακομιστής Email" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "Χρησιμοποιείται για αποστολή ειδοποιήσεων." -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Από τη διεύθυνση" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Απαιτείται πιστοποίηση" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Διεύθυνση διακομιστή" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Θύρα" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Πιστοποιητικά" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "Όνομα χρήστη SMTP" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "Συνθηματικό SMTP" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Δοκιμή ρυθμίσεων email" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Αποστολή email" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Καταγραφές" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Επίπεδο καταγραφής" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Περισσότερα" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Λιγότερα" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Έκδοση" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 5f0073e1a0d..f9c9174c553 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index ee6118c9bba..90ddc87e52a 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -534,6 +534,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/en@pirate/settings.po b/l10n/en@pirate/settings.po index c5d784097eb..5860fa8a930 100644 --- a/l10n/en@pirate/settings.po +++ b/l10n/en@pirate/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index 08258961c66..b6c1fd256b2 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: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 12:40+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-23 15:01+0000\n" "Last-Translator: mnestis <transifex@mnestis.net>\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -534,6 +534,18 @@ msgstr "New password" msgid "Reset password" msgstr "Reset password" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "For the best results, please consider using a GNU/Linux server instead." + #: strings.php:5 msgid "Personal" msgstr "Personal" diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index c1ead14671e..182341b8a25 100644 --- a/l10n/en_GB/files.po +++ b/l10n/en_GB/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -18,66 +18,66 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Could not move %s - File with this name already exists" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Could not move %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "File name cannot be empty." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" is an invalid file name." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Invalid name: '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "The target folder has been moved or deleted." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "The name %s is already used in the folder %s. Please choose a different name." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Not a valid source" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server is not allowed to open URLs, please check the server configuration" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Error whilst downloading %s to %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Error when creating the file" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Folder name cannot be empty." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Error when creating the folder" @@ -89,54 +89,54 @@ msgstr "Unable to set upload directory." msgid "Invalid Token" msgstr "Invalid Token" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "No file was uploaded. Unknown error" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "There is no error, the file uploaded successfully" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "The uploaded file was only partially uploaded" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "No file was uploaded" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Missing a temporary folder" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Failed to write to disk" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Not enough storage available" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Upload failed. Could not find uploaded file" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Upload failed. Could not get file info." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Invalid directory." @@ -157,40 +157,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Not enough free space, you are uploading {size1} but only {size2} is left" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Upload cancelled." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Could not get result from server." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "File upload is in progress. Leaving the page now will cancel the upload." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL cannot be empty" -#: js/file-upload.js:566 +#: js/file-upload.js:568 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:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} already exists" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Could not create file" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Could not create folder" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Error fetching URL" diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index fcc17d943e3..f04a916b0cf 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: 2014-03-18 01:55-0400\n" -"PO-Revision-Date: 2014-03-17 13:07+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 12:20+0000\n" "Last-Translator: mnestis <transifex@mnestis.net>\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -48,15 +48,15 @@ msgstr "Email sent" msgid "You need to set your user email before being able to send test emails." msgstr "You need to set your user email before being able to send test emails." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Send mode" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Encryption" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Authentication method" @@ -428,157 +428,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "Last cron was executed at %s." + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "Last cron was executed at %s. This is more than an hour ago, something seems wrong." + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "Cron was not executed yet!" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Execute one task with each page loaded" -#: templates/admin.php:175 +#: templates/admin.php:192 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:183 +#: templates/admin.php:200 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:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Sharing" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Enable Share API" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Allow apps to use the Share API" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Allow links" -#: templates/admin.php:203 +#: templates/admin.php:220 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:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Allow public uploads" -#: templates/admin.php:212 +#: templates/admin.php:228 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:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Allow resharing" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Allow users to share items shared with them again" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Allow users to share with anyone" -#: templates/admin.php:231 +#: templates/admin.php:246 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:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Allow mail notification" -#: templates/admin.php:239 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Allow user to send mail notification for shared files" -#: templates/admin.php:246 +#: templates/admin.php:261 msgid "Security" msgstr "Security" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Enforce HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, 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:267 +#: templates/admin.php:282 #, 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:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "Email Server" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "This is used for sending out notifications." -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "From address" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Authentication required" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Server address" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Credentials" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "SMTP Username" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "SMTP Password" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Test email settings" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Send email" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Log" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Log level" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "More" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Less" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/en_GB/user_ldap.po b/l10n/en_GB/user_ldap.po index a2648a790d3..334316ca9ef 100644 --- a/l10n/en_GB/user_ldap.po +++ b/l10n/en_GB/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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 12:10+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: mnestis <transifex@mnestis.net>\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 427b4ea5ca3..c6fd33cd860 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -535,6 +535,18 @@ msgstr "Nova pasvorto" msgid "Reset password" msgstr "Rekomenci la pasvorton" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Persona" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 1e3d4561659..7518719c1a8 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -18,66 +18,66 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Ne eblis movi %s: dosiero kun ĉi tiu nomo jam ekzistas" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Ne eblis movi %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Dosiernomo devas ne malpleni." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "La nomo %s jam uziĝas en la dosierujo %s. Bonvolu elekti malsaman nomon." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Nevalida fonto" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Eraris elŝuto de %s al %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Eraris la kreo de la dosiero" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "La dosierujnomo ne povas malpleni." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Eraris la kreo de la dosierujo" @@ -89,54 +89,54 @@ msgstr "Ne povis agordiĝi la alŝuta dosierujo." msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Neniu dosiero alŝutiĝis. Nekonata eraro." -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Ne estas eraro, la dosiero alŝutiĝis sukcese." -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: " -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "La dosiero alŝutita superas la regulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "la alŝutita dosiero nur parte alŝutiĝis" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Neniu dosiero alŝutiĝis." -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Mankas provizora dosierujo." -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Malsukcesis skribo al disko" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Ne haveblas sufiĉa memoro" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "La alŝuto malsukcesis. Ne troviĝis alŝutota dosiero." -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "La alŝuto malsukcesis. Ne povis ekhaviĝi informo pri dosiero." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Nevalida dosierujo." @@ -157,40 +157,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "La alŝuto nuliĝis." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Ne povis ekhaviĝi rezulto el la servilo." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "La URL ne povas malpleni" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} jam ekzistas" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Ne povis kreiĝi dosiero" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Ne povis kreiĝi dosierujo" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 8594a0204c0..74f444b43e9 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "La retpoŝtaĵo sendiĝis" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Ĉifrado" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "Ĝisdatigi" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Sekureca averto" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 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." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Kunhavigo" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Kapabligi API-on por Kunhavigo" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Kapabligi aplikaĵojn uzi la API-on pri Kunhavigo" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Kapabligi ligilojn" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Kapabligi uzantojn kunhavigi erojn kun la publiko perligile" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Kapabligi rekunhavigon" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Kapabligi uzantojn rekunhavigi erojn kunhavigitajn kun ili" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Kapabligi uzantojn kunhavigi kun ĉiu ajn" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Kapabligi uzantojn nur kunhavigi kun uzantoj el siaj grupoj" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Servila adreso" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Pordo" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "Aŭtentigiloj" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Protokolo" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Registronivelo" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Pli" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Malpli" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Eldono" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 6f353ffd28f..1f0d5fdcec3 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/es/core.po b/l10n/es/core.po index 3286a21a8e9..1d3856000d6 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 17:41+0000\n" -"Last-Translator: Art O. Pal <artopal@fastmail.fm>\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-28 05:55+0000\n" +"Last-Translator: victormce <victormce@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,7 +33,7 @@ msgstr "" #: ajax/share.php:88 msgid "Expiration date is in the past." -msgstr "La fecha de caducidad está en el pasado." +msgstr "Ha pasado la fecha de caducidad" #: ajax/share.php:120 ajax/share.php:162 #, php-format @@ -467,7 +467,7 @@ msgstr "No hay etiquetas seleccionadas para borrar." #: js/update.js:8 msgid "Please reload the page." -msgstr "Vuelva a cargar la página." +msgstr "Recargue/Actualice la página" #: js/update.js:17 msgid "" @@ -547,6 +547,18 @@ msgstr "Nueva contraseña" msgid "Reset password" msgstr "Restablecer contraseña" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "Mac OS X no está soportado y %s no funcionará bien en esta plataforma. ¡Úsela a su propio riesgo! " + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "Para óptimos resultados, considere utilizar un servidor GNU/Linux." + #: strings.php:5 msgid "Personal" msgstr "Personal" @@ -800,4 +812,4 @@ msgstr "Esta versión de owncloud se está actualizando, esto puede demorar un t #: templates/update.user.php:4 msgid "Please reload this page after a short time to continue using ownCloud." -msgstr "Por favor , recargue esta instancia de onwcloud tras un corto periodo de tiempo y continue usándolo." +msgstr "Por favor, recargue la página tras un corto periodo de tiempo para continuar usando ownCloud" diff --git a/l10n/es/files.po b/l10n/es/files.po index d26411a2e1c..b9d0e700b38 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -27,66 +27,66 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "No se pudo mover %s - Ya existe un archivo con ese nombre." -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "No se pudo mover %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "El nombre de archivo no puede estar vacío." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" es un nombre de archivo inválido." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "La carpeta destino fue movida o eliminada." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "El nombre %s ya está en uso por la carpeta %s. Por favor elija uno diferente." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "No es una fuente válida" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "La configuración del servidor no le permite abrir URLs, revísela." -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Error mientras se descargaba %s a %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Error al crear el archivo" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "El nombre de la carpeta no puede estar vacío." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Error al crear la carpeta." @@ -98,54 +98,54 @@ msgstr "Incapaz de crear directorio de subida." msgid "Invalid Token" msgstr "Token Inválido" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "No se subió ningún archivo. Error desconocido" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "No hubo ningún problema, el archivo se subió con éxito" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo subido sobrepasa la directiva 'upload_max_filesize' en php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo subido sobrepasa la directiva 'MAX_FILE_SIZE' especificada en el formulario HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "El archivo subido fue sólo subido parcialmente" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "No se subió ningún archivo" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Falta la carpeta temporal" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Falló al escribir al disco" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Actualización fallida. No se pudo encontrar el archivo subido" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Actualización fallida. No se pudo obtener información del archivo." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Directorio inválido." @@ -166,40 +166,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "No hay suficiente espacio libre. Quiere subir {size1} pero solo quedan {size2}" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "No se pudo obtener respuesta del servidor." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "La dirección URL no puede estar vacía" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "En la carpeta home, no se puede usar 'Shared'" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "No se pudo crear el archivo" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "No se pudo crear la carpeta" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Error al descargar URL." diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 5e7045276d0..0a625464a1d 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -8,7 +8,7 @@ # eadeprado <eadeprado@outlook.com>, 2013 # ggam <ggam@brainleakage.com>, 2013 # japaol <japaol@gmail.com>, 2013 -# txelu <joseluis.tirado@gmail.com>, 2014 +# Jose Luis Tirado <joseluis.tirado@gmail.com>, 2014 # juanman <juanma@kde.org.ar>, 2013 # pablomillaquen <pablomillaquen@gmail.com>, 2013 # Raul Fernandez Garcia <raulfg3@gmail.com>, 2013 @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" -"PO-Revision-Date: 2014-03-12 21:20+0000\n" -"Last-Translator: txelu <joseluis.tirado@gmail.com>\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 22:10+0000\n" +"Last-Translator: Art O. Pal <artopal@fastmail.fm>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -61,15 +61,15 @@ msgstr "Correo electrónico enviado" msgid "You need to set your user email before being able to send test emails." msgstr "Tiene que configurar su dirección de correo electrónico antes de poder enviar mensajes de prueba." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Modo de envío" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Cifrado" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Método de autenticación" @@ -225,31 +225,31 @@ msgstr "Actualizar" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Seleccionar una imagen de perfil" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "Contraseña muy débil" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "Contraseña débil" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "Contraseña pasable" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "Contraseña buena" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "Contraseña muy buena" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Descifrando archivos... Espere por favor, esto puede llevar algo de tiempo." @@ -441,157 +441,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "Cron fue ejecutado por última vez a las %s." + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "Cron fue ejecutado por última vez a las %s. Esto fue hace más de una hora, algo anda mal." + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "¡Cron aún no ha sido ejecutado!" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Ejecutar una tarea con cada página cargada" -#: templates/admin.php:175 +#: templates/admin.php:192 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:183 +#: templates/admin.php:200 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:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Compartiendo" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Activar API de Compartición" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones utilizar la API de Compartición" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:203 +#: templates/admin.php:220 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:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Permitir subidas públicas" -#: templates/admin.php:212 +#: templates/admin.php:228 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:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Permitir re-compartición" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Permitir a los usuarios compartir de nuevo elementos ya compartidos" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Permitir a los usuarios compartir con cualquier persona" -#: templates/admin.php:231 +#: templates/admin.php:246 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:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Permitir notificaciones por correo electrónico" -#: templates/admin.php:239 +#: templates/admin.php:254 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:246 +#: templates/admin.php:261 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, 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:267 +#: templates/admin.php:282 #, 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:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "Servidor de correo electrónico" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "Esto se usa para enviar notificaciones." -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Desde la dirección" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Se necesita autenticación" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Dirección del servidor" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Puerto" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Credenciales" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "Nombre de usuario SMTP" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "Contraseña SMTP" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Probar configuración de correo electrónico" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Enviar mensaje" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Registro" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Nivel de registro" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Más" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Menos" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versión" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 9058d328ef1..81a43116f95 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -4,7 +4,7 @@ # # Translators: # Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2013 -# txelu <joseluis.tirado@gmail.com>, 2014 +# Jose Luis Tirado <joseluis.tirado@gmail.com>, 2014 # Maenso <balero_arana@hotmail.com>, 2013 # Raul Fernandez Garcia <raulfg3@gmail.com>, 2013 # ordenet <roberto@ordenet.com>, 2013 @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" -"PO-Revision-Date: 2014-03-12 21:20+0000\n" -"Last-Translator: txelu <joseluis.tirado@gmail.com>\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"Last-Translator: Jose Luis Tirado <joseluis.tirado@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 22f0e39bd7c..3250550af81 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -535,6 +535,18 @@ msgstr "Nueva contraseña:" msgid "Reset password" msgstr "Restablecer contraseña" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personal" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 0c1748fcbc3..02f0efea9be 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -21,66 +21,66 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "No se pudo mover %s - Un archivo con este nombre ya existe" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "No se pudo mover %s " -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "El nombre del archivo no puede quedar vacío." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "El nombre %s está en uso en el directorio %s. Por favor elija un otro nombre." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "No es una fuente válida" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "El servidor no está permitido abrir las URLs, por favor chequee la configuración del servidor" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Error mientras se descargaba %s a %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Error al crear el archivo" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "El nombre del directorio no puede estar vacío." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Error al crear el directorio" @@ -92,54 +92,54 @@ msgstr "No fue posible crear el directorio de subida." msgid "Invalid Token" msgstr "Token Inválido" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "El archivo no fue subido. Error desconocido" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "No hay errores, el archivo fue subido con éxito" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo que intentás subir excede el tamaño definido por upload_max_filesize en el php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo subido sobrepasa el valor MAX_FILE_SIZE especificada en el formulario HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "El archivo fue subido parcialmente" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "No se subió ningún archivo " -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Falta un directorio temporal" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Error al escribir en el disco" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "No hay suficiente almacenamiento" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Falló la carga. No se pudo encontrar el archivo subido." -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Falló la carga. No se pudo obtener la información del archivo." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Directorio inválido." @@ -160,40 +160,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "La subida fue cancelada" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "No se pudo obtener resultados del servidor." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "La URL no puede estar vacía" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "En el directorio inicial 'Shared' es un nombre de archivo reservado" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "No se pudo crear el archivo" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "No se pudo crear el directorio" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Error al obtener la URL" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index a2131dd5f62..206cfbe5cf2 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -50,15 +50,15 @@ msgstr "e-mail mandado" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Encriptación" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -214,31 +214,31 @@ msgstr "Actualizar" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Seleccionar una imágen de perfil" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Desencriptando archivos... Por favor espere, esto puede tardar." @@ -335,18 +335,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Advertencia de seguridad" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Está accediendo %s vía HTTP. Se sugiere fuertemente que configure su servidor para requerir el uso de HTTPS en vez del otro." -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -355,68 +355,68 @@ msgid "" "root." msgstr "El directorio de datos y tus archivos probablemente sean accesibles desde Internet. El archivo .htaccess no funciona. Sugerimos fuertemente que configures tu servidor web de forma tal que el archivo de directorios no sea accesible o muevas el mismo fuera de la raíz de los documentos del servidor web." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Alerta de Configuración" -#: templates/admin.php:74 +#: templates/admin.php:78 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." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "Por favor, cheque bien la <a href=\"%s\">guía de instalación</a>." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "El módulo 'fileinfo' no existe" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "El módulo PHP 'fileinfo' no existe. Es recomendable que actives este módulo para obtener mejores resultados con la detección mime-type" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Su versión de PHP está fuera de término" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "Su versión de PHP está fuera de término. Recomendamos fuertemente actualizar a 5.3.8 o a una más nueva porque se sabe que versiones anteriores están falladas. Es posible que esta instalación no funcione adecuadamente." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "\"Locale\" no está funcionando" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "La localización del sistema no puede cambiarse a una que soporta UTF-8" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivos." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Se sugiere fuertemente instalar los paquetes requeridos en su sistema para soportar uno de las siguientes localizaciones: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "La conexión a Internet no esta funcionando. " -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -425,162 +425,178 @@ 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:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Ejecutá una tarea con cada pagina cargada." -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php está registrado en el servicio webcron para llamarlo cada 15 minutos usando http." -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Usar el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos." -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Compartiendo" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Habilitar Share API" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones usar la Share API" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Permitir a los usuarios compartir enlaces públicos" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Permitir subidas públicas" -#: templates/admin.php:208 +#: templates/admin.php:228 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:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Permitir Re-Compartir" -#: templates/admin.php:217 +#: templates/admin.php:236 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:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Permitir a los usuarios compartir con cualquiera." -#: templates/admin.php:227 +#: templates/admin.php:246 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:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Permitir notificaciones por correo" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Permitir al usuario enviar notificaciones por correo para archivos compartidos" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, 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:263 +#: templates/admin.php:282 #, 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:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Dirección del servidor" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Puerto" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "Credenciales" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Log" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Nivel de Log" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Más" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Menos" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versión" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index d3976c28d2e..bbccd0908e1 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/es_CL/core.po b/l10n/es_CL/core.po index 51a056fa785..e028df6bb61 100644 --- a/l10n/es_CL/core.po +++ b/l10n/es_CL/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -534,6 +534,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/es_CL/settings.po b/l10n/es_CL/settings.po index 608d3fd7d26..602def0e1ee 100644 --- a/l10n/es_CL/settings.po +++ b/l10n/es_CL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/es_MX/core.po b/l10n/es_MX/core.po index 9e1f2bbbe89..7486794d9d7 100644 --- a/l10n/es_MX/core.po +++ b/l10n/es_MX/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -533,6 +533,18 @@ msgstr "Nueva contraseña" msgid "Reset password" msgstr "Restablecer contraseña" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personal" diff --git a/l10n/es_MX/files.po b/l10n/es_MX/files.po index 650b1bcf3de..e35ebde5b12 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "No se pudo mover %s - Ya existe un archivo con ese nombre." -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "No se pudo mover %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "El nombre de archivo no puede estar vacío." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "El nombre %s ya está en uso por la carpeta %s. Por favor elija uno diferente." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "No es un origen válido" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "El servidor no puede acceder URLs; revise la configuración del servidor." -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Error mientras se descargaba %s a %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Error al crear el archivo" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "El nombre de la carpeta no puede estar vacío." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Error al crear la carpeta." @@ -88,54 +88,54 @@ msgstr "Incapaz de crear directorio de subida." msgid "Invalid Token" msgstr "Token Inválido" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "No se subió ningún archivo. Error desconocido" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "No hubo ningún problema, el archivo se subió con éxito" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo subido sobrepasa la directiva 'upload_max_filesize' en php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo subido sobrepasa la directiva 'MAX_FILE_SIZE' especificada en el formulario HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "El archivo subido fue sólo subido parcialmente" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "No se subió ningún archivo" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Falta la carpeta temporal" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Falló al escribir al disco" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Actualización fallida. No se pudo encontrar el archivo subido" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Actualización fallida. No se pudo obtener información del archivo." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Directorio inválido." @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "No se pudo obtener respuesta del servidor." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "La dirección URL no puede estar vacía" -#: js/file-upload.js:566 +#: js/file-upload.js:568 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:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "No se pudo crear el archivo" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "No se pudo crear la carpeta" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Error al descargar URL." diff --git a/l10n/es_MX/settings.po b/l10n/es_MX/settings.po index 44e2120bd68..29badc9fef1 100644 --- a/l10n/es_MX/settings.po +++ b/l10n/es_MX/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "Correo electrónico enviado" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Cifrado" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "Actualizar" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Seleccionar una imagen de perfil" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Descifrando archivos... Espere por favor, esto puede llevar algo de tiempo." @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Advertencia de seguridad" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Está ingresando a %s vía HTTP. Le recomendamos encarecidamente que configure su servidor para que requiera HTTPS." -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "Su directorio de datos y archivos es probablemente accesible desde Internet pues el archivo .htaccess no está funcionando. Le sugerimos encarecidamente que configure su servidor web de modo que el directorio de datos no sea accesible o que mueva dicho directorio fuera de la raíz de documentos del servidor web." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Advertencia de configuración" -#: templates/admin.php:74 +#: templates/admin.php:78 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 la sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "Por favor, vuelva a comprobar las <a href='%s'>guías de instalación</a>." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "No se ha encontrado el módulo \"fileinfo\"" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "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." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Su versión de PHP ha caducado" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "Su versión de PHP ha caducado. Le sugerimos encarecidamente que la actualize a 5.3.8 o a una más nueva porque normalmente las versiones antiguas no funcionan bien. Puede ser que esta instalación no esté funcionando bien por ello." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "La configuración regional no está funcionando" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "No se puede escoger una configuración regional que soporte UTF-8." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Es muy recomendable instalar los paquetes necesarios para poder soportar una de las siguientes configuraciones regionales: %s. " -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "La conexión a Internet no está funcionando" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ 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:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Ejecutar una tarea con cada página cargada" -#: templates/admin.php:171 +#: templates/admin.php:192 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:179 +#: templates/admin.php:200 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:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Compartiendo" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Activar API de Compartición" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones utilizar la API de Compartición" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:199 +#: templates/admin.php:220 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:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Permitir subidas públicas" -#: templates/admin.php:208 +#: templates/admin.php:228 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:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Permitir re-compartición" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Permitir a los usuarios compartir de nuevo elementos ya compartidos" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Permitir a los usuarios compartir con cualquier persona" -#: templates/admin.php:227 +#: templates/admin.php:246 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:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Permitir notificaciones por correo electrónico" -#: templates/admin.php:235 +#: templates/admin.php:254 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:242 +#: templates/admin.php:261 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, 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:263 +#: templates/admin.php:282 #, 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:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Dirección del servidor" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Puerto" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Registro" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Nivel de registro" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Más" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Menos" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versión" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/es_MX/user_ldap.po b/l10n/es_MX/user_ldap.po index a2926c98e42..78711d7f98b 100644 --- a/l10n/es_MX/user_ldap.po +++ b/l10n/es_MX/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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 593d07bab9d..55a2016cd44 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -535,6 +535,18 @@ msgstr "Uus parool" msgid "Reset password" msgstr "Nulli parool" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Isiklik" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 6b573af2fda..780aa687c9d 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -19,66 +19,66 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Ei saa liigutada faili %s - samanimeline fail on juba olemas" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "%s liigutamine ebaõnnestus" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Faili nimi ei saa olla tühi." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Nimi %s on juba kasutusel kataloogis %s. Palun vali mõni teine nimi." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Pole korrektne lähteallikas" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server ei võimalda URL-ide avamist, palun kontrolli serveri seadistust" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Viga %s allalaadimisel %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Viga faili loomisel" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Kataloogi nimi ei saa olla tühi." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Viga kataloogi loomisel" @@ -90,54 +90,54 @@ msgstr "Üleslaadimiste kausta määramine ebaõnnestus." msgid "Invalid Token" msgstr "Vigane kontrollkood" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ühtegi faili ei laetud üles. Tundmatu viga" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Ühtegi tõrget polnud, fail on üles laetud" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Üleslaetava faili suurus ületab php.ini poolt määratud upload_max_filesize suuruse:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Üleslaetud fail ületab MAX_FILE_SIZE suuruse, mis on HTML vormi jaoks määratud" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Fail laeti üles ainult osaliselt" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ühtegi faili ei laetud üles" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Ajutiste failide kaust puudub" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Kettale kirjutamine ebaõnnestus" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Saadaval pole piisavalt ruumi" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Üleslaadimine ebaõnnestus. Üleslaetud faili ei leitud" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Üleslaadimine ebaõnnestus. Faili info hankimine ebaõnnestus." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Vigane kaust." @@ -158,40 +158,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Üleslaadimine tühistati." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Serverist ei saadud tulemusi" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL ei saa olla tühi" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Kodukataloogis 'Shared' on reserveeritud failinimi" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} on juba olemas" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Ei suuda luua faili" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Ei suuda luua kataloogi" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Viga URL-i haaramisel" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index b82c481cf3e..658a109771c 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -49,15 +49,15 @@ msgstr "E-kiri on saadetud" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Krüpteerimine" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -213,31 +213,31 @@ msgstr "Uuenda" msgid "Updated" msgstr "Uuendatud" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Vali profiili pilt" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dekrüpteerin faile... Palun oota, see võib võtta veidi aega." @@ -334,18 +334,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Turvahoiatus" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Sa kasutad %s ligipääsuks HTTP protokolli. Soovitame tungivalt seadistada oma server selle asemel kasutama HTTPS-i." -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -354,68 +354,68 @@ msgid "" "root." msgstr "Andmete kataloog ja failid on tõenäoliselt internetis avalikult saadaval. .htaccess fail, ei toimi. Soovitame tungivalt veebiserver seadistada selliselt, et andmete kataloog ei oleks enam vabalt saadaval või tõstaksid andmete kataloogi oma veebiserveri veebi juurkataloogist mujale." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Paigalduse hoiatus" -#: templates/admin.php:74 +#: templates/admin.php:78 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." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "Palun kontrolli uuesti <a href=\"%s\">paigaldusjuhendeid</a>." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Moodul 'fileinfo' puudub" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks parimaid tulemusi failitüüpide tuvastamisel." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "PHP versioon on aegunud" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "Sinu PHP versioon on aegunud. Soovitame tungivalt uuenda versioonile 5.3.8 või uuemale, kuna varasemad versioonid on teadaolevalt vigased. On võimalik, et see käesolev paigaldus ei toimi korrektselt." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Lokalisatsioon ei toimi" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Süsteemi lokaliseeringuks ei saa panna sellist, mis toetab UTF-8-t." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "See tähendab, et võib esineda probleeme failide nimedes mõnede sümbolitega." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Soovitame tungivalt paigaldada vajalikud paketid oma süsteemi tagamaks tuge järgmistele lokaliseeringutele: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Internetiühendus ei toimi" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -424,162 +424,178 @@ 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:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Käivita toiming igal lehe laadimisel" -#: templates/admin.php:171 +#: templates/admin.php:192 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:179 +#: templates/admin.php:200 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:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Jagamine" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Luba Share API" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Luba rakendustel kasutada Share API-t" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Luba lingid" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Luba kasutajatel jagada kirjeid avalike linkidega" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Luba avalikud üleslaadimised" -#: templates/admin.php:208 +#: templates/admin.php:228 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:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Luba edasijagamine" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Luba kasutajatel jagada edasi kirjeid, mida on neile jagatud" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Luba kasutajatel kõigiga jagada" -#: templates/admin.php:227 +#: templates/admin.php:246 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:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Luba teavitused e-postiga" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Luba kasutajatel saata jagatud failide kohta e-postiga teavitusi" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Turvalisus" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Sunni peale HTTPS-i kasutamine" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Sunnib kliente %s ühenduma krüpteeritult." -#: templates/admin.php:263 +#: templates/admin.php:282 #, 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:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Serveri aadress" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "Kasutajatunnused" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Logi" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Logi tase" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Rohkem" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Vähem" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versioon" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index a05bf02b3fd..68433039694 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 33533a481d8..caf5ea80714 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -535,6 +535,18 @@ msgstr "Pasahitz berria" msgid "Reset password" msgstr "Berrezarri pasahitza" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Pertsonala" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 3950ef86ccf..8245bccc029 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -19,66 +19,66 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Ezin da %s mugitu - Izen hau duen fitxategia dagoeneko existitzen da" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Ezin dira fitxategiak mugitu %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Fitxategi izena ezin da hutsa izan." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "%s izena dagoeneko erabilita dago %s karpetan. Mesdez hautatu izen ezberdina." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Ez da jatorri baliogarria" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Zerbitzaria ez dago URLak irekitzeko baimendua, mesedez egiaztatu zerbitzariaren konfigurazioa" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Errorea %s %sra deskargatzerakoan" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Errorea fitxategia sortzerakoan" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Karpeta izena ezin da hutsa izan." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Errorea karpeta sortzerakoan" @@ -90,54 +90,54 @@ msgstr "Ezin da igoera direktorioa ezarri." msgid "Invalid Token" msgstr "Lekuko baliogabea" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ez da fitxategirik igo. Errore ezezaguna" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Ez da errorerik egon, fitxategia ongi igo da" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Igotako fitxategia HTML formularioan zehaztutako MAX_FILE_SIZE direktiba baino handidagoa da." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Igotako fitxategiaren zati bat bakarrik igo da" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ez da fitxategirik igo" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Aldi bateko karpeta falta da" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Errore bat izan da diskoan idazterakoan" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Ez dago behar aina leku erabilgarri," -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Igoerak huts egin du. Ezin izan da igotako fitxategia aurkitu" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Igoerak huts egin du. Ezin izan da fitxategiaren informazioa eskuratu." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Baliogabeko karpeta." @@ -158,40 +158,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Igoera ezeztatuta" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Ezin da zerbitzaritik emaitzik lortu" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URLa ezin da hutsik egon" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Etxeko (home) karpetan 'Shared' erreserbatutako fitxategi izena da" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} dagoeneko existitzen da" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Ezin izan da fitxategia sortu" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Ezin izan da karpeta sortu" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Errorea URLa eskuratzerakoan" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 52e13339ba8..3968d2fbc17 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -50,15 +50,15 @@ msgstr "Eposta bidalia" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Enkriptazioa" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -214,31 +214,31 @@ msgstr "Eguneratu" msgid "Updated" msgstr "Eguneratuta" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Profil argazkia aukeratu" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -335,18 +335,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Segurtasun abisua" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "%s HTTP bidez erabiltzen ari zara. Aholkatzen dizugu zure zerbitzaria HTTPS erabil dezan." -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -355,68 +355,68 @@ msgid "" "root." msgstr "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Konfiguratu Abisuak" -#: templates/admin.php:74 +#: templates/admin.php:78 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." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "Mesedez birpasatu <a href=\"%s\">instalazio gidak</a>." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "'fileinfo' Modulua falta da" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP 'fileinfo' modulua falta da. Modulu hau gaitzea aholkatzen dizugu mime-type ezberdinak hobe detektatzeko." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Zure PHP bertsioa zaharkituta dago" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "Zure PHP bertsioa zaharkituta dago. Gure aholkua 5.3.8 edo bertsio berriago batera eguneratzea da, bertsio zaharragoak arazoak ematen baitituzte. Posible da instalazio honek ez funtzionatzea ongi." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Lokala ez dabil" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Sistemaren lokala ezin da UTF-8 onartzen duen batera ezarri." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Honek esan nahi du fitxategien izenetako karaktere batzuekin arazoak egon daitezkeela." -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Interneteko konexioak ez du funtzionatzen" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -425,162 +425,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Zerbitzari honen interneteko konexioa ez dabil. Honek esan nahi du kanpoko biltegiratze zerbitzuak, eguneraketen informazioa edo bestelako aplikazioen instalazioa bezalako programek ez dutela funtzionatuko. Urrunetik fitxategiak eskuratzea eta e-postak bidaltzea ere ezinezkoa izan daiteke. onwCloud-en aukera guztiak erabili ahal izateko zerbitzari honetan interneteko konexioa gaitzea aholkatzen dizugu." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Exekutatu zeregin bat orri karga bakoitzean" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php webcron zerbitzu batean erregistratua dago cron.php 15 minuturo http bidez deitzeko." -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Erabili sistemaren cron zerbitzua cron.php fitxategia 15 minuturo deitzeko." -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Partekatzea" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Gaitu Elkarbanatze APIa" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Baimendu aplikazioak Elkarbanatze APIa erabiltzeko" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Baimendu loturak" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Baimendu erabiltzaileak loturen bidez fitxategiak publikoki elkarbanatzen" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Baimendu igoera publikoak" -#: templates/admin.php:208 +#: templates/admin.php:228 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:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Baimendu birpartekatzea" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Baimendu erabiltzaileak haiekin elkarbanatutako fitxategiak berriz ere elkarbanatzen" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Baimendu erabiltzaileak edonorekin elkarbanatzen" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin elkarbanatzen" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Baimendu posta bidezko jakinarazpenak" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Baimendu erabiltzailea posta bidezko jakinarazpenak bidaltzen partekatutako fitxategietarako" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Segurtasuna" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Behartu HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, 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:263 +#: templates/admin.php:282 #, 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:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Zerbitzariaren helbidea" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Portua" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "Kredentzialak" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Egunkaria" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Erregistro maila" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Gehiago" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Gutxiago" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Bertsioa" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 0a00e89e649..502322ad159 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/eu_ES/core.po b/l10n/eu_ES/core.po index eedbe0ca51d..d2c3ce4ab95 100644 --- a/l10n/eu_ES/core.po +++ b/l10n/eu_ES/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Pertsonala" diff --git a/l10n/eu_ES/files.po b/l10n/eu_ES/files.po index 08dee84c9e1..f57a7040ace 100644 --- a/l10n/eu_ES/files.po +++ b/l10n/eu_ES/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: eu_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/eu_ES/settings.po b/l10n/eu_ES/settings.po index 5e11f9b23ca..4aa0c3e54f7 100644 --- a/l10n/eu_ES/settings.po +++ b/l10n/eu_ES/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/eu_ES/user_ldap.po b/l10n/eu_ES/user_ldap.po index 20c3e494dba..bbc3027bfca 100644 --- a/l10n/eu_ES/user_ldap.po +++ b/l10n/eu_ES/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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 01c721a9009..f16b1d2870f 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -529,6 +529,18 @@ msgstr "گذرواژه جدید" msgid "Reset password" msgstr "دوباره سازی گذرواژه" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "شخصی" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 9b6b202c14f..83011111feb 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -19,66 +19,66 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "%s نمی توان جابجا کرد - در حال حاضر پرونده با این نام وجود دارد. " -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "%s نمی تواند حرکت کند " -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "نام پرونده نمی تواند خالی باشد." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "نام نامعتبر ، '\\', '/', '<', '>', ':', '\"', '|', '?' و '*' مجاز نمی باشند." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -90,54 +90,54 @@ msgstr "قادر به تنظیم پوشه آپلود نمی باشد." msgid "Invalid Token" msgstr "رمز نامعتبر" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "هیچ فایلی آپلود نشد.خطای ناشناس" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "هیچ خطایی نیست بارگذاری پرونده موفقیت آمیز بود" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "پرونده آپلود شده بیش ازدستور ماکزیمم_حجم فایل_برای آپلود در php.ini استفاده کرده است." -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حداکثر حجم قابل بار گذاری از طریق HTML MAX_FILE_SIZE است" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "پرونده بارگذاری شده فقط تاحدودی بارگذاری شده" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "هیچ پروندهای بارگذاری نشده" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "یک پوشه موقت گم شده" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "نوشتن بر روی دیسک سخت ناموفق بود" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "فضای کافی در دسترس نیست" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "فهرست راهنما نامعتبر می باشد." @@ -158,40 +158,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "بار گذاری لغو شد" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "آپلودکردن پرونده در حال پیشرفت است. در صورت خروج از صفحه آپلود لغو میگردد. " -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{نام _جدید} در حال حاضر وجود دارد." -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 4fe707b5ddc..9161be26f74 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -50,15 +50,15 @@ msgstr "ایمیل ارسال شد" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "رمزگذاری" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -214,31 +214,31 @@ msgstr "به روز رسانی" msgid "Updated" msgstr "بروز رسانی انجام شد" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "انتخاب تصویر پروفایل" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "در حال بازگشایی رمز فایلها... لطفاً صبر نمایید. این امر ممکن است مدتی زمان ببرد." @@ -335,18 +335,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "اخطار امنیتی" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -355,68 +355,68 @@ msgid "" "root." msgstr "به احتمال زیاد پوشهی data و فایلهای شما از طریق اینترنت قابل دسترسی هستند. فایل .htaccess برنامه کار نمیکند. ما شدیداً توصیه می کنیم که شما وب سرور خودتان را طوری تنظیم کنید که پوشهی data شما غیر قابل دسترسی باشد یا اینکه پوشهی data را به خارج از ریشهی اصلی وب سرور انتقال دهید." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "هشدار راه اندازی" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "لطفاً دوباره <a href='%s'>راهنمای نصب</a>را بررسی کنید." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "ماژول 'fileinfo' از کار افتاده" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "ماژول 'fileinfo' PHP از کار افتاده است.ما اکیدا توصیه می کنیم که این ماژول را فعال کنید تا نتایج بهتری به وسیله ی mime-type detection دریافت کنید." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "زبان محلی کار نمی کند." -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "اتصال اینترنت کار نمی کند" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -425,162 +425,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "این سرور ارتباط اینترنتی ندارد. این بدین معناست که بعضی از امکانات نظیر مرتبط سازی یک منبع ذخیرهی خارجی، اطلاعات رسانی در مورد بروزرسانیها یا نصب برنامه های جانبی کار نمیکنند. دسترسی به فایل ها از راه دور و ارسال اطلاع رسانی توسط ایمیل ممکن است همچنان کار نکند. ما پیشنهاد میکنیم که ارتباط اینترنتی مربوط به این سرور را فعال کنید تا تمامی امکانات را در اختیار داشته باشید." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "زمانبند" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "اجرای یک وظیفه با هر بار بارگذاری صفحه" -#: templates/admin.php:171 +#: templates/admin.php:192 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:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "از سرویس کرون سرور استفاده شده است که فایل cron.php را هر 15 دقیقه یک بار فراخوانی کند." -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "اشتراک گذاری" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "فعال کردن API اشتراک گذاری" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "اجازه ی برنامه ها برای استفاده از API اشتراک گذاری" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "اجازه ی لینک ها" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "اجازه دادن به کاربران برای اشتراک گذاری آیتم ها با عموم از طریق پیوند ها" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "اجازه بارگذاری عمومی" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "به کاربران اجازه داده شود که امکان بارگذاری در پوشه هایی که بصورت عمومی به اشتراک گذاشته اند را برای سایرین فعال سازند" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "مجوز اشتراک گذاری مجدد" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "اجازه به کاربران برای اشتراک گذاری دوباره با آنها" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "اجازه به کابران برای اشتراک گذاری با همه" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "اجازه به کاربران برای اشتراک گذاری ، تنها با دیگر کابران گروه خودشان" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "مجاز نمودن اطلاع رسانی توسط ایمیل" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "مجاز نمودن ارسال ایمیل توسط کاربر برای فایلهای به اشتراک گذاشته شده" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "امنیت" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "وادار کردن HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "کلاینتها را مجبور کن که از یک ارتباط رمزنگاری شده برای اتصال به %s استفاده کنند." -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "برای فعال سازی یا عدم فعال سازی اجبار استفاده از SSL، لطفاً از طریق HTTPS به %s وصل شوید." -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "آدرس سرور" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "درگاه" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "اعتبارهای" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "کارنامه" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "سطح ورود" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "بیشتر" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "کمتر" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "نسخه" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 8311efcf667..978827d9d51 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index d0456dcd740..5a164229847 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 11:20+0000\n" -"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -536,6 +536,18 @@ msgstr "Uusi salasana" msgid "Reset password" msgstr "Palauta salasana" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Henkilökohtainen" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index c1779a2cd13..8306890140f 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -20,66 +20,66 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Kohteen %s siirto ei onnistunut - Tiedosto samalla nimellä on jo olemassa" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Kohteen %s siirto ei onnistunut" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Tiedoston nimi ei voi olla tyhjä." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" on virheellinen tiedostonimi." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Kohdekansio on siirretty tai poistettu." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Nimi %s on jo käytössä kansiossa %s. Valitse toinen nimi." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Virheellinen lähde" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Palvelimen ei ole lupa avata verkko-osoitteita. Tarkista palvelimen asetukset" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Virhe ladatessa kohdetta %s sijaintiin %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Virhe tiedostoa luotaessa" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Kansion nimi ei voi olla tyhjä." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Virhe kansiota luotaessa" @@ -91,54 +91,54 @@ msgstr "Lähetyskansion asettaminen epäonnistui." msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Tiedostoa ei lähetetty. Tuntematon virhe" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Ei virheitä, tiedosto lähetettiin onnistuneesti" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Lähetetyn tiedoston koko ylittää php.ini-tiedoston upload_max_filesize-säännön:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Lähetettävän tiedoston enimmäiskoko ylittää HTML-lomakkeessa määritellyn MAX_FILE_SIZE-säännön" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Tiedoston lähetys onnistui vain osittain" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Yhtäkään tiedostoa ei lähetetty" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Tilapäiskansio puuttuu" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Levylle kirjoitus epäonnistui" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Tallennustilaa ei ole riittävästi käytettävissä" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Lähetys epäonnistui. Lähettävää tiedostoa ei löydetty." -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Lähetys epäonnistui. Lähettävää tiedostoa ei löydetty." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Virheellinen kansio." @@ -159,40 +159,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Ei riittävästi vapaata tilaa. Lähetyksesi koko on {size1}, mutta vain {size2} on jäljellä" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Lähetys peruttu." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Tuloksien saaminen palvelimelta ei onnistunut." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "Osoite ei voi olla tyhjä" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} on jo olemassa" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Tiedoston luominen epäonnistui" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Kansion luominen epäonnistui" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Virhe noutaessa verkko-osoitetta" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index d98d93147a6..820800fa818 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: 2014-03-13 01:55-0400\n" -"PO-Revision-Date: 2014-03-12 11:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 07:01+0000\n" "Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -48,15 +48,15 @@ msgstr "Sähköposti lähetetty" msgid "You need to set your user email before being able to send test emails." msgstr "Aseta sähköpostiosoite, jotta voit testata sähköpostin toimivuutta." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Lähetystila" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Salaus" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Tunnistautumistapa" @@ -212,31 +212,31 @@ msgstr "Päivitä" msgid "Updated" msgstr "Päivitetty" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Valitse profiilikuva" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "Erittäin heikko salasana" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "Heikko salasana" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "Kohtalainen salasana" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "Hyvä salasana" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "Vahva salasana" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Puretaan tiedostojen salausta... Odota, tämä voi kestää jonkin aikaa." @@ -428,157 +428,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "Viimeisin cron suoritettiin %s." + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "Viimeisin cron suoritettiin %s. Siitä on yli tunti aikaa, joten jokin näyttää olevan pielessä." + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "Cronia ei suoritettu vielä!" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:200 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:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Jakaminen" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Käytä jakamisen ohjelmointirajapintaa" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Salli sovellusten käyttää jakamisen ohjelmointirajapintaa" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Salli linkit" -#: templates/admin.php:203 +#: templates/admin.php:220 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:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Salli julkiset lähetykset" -#: templates/admin.php:212 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Salli uudelleenjakaminen" -#: templates/admin.php:221 +#: templates/admin.php:236 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:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Salli käyttäjien jakaa kenen tahansa kanssa" -#: templates/admin.php:231 +#: templates/admin.php:246 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:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Salli sähköposti-ilmoitukset" -#: templates/admin.php:239 +#: templates/admin.php:254 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:246 +#: templates/admin.php:261 msgid "Security" msgstr "Tietoturva" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Pakota HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, 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:267 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "Sähköpostipalvelin" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "Tätä käytetään ilmoitusten lähettämiseen." -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Lähettäjän osoite" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Tunnistautuminen vaaditaan" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Palvelimen osoite" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Portti" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Tilitiedot" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "SMTP-käyttäjätunnus" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "SMTP-salasana" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Testaa sähköpostiasetukset" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Lähetä sähköpostiviesti" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Loki" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Lokitaso" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Enemmän" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Vähemmän" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versio" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 750a7b58534..83464ec1114 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 6eae9f9e3d3..ac43181e222 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -541,6 +541,18 @@ msgstr "Nouveau mot de passe" msgid "Reset password" msgstr "Réinitialiser le mot de passe" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personnel" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 04604224016..9e3b0bca469 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -22,66 +22,66 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Impossible de déplacer %s - Un fichier possédant ce nom existe déjà" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Impossible de déplacer %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Le nom de fichier ne peut être vide." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" n'est pas un nom de fichier valide." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Le dossier cible a été déplacé ou supprimé." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Le nom %s est déjà utilisé dans le dossier %s. Merci de choisir un nom différent." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "La source n'est pas valide" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Le serveur n'est pas autorisé à ouvrir des URL, veuillez vérifier la configuration du serveur" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Erreur pendant le téléchargement de %s à %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Erreur pendant la création du fichier" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Le nom de dossier ne peux pas être vide." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Erreur pendant la création du dossier" @@ -93,54 +93,54 @@ msgstr "Impossible de définir le dossier pour l'upload, charger." msgid "Invalid Token" msgstr "Jeton non valide" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Aucun fichier n'a été envoyé. Erreur inconnue" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Aucune erreur, le fichier a été envoyé avec succès." -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Le fichier envoyé dépasse l'instruction upload_max_filesize située dans le fichier php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Le fichier envoyé dépasse l'instruction MAX_FILE_SIZE qui est spécifiée dans le formulaire HTML." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Le fichier n'a été que partiellement envoyé." -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Pas de fichier envoyé." -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Absence de dossier temporaire." -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Erreur d'écriture sur le disque" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Plus assez d'espace de stockage disponible" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "L'envoi a échoué. Impossible de trouver le fichier envoyé." -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "L'envoi a échoué. Impossible d'obtenir les informations du fichier." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Dossier invalide." @@ -161,40 +161,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Espace insuffisant : vous tentez d'envoyer {size1} mais seulement {size2} sont disponibles" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Envoi annulé." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Ne peut recevoir les résultats du serveur." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "L'URL ne peut pas être vide" -#: js/file-upload.js:566 +#: js/file-upload.js:568 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:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} existe déjà" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Impossible de créer le fichier" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Impossible de créer le dossier" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Erreur d'accès à l'URL" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 74d558daff5..1b65d2d0a44 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-13 16:21+0000\n" -"Last-Translator: Christophe Lherieau <skimpax@gmail.com>\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -58,15 +58,15 @@ msgstr "Email envoyé" msgid "You need to set your user email before being able to send test emails." msgstr "Vous devez configurer votre e-mail d'utilisateur avant de pouvoir envoyer des e-mails de test." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Mode d'envoi" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Chiffrement" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Méthode d'authentification" @@ -438,157 +438,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Exécute une tâche à chaque chargement de page" -#: templates/admin.php:175 +#: templates/admin.php:192 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:183 +#: templates/admin.php:200 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:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Partage" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Activer l'API de partage" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Autoriser les applications à utiliser l'API de partage" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Autoriser les liens" -#: templates/admin.php:203 +#: templates/admin.php:220 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:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Autoriser les téléversements publics" -#: templates/admin.php:212 +#: templates/admin.php:228 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:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Autoriser le repartage" -#: templates/admin.php:221 +#: templates/admin.php:236 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:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Autoriser les utilisateurs à partager avec tout le monde" -#: templates/admin.php:231 +#: templates/admin.php:246 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:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Autoriser les notifications par couriel" -#: templates/admin.php:239 +#: templates/admin.php:254 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:246 +#: templates/admin.php:261 msgid "Security" msgstr "Sécurité" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Forcer HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, 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:267 +#: templates/admin.php:282 #, 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:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "Serveur mail" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "Ceci est utilisé pour l'envoi des notifications." -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Adresse source" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Authentification requise" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Adresse du serveur" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Informations d'identification" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "Nom d'utilisateur SMTP" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "Mot de passe SMTP" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Paramètres de test d'e-mail" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Envoyer un e-mail" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Log" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Niveau de log" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Plus" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Moins" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 44203b8b95d..09a7f945aba 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/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: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-13 16:21+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: Christophe Lherieau <skimpax@gmail.com>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr_CA/core.po b/l10n/fr_CA/core.po index fee0be178fe..a2dc9cb6682 100644 --- a/l10n/fr_CA/core.po +++ b/l10n/fr_CA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/fr_CA/settings.po b/l10n/fr_CA/settings.po index 700d1798806..845f2fc237a 100644 --- a/l10n/fr_CA/settings.po +++ b/l10n/fr_CA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 6b3b02246f3..7839bd4996c 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 11:03+0000\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 10:00+0000\n" "Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -535,6 +535,18 @@ msgstr "Novo contrasinal" msgid "Reset password" msgstr "Restabelecer o contrasinal" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "Mac OS X non é compatíbel e %s non funcionará correctamente nesta plataforma. Úseo baixo o seu risco!" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "Para obter mellores resultados, considere o emprego dun servidor GNU/Linux no seu canto." + #: strings.php:5 msgid "Personal" msgstr "Persoal" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index d9c74f926a2..5d5e1a7178d 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -19,66 +19,66 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Non foi posíbel mover %s; Xa existe un ficheiro con ese nome." -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Non foi posíbel mover %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "O nome de ficheiro non pode estar baleiro" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "«%s» é un nome incorrecto de ficheiro." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome incorrecto, non se permite «\\», «/», «<», «>», «:», «\"», «|», «?» e «*»." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "O cartafol de destino foi movido ou eliminado." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Xa existe o nome %s no cartafol %s. Escolla outro nome." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Esta orixe non é correcta" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "O servidor non ten permisos para abrir os enderezos URL, comprobe a configuración do servidor" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Produciuse un erro ao descargar %s en %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Produciuse un erro ao crear o ficheiro" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "O nome de cartafol non pode estar baleiro." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Produciuse un erro ao crear o cartafol" @@ -90,54 +90,54 @@ msgstr "Non é posíbel configurar o directorio de envíos." msgid "Invalid Token" msgstr "Marca incorrecta" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Non se enviou ningún ficheiro. Produciuse un erro descoñecido." -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Non houbo erros, o ficheiro enviouse correctamente" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro enviado excede a directiva indicada por upload_max_filesize de php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O ficheiro enviado excede da directiva MAX_FILE_SIZE especificada no formulario HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro so foi parcialmente enviado" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Non se enviou ningún ficheiro" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Falta o cartafol temporal" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Produciuse un erro ao escribir no disco" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Non hai espazo de almacenamento abondo" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "O envío fracasou. Non foi posíbel atopar o ficheiro enviado" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "O envío fracasou. Non foi posíbel obter información do ficheiro." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "O directorio é incorrecto." @@ -158,40 +158,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Non hai espazo libre abondo, o seu envío é de {size1} mais só dispón de {size2}" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Envío cancelado." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Non foi posíbel obter o resultado do servidor." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "O envío do ficheiro está en proceso. Saír agora da páxina cancelará o envío." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "O URL non pode quedar en branco." -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "«Shared» dentro do cartafol persoal é un nome reservado" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "Xa existe un {new_name}" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Non foi posíbel crear o ficheiro" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Non foi posíbel crear o cartafol" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Produciuse un erro ao obter o URL" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 07f76320782..8cb40f5bbb9 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-14 09:50+0000\n" -"Last-Translator: mbouzada <mbouzada@gmail.com>\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -49,15 +49,15 @@ msgstr "Correo enviado" msgid "You need to set your user email before being able to send test emails." msgstr "É necesario configurar o correo do usuario antes de poder enviar mensaxes de correo de proba." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Modo de envío" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Cifrado" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Método de autenticación" @@ -429,157 +429,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Executar unha tarefa con cada páxina cargada" -#: templates/admin.php:175 +#: templates/admin.php:192 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:183 +#: templates/admin.php:200 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:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Compartindo" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Activar o API para compartir" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Permitir que os aplicativos empreguen o API para compartir" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Permitir ligazóns" -#: templates/admin.php:203 +#: templates/admin.php:220 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:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Permitir os envíos públicos" -#: templates/admin.php:212 +#: templates/admin.php:228 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:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Permitir compartir" -#: templates/admin.php:221 +#: templates/admin.php:236 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:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Permitir que os usuarios compartan con calquera" -#: templates/admin.php:231 +#: templates/admin.php:246 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:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Permitir o envío de notificacións por correo" -#: templates/admin.php:239 +#: templates/admin.php:254 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:246 +#: templates/admin.php:261 msgid "Security" msgstr "Seguranza" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, 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:267 +#: templates/admin.php:282 #, 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:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "Servidor de correo" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "Isto utilizase para o envío de notificacións." -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Desde o enderezo" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Requírese autenticación" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Enderezo do servidor" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Porto" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Credenciais" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "Nome de usuario SMTP" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "Contrasinal SMTP" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Correo de proba dos axustes" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Enviar o correo" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Rexistro" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Nivel de rexistro" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Máis" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Menos" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versión" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 56d17fa56b4..2070e8c7153 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/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: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-14 09:10+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index 88cbcf55a05..41af2ccd477 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -535,6 +535,18 @@ msgstr "ססמה חדשה" msgid "Reset password" msgstr "איפוס ססמה" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "אישי" diff --git a/l10n/he/files.po b/l10n/he/files.po index 872d1669a44..fe83688b064 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -19,66 +19,66 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "לא ניתן להעביר את %s - קובץ בשם הזה כבר קיים" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "לא ניתן להעביר את %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "שם קובץ אינו יכול להיות ריק" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -90,54 +90,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "לא הועלה קובץ. טעות בלתי מזוהה." -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "לא התרחשה שגיאה, הקובץ הועלה בהצלחה" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "הקובץ שהועלה גדוך מהערך MAX_FILE_SIZE שהוגדר בתופס HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "הקובץ הועלה באופן חלקי בלבד" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "שום קובץ לא הועלה" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "תקיה זמנית חסרה" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "הכתיבה לכונן נכשלה" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "אין די שטח פנוי באחסון" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "העלאה נכשלה. לא ניתן להשיג את פרטי הקובץ." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "תיקייה שגויה." @@ -158,40 +158,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "ההעלאה בוטלה." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "לא ניתן לגשת לתוצאות מהשרת." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} כבר קיים" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 0d4becb93cf..6d958a14213 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -48,15 +48,15 @@ msgstr "הודעת הדוא״ל נשלחה" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "הצפנה" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -212,31 +212,31 @@ msgstr "עדכון" msgid "Updated" msgstr "מעודכן" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -333,18 +333,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "אזהרת אבטחה" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -353,68 +353,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "שגיאת הגדרה" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "שרת האינטרנט שלך אינו מוגדר לצורכי סנכרון קבצים עדיין כיוון שמנשק ה־WebDAV כנראה אינו תקין." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "המודול „fileinfo“ חסר" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "החיבור לאינטרנט אינו פעיל" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "יש להפעיל משימה אחת עם כל עמוד שנטען" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "שיתוף" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "הפעלת API השיתוף" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "לאפשר ליישום להשתמש ב־API השיתוף" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "לאפשר קישורים" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "לאפשר למשתמשים לשתף פריטים " -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "לאפשר שיתוף מחדש" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "לאפשר למשתמשים לשתף הלאה פריטים ששותפו אתם" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "לאפשר למשתמשים לשתף עם כל אחד" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "לאפשר למשתמשים לשתף עם משתמשים בקבוצות שלהם בלבד" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "אבטחה" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "לאלץ HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "כתובת שרת" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "פורט" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "פרטי גישה" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "יומן" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "רמת הדיווח" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "יותר" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "פחות" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "גרסא" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index e43dba49a7b..5a7b24997c7 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index cb2648372a5..ed9d8a2cc5f 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -535,6 +535,18 @@ msgstr "नया पासवर्ड" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "यक्तिगत" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 6405316b8b7..571ff8efa40 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 6baf2b2cf7d..9b0da8d64aa 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "ईमेल भेज दिया गया है " msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "अद्यतन" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "सुरक्षा चेतावनी " -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index f001017d01f..1c1bdbf62bb 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 71c9a19e1a1..cc5099c80a1 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -538,6 +538,18 @@ msgstr "Nova lozinka" msgid "Reset password" msgstr "Poništavanje lozinke" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Osobno" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 1f5a7f6813b..6670ab986cc 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Nema pogreške, datoteka je poslana uspješno." -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslana datoteka prelazi veličinu prikazanu u MAX_FILE_SIZE direktivi u HTML formi" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Poslana datoteka je parcijalno poslana" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Datoteka nije poslana" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Nedostaje privremeni direktorij" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Neuspjelo pisanje na disk" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Slanje poništeno." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 45cdc0d2f91..c1b59f382cd 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "dnevnik" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "više" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index c5facc60a29..0d0c691cf7a 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 21e109571eb..954685a0322 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -536,6 +536,18 @@ msgstr "Az új jelszó" msgid "Reset password" msgstr "Jelszó-visszaállítás" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Személyes" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 4e614762395..6e63b3157d4 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -19,66 +19,66 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "%s áthelyezése nem sikerült - már létezik másik fájl ezzel a névvel" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Nem sikerült %s áthelyezése" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "A fájlnév nem lehet semmi." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "A %s név már létezik a %s mappában. Kérem válasszon másik nevet!" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "A kiinduló állomány érvénytelen" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "A kiszolgálón nincs engedélyezve URL-ek megnyitása, kérem ellenőrizze a beállításokat" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Hiba történt miközben %s-t letöltöttük %s-be" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Hiba történt az állomány létrehozásakor" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "A mappa neve nem maradhat kitöltetlenül" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Hiba történt a mappa létrehozásakor" @@ -90,54 +90,54 @@ msgstr "Nem található a mappa, ahova feltölteni szeretne." msgid "Invalid Token" msgstr "Hibás mappacím" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Nem történt feltöltés. Ismeretlen hiba" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "A fájlt sikerült feltölteni" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét." -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "A feltöltött fájl mérete meghaladja a MAX_FILE_SIZE paramétert, ami a HTML formban került megadásra." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Az eredeti fájlt csak részben sikerült feltölteni." -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nem töltődött fel állomány" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Hiányzik egy ideiglenes mappa" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Nem sikerült a lemezre történő írás" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nincs elég szabad hely." -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "A feltöltés nem sikerült. Nem található a feltöltendő állomány." -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "A feltöltés nem sikerült. Az állományt leíró információk nem érhetők el." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Érvénytelen mappa." @@ -158,40 +158,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "A feltöltést megszakítottuk." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "A kiszolgálótól nem kapható meg az eredmény." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "Az URL-cím nem maradhat kitöltetlenül" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "A kiindulási mappában a 'Shared' egy belső használatra fenntartott név" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} már létezik" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Az állomány nem hozható létre" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "A mappa nem hozható létre" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "A megadott URL-ről nem sikerül adatokat kapni" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 1ddf13827a8..ebd9fa5baf6 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -51,15 +51,15 @@ msgstr "Az emailt elküldtük" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Titkosítás" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -215,31 +215,31 @@ msgstr "Frissítés" msgid "Updated" msgstr "Frissítve" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Válassz profil képet" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "File-ok kititkosítása folyamatban... Kérlek várj, ez hosszabb ideig is eltarthat ..." @@ -336,18 +336,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Biztonsági figyelmeztetés" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Jelenlegi elérése a következőnek '%s' jelenleg HTTP-n keresztül történik. Nagyon ajánlott, hogy a kiszolgálot úgy állitsd be, hogy HTTPS-t tudjál használni." -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -356,68 +356,68 @@ msgid "" "root." msgstr "Az adatkönytára és az itt levő fájlok valószínűleg elérhetők az internetről. Az ownCloud által beillesztett .htaccess fájl nem működik. Nagyon erősen ajánlott, hogy a webszervert úgy konfigurálja, hogy az adatkönyvtár ne legyen közvetlenül kívülről elérhető, vagy az adatkönyvtárt tegye a webszerver dokumentumfáján kívülre." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "A beállítással kapcsolatos figyelmeztetés" -#: templates/admin.php:74 +#: templates/admin.php:78 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." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "Kérjük tüzetesen tanulmányozza át a <a href='%s'>telepítési útmutatót</a>." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "A 'fileinfo' modul hiányzik" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "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." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "A PHP verzió túl régi" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "A PHP verzió túl régi. Nagyon ajánlott legalább az 5.3.8-as vagy újabb verzióra frissíteni, mert a régebbi verziónál léteznek ismert hibák. Ezért lehet a telepítésed elkézelhető, hogy nem müködik majd megfelelően." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "A nyelvi lokalizáció nem működik" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "A rendszer lokálok nem lehetett olyat beállítani ami támogatja az UTF-8-at." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Ez arra utal, hogy probléma lehet néhány karakterrel a file neveiben." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Erősen ajánlott telepíteni a szükséges csomagokat a rendszeredbe amely támogat egyet a következő helyi beállítások közül: %s" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Az internet kapcsolat nem működik" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -426,162 +426,178 @@ 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:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Ütemezett feladatok" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 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:171 +#: templates/admin.php:192 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:179 +#: templates/admin.php:200 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:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Megosztás" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "A megosztás API-jának engedélyezése" -#: templates/admin.php:191 +#: templates/admin.php:212 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:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Linkek engedélyezése" -#: templates/admin.php:199 +#: templates/admin.php:220 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:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Feltöltést engedélyezése mindenki számára" -#: templates/admin.php:208 +#: templates/admin.php:228 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:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "A továbbosztás engedélyezése" -#: templates/admin.php:217 +#: templates/admin.php:236 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:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "A felhasználók bárkivel megoszthatják állományaikat" -#: templates/admin.php:227 +#: templates/admin.php:246 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:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "E-mail értesítések engedélyezése" -#: templates/admin.php:235 +#: templates/admin.php:254 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:242 +#: templates/admin.php:261 msgid "Security" msgstr "Biztonság" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Kötelező HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, 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:263 +#: templates/admin.php:282 #, 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:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "A kiszolgáló címe" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "Azonosítók" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Naplózás" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Naplózási szint" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Több" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Kevesebb" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Verzió" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index a199ced0ec6..37aa013a6f8 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index 31a916c5d2d..eee6695972a 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 86f00de0bee..b8176dd3744 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index a791585c30a..5d2492a437c 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/hy/user_ldap.po b/l10n/hy/user_ldap.po index eeb36900227..1acfafd169e 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index cf720752ab6..8f19872d14e 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -533,6 +533,18 @@ msgstr "Nove contrasigno" msgid "Reset password" msgstr "Reinitialisar contrasigno" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personal" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 7f1089dd461..5b6b0d60760 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Le file incargate solmente esseva incargate partialmente" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nulle file esseva incargate." -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Manca un dossier temporari" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index afd2ca20c0c..e3e14d2e0b2 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "Actualisar" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Registro" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Plus" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 593db01cf1d..8cf13b0b0d6 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/id/core.po b/l10n/id/core.po index 7420fbb40e0..40cd13bd6d0 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -528,6 +528,18 @@ msgstr "Sandi baru" msgid "Reset password" msgstr "Atur ulang sandi" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Pribadi" diff --git a/l10n/id/files.po b/l10n/id/files.po index f9f4fcb3c49..1f2f31785c9 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -18,66 +18,66 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Tidak dapat memindahkan %s - Berkas dengan nama ini sudah ada" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Tidak dapat memindahkan %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Nama berkas tidak boleh kosong." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nama tidak valid, karakter '\\', '/', '<', '>', ':', '\"', '|', '?' dan '*' tidak diizinkan." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Nama %s sudah digunakan dalam folder %s. Silakan pilih nama yang berbeda." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Sumber tidak sah" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Galat saat mengunduh %s ke %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Galat saat membuat berkas" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Nama folder tidak bolh kosong." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Galat saat membuat folder" @@ -89,54 +89,54 @@ msgstr "Tidak dapat mengatur folder unggah" msgid "Invalid Token" msgstr "Token tidak sah" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Tidak ada berkas yang diunggah. Galat tidak dikenal." -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Tidak ada galat, berkas sukses diunggah" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Berkas yang diunggah melampaui direktif upload_max_filesize pada php.ini" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Berkas yang diunggah melampaui direktif MAX_FILE_SIZE yang ditentukan dalam formulir HTML." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Berkas hanya diunggah sebagian" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Tidak ada berkas yang diunggah" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Folder sementara tidak ada" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Gagal menulis ke disk" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Ruang penyimpanan tidak mencukupi" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Unggah gagal. Tidak menemukan berkas yang akan diunggah" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Unggah gagal. Tidak mendapatkan informasi berkas." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Direktori tidak valid." @@ -157,40 +157,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Pengunggahan dibatalkan." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Tidak mendapatkan hasil dari server." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Berkas sedang diunggah. Meninggalkan halaman ini akan membatalkan proses." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL tidak boleh kosong" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Pada folder home, 'Shared' adalah nama berkas yang sudah digunakan" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} sudah ada" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Tidak dapat membuat berkas" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Tidak dapat membuat folder" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 44b961c268a..6f7c733c33a 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "Email terkirim" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Enkripsi" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "Perbarui" msgid "Updated" msgstr "Diperbarui" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Pilih foto profil" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Mendeskripsi berkas... Modon tunggu, ini memerlukan beberapa saat." @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Peringatan Keamanan" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Anda mengakses %s melalui HTTP. Kami sangat menyarankan Anda untuk mengkonfigurasi server dengan menggunakan HTTPS sebagai gantinya." -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "Direktori data dan berkas Anda mungkin dapat diakses dari internet. Berkas .htaccess tidak bekerja. Kami sangat menyarankan untuk mengkonfigurasi server web Anda agar direktori data tidak lagi dapat diakses atau Anda dapat memindahkan direktori data di luar dokumen root webserver." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Peringatan Persiapan" -#: templates/admin.php:74 +#: templates/admin.php:78 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." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "Silakan periksa kembali <a href=\"%s\">petunjuk instalasi</a>." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' tidak ada" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Module 'fileinfo' pada PHP tidak ada. Kami sangat menyarankan untuk mengaktifkan modul ini untuk mendapatkan hasil terbaik pada proses pendeteksian mime-type." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Versi PHP telah usang" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "Versi PHP telah usang. Kami sangat menyarankan untuk diperbarui ke versi 5.3.8 atau yang lebih baru karena versi lama diketahui rusak. Ada kemungkinan bahwa instalasi ini tidak bekerja dengan benar." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Kode pelokalan tidak berfungsi" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Sistem lokal tidak dapat diatur untuk satu yang mendukung UTF-8." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Ini artinya mungkin ada masalah dengan karakter tertentu pada nama berkas." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Kami sangat menyarankan untuk menginstal paket yang dibutuhkan pada sistem agar mendukung salah satu bahasa berikut: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Koneksi internet tidak berfungsi" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Jalankan tugas setiap kali halaman dimuat" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php didaftarkan pada layanan webcron untuk memanggil cron.php setiap 15 menit melalui http." -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Menggunakan sistem layanan cron untuk memanggil berkas cron.php setiap 15 menit." -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Berbagi" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Aktifkan API Pembagian" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Izinkan aplikasi untuk menggunakan API Pembagian" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Izinkan tautan" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Izinkan pengguna untuk berbagi item kepada publik lewat tautan" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Izinkan unggahan publik" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Izinkan pengguna memungkinkan orang lain untuk mengunggah kedalam folder berbagi publik mereka" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Izinkan pembagian ulang" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Izinkan pengguna untuk berbagi kembali item yang dibagikan kepada mereka." -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Izinkan pengguna untuk berbagi kepada siapa saja" -#: templates/admin.php:227 +#: templates/admin.php:246 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:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Izinkan pemberitahuan email" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Izinkan pengguna mengirim pemberitahuan email pada berkas yang dibagikan" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Keamanan" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Selalu Gunakan HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Memaksa klien untuk menghubungkan ke %s menggunakan sambungan yang dienskripsi." -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Mohon sambungkan ke %s menggunakan HTTPS untuk mengaktifkannya atau menonaktifkan penegakan SSL." -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Alamat server" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "port" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Catat" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Level pencatatan" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Lainnya" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Ciutkan" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versi" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index a8e38b76de2..fcf502a7a8d 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/is/core.po b/l10n/is/core.po index 86fd036873d..42cbfba8d34 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -534,6 +534,18 @@ msgstr "Nýtt lykilorð" msgid "Reset password" msgstr "Endursetja lykilorð" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Um mig" diff --git a/l10n/is/files.po b/l10n/is/files.po index 61955187307..82f83fd1b11 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Gat ekki fært %s - Skrá með þessu nafni er þegar til" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Gat ekki fært %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Nafn skráar má ekki vera tómt" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Engin skrá var send inn. Óþekkt villa." -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Engin villa, innsending heppnaðist" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Innsend skrá er stærri en upload_max stillingin í php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Innsenda skráin er stærri en MAX_FILE_SIZE sem skilgreint er í HTML sniðinu." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Einungis hluti af innsendri skrá skilaði sér" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Engin skrá skilaði sér" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Vantar bráðabirgðamöppu" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Tókst ekki að skrifa á disk" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Ógild mappa." @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Hætt við innsendingu." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} er þegar til" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 4c9738adbb7..0d1a019ba82 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -48,15 +48,15 @@ msgstr "Tölvupóstur sendur" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Dulkóðun" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -212,31 +212,31 @@ msgstr "Uppfæra" msgid "Updated" msgstr "Uppfært" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -333,18 +333,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Öryggis aðvörun" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -353,68 +353,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Host nafn netþjóns" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Meira" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Minna" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Útgáfa" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index e0cccdc882d..df6247cd5d8 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/it/core.po b/l10n/it/core.po index 1597098ae1d..a58e08ae696 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: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 21:10+0000\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 09:00+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -537,6 +537,18 @@ msgstr "Nuova password" msgid "Reset password" msgstr "Ripristina la password" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "Mac OS X non è supportato e %s non funzionerà correttamente su questa piattaforma. Usalo a tuo rischio!" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "Per avere il risultato migliore, prendi in considerazione l'utilizzo di un server GNU/Linux." + #: strings.php:5 msgid "Personal" msgstr "Personale" diff --git a/l10n/it/files.po b/l10n/it/files.po index 5422d6a6afb..2b729d50968 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -19,66 +19,66 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Impossibile spostare %s - un file con questo nome esiste già" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Impossibile spostare %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Il nome del file non può essere vuoto." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" non è un nome file valido." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "La cartella di destinazione è stata spostata o eliminata." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Il nome %s è attualmente in uso nella cartella %s. Scegli un nome diverso." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Non è una sorgente valida" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Al server non è permesso aprire URL, controlla la configurazione del server" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Errore durante lo scaricamento di %s su %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Errore durante la creazione del file" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Il nome della cartella non può essere vuoto." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Errore durante la creazione della cartella" @@ -90,54 +90,54 @@ msgstr "Impossibile impostare una cartella di caricamento." msgid "Invalid Token" msgstr "Token non valido" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Nessun file è stato inviato. Errore sconosciuto" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Non ci sono errori, il file è stato caricato correttamente" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Il file caricato supera la direttiva upload_max_filesize in php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Il file inviato supera la direttiva MAX_FILE_SIZE specificata nel modulo HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Il file è stato caricato solo parzialmente" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nessun file è stato caricato" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Manca una cartella temporanea" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Scrittura su disco non riuscita" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Spazio di archiviazione insufficiente" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Caricamento non riuscito. Impossibile trovare il file caricato." -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Caricamento non riuscito. Impossibile ottenere informazioni sul file." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Cartella non valida." @@ -158,40 +158,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Spazio insufficiente, stai caricando {size1}, ma è rimasto solo {size2}" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Invio annullato" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Impossibile ottenere il risultato dal server." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "L'URL non può essere vuoto." -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Nella cartella home 'Shared' è un nome riservato" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} esiste già" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Impossibile creare il file" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Impossibile creare la cartella" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Errore durante il recupero dello URL" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index c466a063ba4..2edd7721bcf 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: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-13 18:21+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 12:01+0000\n" +"Last-Translator: Paolo Velati <paolo.velati@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -51,15 +51,15 @@ msgstr "Email inviata" msgid "You need to set your user email before being able to send test emails." msgstr "Devi impostare l'indirizzo del tuo utente prima di poter provare l'invio delle email." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Modalità di invio" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Cifratura" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Metodo di autenticazione" @@ -431,157 +431,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "L'ultimo cron è stato eseguito alle %s." + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "L'ultimo cron è stato eseguito alle %s. È più di un ora fa, qualcosa sembra sbagliato." + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "Cron non è ancora stato eseguito!" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Esegui un'operazione con ogni pagina caricata" -#: templates/admin.php:175 +#: templates/admin.php:192 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:183 +#: templates/admin.php:200 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:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Condivisione" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Abilita API di condivisione" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Consenti alle applicazioni di utilizzare le API di condivisione" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Consenti collegamenti" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Consenti agli utenti di condividere pubblicamente elementi tramite collegamenti" -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Consenti caricamenti pubblici" -#: templates/admin.php:212 +#: templates/admin.php:228 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:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Consenti la ri-condivisione" -#: templates/admin.php:221 +#: templates/admin.php:236 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:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Consenti agli utenti di condividere con chiunque" -#: templates/admin.php:231 +#: templates/admin.php:246 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:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Consenti le notifiche tramite posta elettronica" -#: templates/admin.php:239 +#: templates/admin.php:254 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:246 +#: templates/admin.php:261 msgid "Security" msgstr "Protezione" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Forza HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, 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:267 +#: templates/admin.php:282 #, 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:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "Server di posta" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "Viene utilizzato per inviare le notifiche." -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Indirizzo mittente" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Autenticazione richiesta" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Indirizzo del server" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Porta" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Credenziali" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "Nome utente SMTP" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "Password SMTP" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Prova impostazioni email" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Invia email" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Log" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Livello di log" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Altro" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Meno" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versione" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 0f6dbc21554..da54354cf9c 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 22:50+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja/core.po b/l10n/ja/core.po index fe7fae7375c..38765160007 100644 --- a/l10n/ja/core.po +++ b/l10n/ja/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -534,6 +534,18 @@ msgstr "新しいパスワードを入力" msgid "Reset password" msgstr "パスワードをリセット" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "個人" diff --git a/l10n/ja/files.po b/l10n/ja/files.po index 519d9c98569..02c744dddc1 100644 --- a/l10n/ja/files.po +++ b/l10n/ja/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -24,66 +24,66 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "%s を移動できませんでした ― この名前のファイルはすでに存在します" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "%s を移動できませんでした" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "ファイル名を空にすることはできません。" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" は無効なファイル名です。" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "目標のフォルダは移動されたか、削除されました。" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "%s はフォルダー %s ですでに使われています。別の名前を選択してください。" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "有効なソースではありません" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "サーバーは、URLを開くことは許されません。サーバーの設定をチェックしてください。" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "%s から %s へのダウンロードエラー" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "ファイルの生成エラー" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "フォルダー名は空にできません" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "フォルダーの生成エラー" @@ -95,54 +95,54 @@ msgstr "アップロードディレクトリを設定できません。" msgid "Invalid Token" msgstr "無効なトークン" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "ファイルは何もアップロードされていません。不明なエラー" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "エラーはありません。ファイルのアップロードは成功しました" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "アップロードファイルはHTMLフォームで指定された MAX_FILE_SIZE の制限を超えています" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "アップロードファイルは一部分だけアップロードされました" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "ファイルはアップロードされませんでした" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "一時保存フォルダーが見つかりません" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "ディスクへの書き込みに失敗しました" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "ストレージに十分な空き容量がありません" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "アップロードに失敗。アップロード済みのファイルを見つけることができませんでした。" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "アップロードに失敗。ファイル情報を取得できませんでした。" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "無効なディレクトリです。" @@ -163,40 +163,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "空き容量が十分でなく、 {size1} をアップロードしていますが、 {size2} しか残っていません。" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "アップロードはキャンセルされました。" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "サーバーから結果を取得できませんでした。" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL は空にできません" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "ホームフォルダーでは、'Shared' はシステムが使用する予約済みのファイル名です" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} はすでに存在します" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "ファイルを作成できませんでした" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "フォルダーを作成できませんでした" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "URL取得エラー" diff --git a/l10n/ja/settings.po b/l10n/ja/settings.po index e2383a5ad05..85b9f370db8 100644 --- a/l10n/ja/settings.po +++ b/l10n/ja/settings.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-12 07:20+0000\n" -"Last-Translator: kuromabo <md81bird@hitaki.net>\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -52,15 +52,15 @@ msgstr "メールを送信しました" msgid "You need to set your user email before being able to send test emails." msgstr "ユーザーメールを設定して初めて、テストメールを送信することができるようになります。" -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "送信モード" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "暗号化" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "認証方法" @@ -432,157 +432,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "各ページの読み込み時にタスクを実行する" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.phpは、HTTP経由で15分ごとにcron.phpを実行するようwebcronサービスに登録されています" -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "システムのcronサービスを利用して15分ごとにcron.phpファイルを実行します。" -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "共有" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "共有APIを有効にする" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "アプリからの共有APIの利用を許可する" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "リンクを許可する" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "ユーザーがリンクによりアイテムを公開することを許可する" -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "パブリックなアップロードを許可" -#: templates/admin.php:212 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "公開している共有フォルダーへのアップロードを共有しているメンバーにも許可" -#: templates/admin.php:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "再共有を許可する" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "ユーザーが共有しているアイテムの再共有を許可する" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "ユーザーに誰とでも共有することを許可する" -#: templates/admin.php:231 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "ユーザーにグループ内のユーザーとのみ共有を許可する" -#: templates/admin.php:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "メール通知を許可" -#: templates/admin.php:239 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "共有ファイルに関するメール通知の送信をユーザーに許可する" -#: templates/admin.php:246 +#: templates/admin.php:261 msgid "Security" msgstr "セキュリティ" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "常にHTTPSを使用する" -#: templates/admin.php:261 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "クライアントから %sへの接続を常に暗号化します。" -#: templates/admin.php:267 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "強制的なSSL接続を有効/無効にするには、HTTPS経由で %s へ接続してください。" -#: templates/admin.php:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "メールサーバー" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "これは通知の送信に使われます。" -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "アドレスから" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "要求される認証" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "サーバーアドレス" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "ポート" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "資格情報" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "SMTP ユーザー名" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "SMTP パスワード" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "メールテスト設定" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "メールを送信" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "ログ" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "ログレベル" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "もっと見る" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "閉じる" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "バージョン" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ja/user_ldap.po b/l10n/ja/user_ldap.po index 879766d023d..e670589dd74 100644 --- a/l10n/ja/user_ldap.po +++ b/l10n/ja/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-11 13:31+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: plazmism <gomidori@live.jp>\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_GE/core.po b/l10n/ka_GE/core.po index 9e63d8c7271..2f9ec267e33 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -528,6 +528,18 @@ msgstr "ახალი პაროლი" msgid "Reset password" msgstr "პაროლის შეცვლა" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "პირადი" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 40699657de2..227a54b6dd7 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "%s –ის გადატანა ვერ მოხერხდა – ფაილი ამ სახელით უკვე არსებობს" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "%s –ის გადატანა ვერ მოხერხდა" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "ფაილის სახელი არ შეიძლება იყოს ცარიელი." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "არადაშვებადი სახელი, '\\', '/', '<', '>', ':', '\"', '|', '?' და '*' არ არის დაიშვებული." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "ფაილი არ აიტვირთა. უცნობი შეცდომა" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "ჭოცდომა არ დაფიქსირდა, ფაილი წარმატებით აიტვირთა" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ატვირთული ფაილი აჭარბებს upload_max_filesize დირექტივას php.ini ფაილში" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ატვირთული ფაილი აჭარბებს MAX_FILE_SIZE დირექტივას, რომელიც მითითებულია HTML ფორმაში" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "ატვირთული ფაილი მხოლოდ ნაწილობრივ აიტვირთა" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "ფაილი არ აიტვირთა" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "დროებითი საქაღალდე არ არსებობს" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "შეცდომა დისკზე ჩაწერისას" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "საცავში საკმარისი ადგილი არ არის" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "დაუშვებელი დირექტორია." @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "ატვირთვა შეჩერებულ იქნა." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} უკვე არსებობს" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index a4b386d25e2..797400953fe 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -48,15 +48,15 @@ msgstr "იმეილი გაიგზავნა" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "ენკრიპცია" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -212,31 +212,31 @@ msgstr "განახლება" msgid "Updated" msgstr "განახლებულია" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -333,18 +333,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "უსაფრთხოების გაფრთხილება" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -353,68 +353,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "გაფრთხილება დაყენებისას" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "მოდული 'fileinfo' არ არსებობს" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP მოდული 'fileinfo' არ არსებობს. ჩვენ გირჩევთ რომ აუცილებლად ჩართოთ ეს მოდული, რომ მიიღოთ კარგი შედეგები mime-type–ს აღმოჩენისას." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "ლოკალიზაცია არ მუშაობს" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "ინტერნეტ კავშირი არ მუშაობს" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron–ი" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "გაუშვი თითო მოქმედება ყველა ჩატვირთულ გვერდზე" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "გაზიარება" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Share API–ის ჩართვა" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "დაუშვი აპლიკაციების უფლება Share API –ზე" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "ლინკების დაშვება" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "მიეცი მომხმარებლებს უფლება რომ გააზიაროს ელემენტები საჯაროდ ლინკებით" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "გადაზიარების დაშვება" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "მიეცით მომხმარებლებს უფლება რომ გააზიაროს მისთვის გაზიარებული" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "მიეცით უფლება მომხმარებლებს გააზიაროს ყველასთვის" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "მიეცით უფლება მომხმარებლებს რომ გააზიაროს მხოლოდ თავიანთი ჯგუფისთვის" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "უსაფრთხოება" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "HTTPS–ის ჩართვა" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "სერვერის მისამართი" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "პორტი" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "იუზერ/პაროლი" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "ლოგი" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "ლოგირების დონე" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "უფრო მეტი" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "უფრო ნაკლები" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "ვერსია" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 848926c0e6f..ea64bec0b7f 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/km/core.po b/l10n/km/core.po index fd327b6b87a..740792ba4ca 100644 --- a/l10n/km/core.po +++ b/l10n/km/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -529,6 +529,18 @@ msgstr "ពាក្យសម្ងាត់ថ្មី" msgid "Reset password" msgstr "កំណត់ពាក្យសម្ងាត់ម្ដងទៀត" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "ផ្ទាល់ខ្លួន" diff --git a/l10n/km/files.po b/l10n/km/files.po index becad9cf512..828078cedad 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: km\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/km/settings.po b/l10n/km/settings.po index 928c286bb73..35d2fa646a6 100644 --- a/l10n/km/settings.po +++ b/l10n/km/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -49,15 +49,15 @@ msgstr "បានផ្ញើអ៊ីមែល" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -213,31 +213,31 @@ msgstr "ធ្វើបច្ចុប្បន្នភាព" msgid "Updated" msgstr "បានធ្វើបច្ចុប្បន្នភាព" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -334,18 +334,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "បម្រាមសុវត្ថិភាព" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -354,68 +354,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "បម្រាមការដំឡើង" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "ខ្វះម៉ូឌុល 'fileinfo'" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "ខ្វះម៉ូឌុល 'fileinfo' ។ យើងសូមណែនាំឲ្យបើកម៉ូឌុលនេះ ដើម្បីទទួលបានលទ្ធផលល្អនៃការសម្គាល់ប្រភេទ mime ។" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Locale មិនដំណើរការ" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "ការតភ្ជាប់អ៊ីនធឺណិតមិនមានដំណើរការ" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -424,162 +424,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "ការចែករំលែក" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "បើក API ចែករំលែក" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "អនុញ្ញាតឲ្យកម្មវិធីប្រើ API ចែករំលែក" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "អនុញ្ញាតតំណ" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "អនុញ្ញាតឲ្យអ្នកប្រើចែករំលែករបស់ទៅសាធារណៈជាមួយតំណ" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "អនុញ្ញាតការចែករំលែកម្ដងទៀត" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "អនុញ្ញាតឲ្យអ្នកប្រើចែករំលែកជាមួយនរណាម្នាក់" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "សុវត្ថិភាព" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "បង្ខំ HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "អាសយដ្ឋានម៉ាស៊ីនបម្រើ" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Log" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "កម្រិត Log" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "ច្រើនទៀត" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "តិច" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "កំណែ" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/km/user_ldap.po b/l10n/km/user_ldap.po index 9a3c86b8c51..5f8d728426c 100644 --- a/l10n/km/user_ldap.po +++ b/l10n/km/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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index 71bdd203c7a..26a5f9246ea 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -528,6 +528,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/kn/settings.po b/l10n/kn/settings.po index 376741d5530..cfb8736938b 100644 --- a/l10n/kn/settings.po +++ b/l10n/kn/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ko/core.po b/l10n/ko/core.po index df45516eacf..4d28ccc174c 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -535,6 +535,18 @@ msgstr "새 암호" msgid "Reset password" msgstr "암호 재설정" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "개인" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 9681abac202..45ee79b1c1a 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -23,66 +23,66 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "항목 %s을(를) 이동시킬 수 없음 - 같은 이름의 파일이 이미 존재함" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "항목 %s을(를) 이동시킬 수 없음" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "파일 이름이 비어 있을 수 없습니다." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "이름 %s이(가) 폴더 %s에서 이미 사용 중입니다. 다른 이름을 사용하십시오." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "올바르지 않은 원본" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "서버에서 URL을 열 수 없습니다. 서버 설정을 확인하십시오" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "%s을(를) %s(으)로 다운로드하는 중 오류 발생" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "파일 생성 중 오류 발생" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "폴더 이름이 비어있을 수 없습니다." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "폴더 생성 중 오류 발생" @@ -94,54 +94,54 @@ msgstr "업로드 디렉터리를 설정할 수 없습니다." msgid "Invalid Token" msgstr "잘못된 토큰" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "파일이 업로드 되지 않았습니다. 알 수 없는 오류입니다" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "파일 업로드에 성공하였습니다." -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "업로드한 파일 크기가 HTML 폼의 MAX_FILE_SIZE보다 큼" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "파일의 일부분만 업로드됨" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "파일이 업로드되지 않았음" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "임시 폴더가 없음" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "디스크에 쓰지 못했습니다" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "저장소가 용량이 충분하지 않습니다." -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "업로드에 실패했습니다. 업로드할 파일을 찾을 수 없습니다" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "업로드에 실패했습니다. 파일 정보를 가져올 수 없습니다." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "올바르지 않은 디렉터리입니다." @@ -162,40 +162,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "업로드가 취소되었습니다." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "서버에서 결과를 가져올 수 없습니다." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL이 비어있을 수 없음" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "'공유됨'은 홈 폴더의 예약된 파일 이름임" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name}이(가) 이미 존재함" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "파일을 만들 수 없음" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "폴더를 만들 수 없음" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "URL을 가져올 수 없음" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 09606d0f539..65a843dddbb 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-17 01:55-0400\n" -"PO-Revision-Date: 2014-03-16 20:30+0000\n" -"Last-Translator: Harim Park <fofwisdom@gmail.com>\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,15 +52,15 @@ msgstr "이메일 발송됨" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "암호화" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -432,157 +432,173 @@ msgid "Cron" msgstr "크론" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "개별 페이지를 불러올 때마다 실행" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php는 webcron 서비스에 등록되어 HTTP로 15분마다 cron.php에 접근합니다." -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "시스템의 cron 서비스를 통하여 15분마다 cron.php 파일에 접근합니다." -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "공유" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "공유 API 사용하기" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "앱에서 공유 API를 사용할 수 있도록 허용" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "링크 허용" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "사용자가 개별 항목의 링크를 공유할 수 있도록 허용" -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "공개 업로드 허용" -#: templates/admin.php:212 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "다른 사용자들이 공개된 공유 폴더에 파일 업로드 허용" -#: templates/admin.php:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "재공유 허용" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "사용자에게 공유된 항목을 다시 공유할 수 있도록 허용" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "누구나와 공유할 수 있도록 허용" -#: templates/admin.php:231 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "사용자가 속해 있는 그룹의 사용자에게만 공유할 수 있도록 허용" -#: templates/admin.php:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "메일 알림 허용" -#: templates/admin.php:239 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "사용자에게 공유 파일에 대한 메일 알림을 허용합니다" -#: templates/admin.php:246 +#: templates/admin.php:261 msgid "Security" msgstr "보안" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "HTTPS 강제 사용" -#: templates/admin.php:261 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "클라이언트가 %s에 연결할 때 암호화 연결을 강제로 사용합니다." -#: templates/admin.php:267 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "SSL 강제 설정을 변경하려면 %s에 HTTPS로 연결해야 합니다." -#: templates/admin.php:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "전자우편 서버" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "보낸 이 주소" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "인증 필요함" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "서버 주소" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "포트" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "자격 정보" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "SMTP 사용자명" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "SMTP 암호" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "시험용 전자우편 설정" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "전자우편 보내기" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "로그" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "로그 단계" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "더 중요함" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "덜 중요함" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "버전" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index c8074d818e6..06500e88a3f 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 4d24de70480..305363b858c 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -533,6 +533,18 @@ msgstr "وشەی نهێنی نوێ" msgid "Reset password" msgstr "دووباره كردنهوهی وشهی نهێنی" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 64de8738b2c..36645752f11 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 720e547b850..2ce49de9cc1 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "نهێنیکردن" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "نوێکردنهوه" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "ناونیشانی ڕاژه" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 1305adc5d8f..4635426b59a 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index e5f9b247570..aea34c25680 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -535,6 +535,18 @@ msgstr "Neit Passwuert" msgid "Reset password" msgstr "Passwuert zréck setzen" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Perséinlech" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 52508632146..9f74628eee0 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Keen Feeler, Datei ass komplett ropgelueden ginn" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Déi ropgelueden Datei ass méi grouss wei d'MAX_FILE_SIZE Eegenschaft déi an der HTML form uginn ass" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Déi ropgelueden Datei ass nëmmen hallef ropgelueden ginn" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Et ass kee Fichier ropgeluede ginn" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Et feelt en temporären Dossier" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Konnt net op den Disk schreiwen" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Upload ofgebrach." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index bd42abab9f4..dc9db7025c8 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -48,15 +48,15 @@ msgstr "Email geschéckt" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -212,31 +212,31 @@ msgstr "Update" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -333,18 +333,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Sécherheets Warnung" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -353,68 +353,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Share API aschalten" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Erlab Apps d'Share API ze benotzen" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Links erlaben" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Resharing erlaben" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Useren erlaben mat egal wiem ze sharen" -#: templates/admin.php:227 +#: templates/admin.php:246 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:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Server Adress" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Log" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Méi" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Manner" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index fe03047f218..4edf0855c49 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 2481455e47e..5a431dd6444 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -543,6 +543,18 @@ msgstr "Naujas slaptažodis" msgid "Reset password" msgstr "Atkurti slaptažodį" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Asmeniniai" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index c035027897f..7d183402126 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -20,66 +20,66 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Nepavyko perkelti %s - failas su tokiu pavadinimu jau egzistuoja" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Nepavyko perkelti %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Failo pavadinimas negali būti tuščias." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Neleistinas pavadinimas, '\\', '/', '<', '>', ':', '\"', '|', '?' ir '*' yra neleidžiami." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Pavadinimas %s jau naudojamas aplanke %s. Prašome pasirinkti kitokį pavadinimą." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Netinkamas šaltinis" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Serveriui neleidžiama atverti URL, prašome patikrinti serverio konfigūraciją" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Klaida siunčiant %s į %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Klaida kuriant failą" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Aplanko pavadinimas negali būti tuščias." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Klaida kuriant aplanką" @@ -91,54 +91,54 @@ msgstr "Nepavyksta nustatyti įkėlimų katalogo." msgid "Invalid Token" msgstr "Netinkamas ženklas" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Failai nebuvo įkelti dėl nežinomos priežasties" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Failas įkeltas sėkmingai, be klaidų" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Įkeliamas failas yra didesnis nei leidžia upload_max_filesize php.ini faile:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Įkeliamo failo dydis viršija MAX_FILE_SIZE nustatymą, kuris naudojamas HTML formoje." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Failas buvo įkeltas tik dalinai" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nebuvo įkeltas joks failas" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Nėra laikinojo katalogo" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Nepavyko įrašyti į diską" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nepakanka vietos serveryje" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Įkėlimas nepavyko. Nepavyko rasti įkelto failo" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Įkėlimas nepavyko. Nepavyko gauti failo informacijos." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Neteisingas aplankas" @@ -159,40 +159,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Įkėlimas atšauktas." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Nepavyko gauti rezultato iš serverio." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutrūks." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL negali būti tuščias." -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Pradiniame aplanke failo pavadinimas „Shared“ yra rezervuotas" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} jau egzistuoja" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Neįmanoma sukurti failo" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Neįmanoma sukurti aplanko" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Klauda gaunant URL" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 73acc5aabf2..5e45ec42c63 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -52,15 +52,15 @@ msgstr "Laiškas išsiųstas" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Šifravimas" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -216,31 +216,31 @@ msgstr "Atnaujinti" msgid "Updated" msgstr "Atnaujinta" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Pažymėkite profilio paveikslėlį" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Iššifruojami failai... Prašome palaukti, tai gali užtrukti." @@ -337,18 +337,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Saugumo pranešimas" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -357,68 +357,68 @@ msgid "" "root." msgstr "Jūsų duomenų katalogas ir Jūsų failai turbūt yra pasiekiami per internetą. Failas .htaccess neveikia. Mes labai rekomenduojame sukonfigūruoti serverį taip, kad katalogas nebūtų daugiau pasiekiamas, arba iškelkite duomenis kitur iš webserverio šakninio aplanko." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Nustatyti perspėjimą" -#: templates/admin.php:74 +#: templates/admin.php:78 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." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "Prašome pažiūrėkite dar kartą <a href=\"%s\">diegimo instrukcijas</a>." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Trūksta 'fileinfo' modulio" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Trūksta PHP modulio „fileinfo“. Labai rekomenduojame įjungti šį modulį, kad gauti geriausius rezultatus nustatant mime-tipą." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Lokalė neveikia" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Nėra interneto ryšio" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -427,162 +427,178 @@ 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:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Įvykdyti vieną užduotį su kiekvieno puslapio įkėlimu" -#: templates/admin.php:171 +#: templates/admin.php:192 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:179 +#: templates/admin.php:200 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:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Dalijimasis" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Įjungti Share API" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Leidžia programoms naudoti Share API" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Lesti nuorodas" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Leisti naudotojams viešai dalintis elementais su nuorodomis" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Leisti viešus įkėlimus" -#: templates/admin.php:208 +#: templates/admin.php:228 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:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Leisti dalintis" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Leisti naudotojams toliau dalintis elementais pasidalintais su jais" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Leisti naudotojams dalintis su bet kuo" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Leisti naudotojams dalintis tik su naudotojais savo grupėje" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Leisti el. pašto perspėjimą" -#: templates/admin.php:235 +#: templates/admin.php:254 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:242 +#: templates/admin.php:261 msgid "Security" msgstr "Saugumas" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Reikalauti HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, 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:263 +#: templates/admin.php:282 #, 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:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Serverio adresas" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Prievadas" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Žurnalas" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Žurnalo išsamumas" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Daugiau" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Mažiau" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versija" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index a67be7dfd94..074b5567000 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 2093589936f..fb37ca57ae9 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -539,6 +539,18 @@ msgstr "Jauna parole" msgid "Reset password" msgstr "Mainīt paroli" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personīgi" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index ec7cf61374a..23f5f3998b0 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -18,66 +18,66 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Nevarēja pārvietot %s — jau eksistē datne ar tādu nosaukumu" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Nevarēja pārvietot %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Datnes nosaukums nevar būt tukšs." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nederīgs nosaukums, nav atļauti '\\', '/', '<', '>', ':', '\"', '|', '?' un '*'." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -89,54 +89,54 @@ msgstr "Nevar uzstādīt augšupielādes mapi." msgid "Invalid Token" msgstr "Nepareiza pilnvara" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Netika augšupielādēta neviena datne. Nezināma kļūda" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Viss kārtībā, datne augšupielādēta veiksmīga" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Augšupielādētā datne pārsniedz upload_max_filesize norādījumu php.ini datnē:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Augšupielādētā datne pārsniedz MAX_FILE_SIZE norādi, kas ir norādīta HTML formā" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Augšupielādētā datne ir tikai daļēji augšupielādēta" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Neviena datne netika augšupielādēta" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Trūkst pagaidu mapes" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Neizdevās saglabāt diskā" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nav pietiekami daudz vietas" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Nederīga direktorija." @@ -157,40 +157,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Augšupielāde ir atcelta." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} jau eksistē" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 56e41f60c3e..cb79419f22c 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -48,15 +48,15 @@ msgstr "Vēstule nosūtīta" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Šifrēšana" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -212,31 +212,31 @@ msgstr "Atjaunināt" msgid "Updated" msgstr "Atjaunināta" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Atšifrēju failus... Uzgaidiet tas var ilgt kādu laiku." @@ -333,18 +333,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Brīdinājums par drošību" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -353,68 +353,68 @@ msgid "" "root." msgstr "Jūsu datu direktorija un faili visticamāk ir pieejami no interneta. .htaccess fails nedarbojas. Ir rekomendēts konfigurēt serveri tā lai jūsu datu direktorija nav lasāma vai pārvietot to ārpus tīmekļa servera dokumentu mapes." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Iestatīšanas brīdinājums" -#: templates/admin.php:74 +#: templates/admin.php:78 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." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "Lūdzu kārtīgi izlasiet <a href=\"%s\">uzstādīšanas norādījumus</a>." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Trūkst modulis “fileinfo”" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Trūkst PHP modulis “fileinfo”. Mēs iesakām to aktivēt, lai pēc iespējas labāk noteiktu mime tipus." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Lokāle nestrādā" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Interneta savienojums nedarbojas" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,178 @@ 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:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Izpildīt vienu uzdevumu ar katru ielādēto lapu" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Dalīšanās" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Aktivēt koplietošanas API" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Ļauj lietotnēm izmantot koplietošanas API" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Atļaut saites" -#: templates/admin.php:199 +#: templates/admin.php:220 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:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Atļaut publisko augšupielādi" -#: templates/admin.php:208 +#: templates/admin.php:228 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:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Atļaut atkārtotu koplietošanu" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Ļaut lietotājiem dalīties ar vienumiem atkārtoti" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Ļaut lietotājiem dalīties ar visiem" -#: templates/admin.php:227 +#: templates/admin.php:246 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:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Drošība" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Uzspiest HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, 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:263 +#: templates/admin.php:282 #, 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:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Servera adrese" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Ports" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "Akreditācijas dati" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Žurnāls" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Žurnāla līmenis" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Vairāk" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Mazāk" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versija" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index db3bc0393e7..90f2e4597e8 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index e5dc24f6f46..9f3faff1447 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -534,6 +534,18 @@ msgstr "Нова лозинка" msgid "Reset password" msgstr "Ресетирај лозинка" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Лично" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index eaa85a91de0..7f907ff611e 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -18,66 +18,66 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Не можам да го преместам %s - Датотека со такво име веќе постои" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Не можам да ги префрлам %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Името на датотеката не може да биде празно." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Не е валиден извор" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Грешка додека преземам %s to %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Грешка при креирање на датотека" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Името на папката не може да биде празно." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Грешка при креирање на папка" @@ -89,54 +89,54 @@ msgstr "Не може да се постави папката за префрл msgid "Invalid Token" msgstr "Грешен токен" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ниту еден фајл не се вчита. Непозната грешка" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Датотеката беше успешно подигната." -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Големината на датотеката ја надминува MAX_FILE_SIZE директивата која беше специфицирана во HTML формата" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Датотеката беше само делумно подигната." -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Не беше подигната датотека." -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Недостасува привремена папка" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Неуспеав да запишам на диск" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Нема доволно слободен сториџ" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Префрлањето е неуспешно. Не можам да го најдам префрлената датотека." -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Погрешна папка." @@ -157,40 +157,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Преземањето е прекинато." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Не можам да добијам резултат од серверот." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL-то не може да биде празно" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Во домашната папка, 'Shared' е резервирано има на датотека/папка" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} веќе постои" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Не множам да креирам датотека" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Не можам да креирам папка" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 8d8134d08f2..39b831e785e 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -48,15 +48,15 @@ msgstr "Е-порака пратена" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Енкрипција" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -212,31 +212,31 @@ msgstr "Ажурирај" msgid "Updated" msgstr "Надграден" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Одбери фотографија за профилот" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -333,18 +333,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Безбедносно предупредување" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -353,68 +353,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Предупредување при подесување" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Локалето не функционира" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Споделување" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Овозможи го API-то за споделување" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Дозволете апликациите да го користат API-то за споделување" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Дозволи врски" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Дозволи јавен аплоуд" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Овозможи повторно споделување" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Овозможи корисниците да споделуваат со секого" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Овозможи корисниците да споделуваат со корисници од своите групи" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Овозможи известување по електронска пошта" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Овозможи корисник да испраќа известување по електронска пошта за споделени датотеки" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Безбедност" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Наметни HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Адреса на сервер" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Порта" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Записник" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Ниво на логирање" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Повеќе" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Помалку" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Верзија" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 2b41dae61bc..9fbc64a8403 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/ml/core.po b/l10n/ml/core.po index 139c6776e70..15de395bd8e 100644 --- a/l10n/ml/core.po +++ b/l10n/ml/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/ml/settings.po b/l10n/ml/settings.po index a202b820293..49290f8d798 100644 --- a/l10n/ml/settings.po +++ b/l10n/ml/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ml_IN/core.po b/l10n/ml_IN/core.po index 99d911ff80b..20f6eaa8db1 100644 --- a/l10n/ml_IN/core.po +++ b/l10n/ml_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/ml_IN/settings.po b/l10n/ml_IN/settings.po index 15fe7f10de2..5a9922292b9 100644 --- a/l10n/ml_IN/settings.po +++ b/l10n/ml_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/mn/core.po b/l10n/mn/core.po index a3e8df62aa4..a9b5d68e767 100644 --- a/l10n/mn/core.po +++ b/l10n/mn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/mn/settings.po b/l10n/mn/settings.po index 0a9285fe746..f2b9550b985 100644 --- a/l10n/mn/settings.po +++ b/l10n/mn/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 279cb59e028..6ddccd56f8b 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -528,6 +528,18 @@ msgstr "Kata laluan baru" msgid "Reset password" msgstr "Penetapan semula kata laluan" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Peribadi" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 2162290bb8a..ceca8d5e295 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Tiada fail dimuatnaik. Ralat tidak diketahui." -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Tiada ralat berlaku, fail berjaya dimuatnaik" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Saiz fail yang dimuatnaik melebihi MAX_FILE_SIZE yang ditetapkan dalam borang HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Fail yang dimuatnaik tidak lengkap" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Tiada fail dimuatnaik" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Direktori sementara hilang" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Gagal untuk disimpan" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Muatnaik dibatalkan." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 7b0a4f27fcc..e76e534f068 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "Kemaskini" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Amaran keselamatan" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Alamat pelayan" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Log" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Tahap Log" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Lanjutan" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 703f27af485..ffaf5f23caa 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index fe3df5b2372..822acd25a9a 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -528,6 +528,18 @@ msgstr "စကားဝှက်အသစ်" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index 9528baa22ee..e40126e75ae 100644 --- a/l10n/my_MM/settings.po +++ b/l10n/my_MM/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "လုံခြုံရေးသတိပေးချက်" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index bbef6263d38..7eb62b952fd 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -536,6 +536,18 @@ msgstr "Nytt passord" msgid "Reset password" msgstr "Tilbakestill passord" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personlig" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 3c1e7eda5b7..d81379a26d1 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -21,66 +21,66 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Kan ikke flytte %s - En fil med samme navn finnes allerede" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Kunne ikke flytte %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Filnavn kan ikke være tomt." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ugyldig navn, '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' er ikke tillatt." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Navnet %s brukes allerede i mappen %s. Velg et annet navn." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Ikke en gyldig kilde" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Serveren har ikke lov til å åpne URL-er. Sjekk konfigurasjon av server" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Feil ved nedlasting av %s til %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Feil ved oppretting av filen" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Mappenavn kan ikke være tomt." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Feil ved oppretting av mappen" @@ -92,54 +92,54 @@ msgstr "Kunne ikke sette opplastingskatalog." msgid "Invalid Token" msgstr "Ugyldig nøkkel" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer ble lastet opp. Ukjent feil." -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Pust ut, ingen feil. Filen ble lastet opp problemfritt" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Filstørrelsen overskrider maksgrensedirektivet upload_max_filesize i php.ini-konfigurasjonen." -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Filen du prøvde å laste opp var større enn grensen satt i MAX_FILE_SIZE i HTML-skjemaet." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Filen du prøvde å laste opp ble kun delvis lastet opp" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ingen filer ble lastet opp" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Mangler midlertidig mappe" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Klarte ikke å skrive til disk" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Ikke nok lagringsplass" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Opplasting feilet. Fant ikke opplastet fil." -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Opplasting feilet. Klarte ikke å finne informasjon om fil." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Ugyldig katalog." @@ -160,40 +160,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Opplasting avbrutt." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Fikk ikke resultat fra serveren." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL kan ikke være tom" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "I hjemmemappen er 'Shared' et reservert filnavn" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} finnes allerede" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Klarte ikke å opprette fil" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Klarte ikke å opprette mappe" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Feil ved henting av URL" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 4b481cd3dcb..a5cfd121e3e 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -51,15 +51,15 @@ msgstr "E-post sendt" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Kryptering" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -215,31 +215,31 @@ msgstr "Oppdater" msgid "Updated" msgstr "Oppdatert" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Velg et profilbilde" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dekrypterer filer... Vennligst vent, dette kan ta litt tid." @@ -336,18 +336,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Sikkerhetsadvarsel" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Du aksesserer %s via HTTP. Vi anbefaler på det sterkeste at du konfigurerer serveren til å kreve bruk av HTTPS i stedet." -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -356,68 +356,68 @@ msgid "" "root." msgstr "Datamappen og filene dine er sannsynligvis tilgjengelig fra Internett fordi .htaccess-filen ikke fungerer. Vi anbefaler på det sterkeste at du konfigurerer web-serveren din slik at datamappen ikke lenger er tilgjengelig eller at du flytter datamappen ut av web-serverens dokument-rotmappe." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Installasjonsadvarsel" -#: templates/admin.php:74 +#: templates/admin.php:78 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." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "Vennligst dobbeltsjekk <a href=\"%s\">installasjonsveilederne</a>." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Modulen 'fileinfo' mangler" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP modulen 'fileinfo' mangler. Vi anbefaler at du aktiverer denne modulen for å kunne detektere mime-typen korrekt." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Din PHP-versjon er udatert" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "PHP-versjonen din er utdatert. Vi anbefaler på det sterkeste at du oppdaterer til 5.3.8 eller nyere fordi eldre versjoner ikke vil virke. Det er mulig at denne installasjoner ikke fungerer korrekt." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Språk virker ikke" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Kan ikke sette systemets nasjonale innstillinger til en som støtter UTF-8." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Dette betyr at det kan forekomme problemer med visse tegn i filnavn." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Vi anbefaler på det sterkeste å installere pakkene som er nødvendig for at systemet skal støtte en av følgende nasjonale innstillinger: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Ingen internettilkopling" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -426,162 +426,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Denne serveren har ikke en fungerende Internett-tilkobling. Dette betyr at noen av funksjonene, slik som montering av ekstern lagring, påminnelser om oppdatering eller installering av 3-parts apper ikke fungerer. Fjerntilgang til filer og utsending av påminnelser i e-post virker kanskje ikke heller. Vi anbefaler at Internett-forbindelsen for denne serveren aktiveres hvis du vil ha full funksjonalitet." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Utfør en oppgave med hver side som blir lastet" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php er registrert i en webcron-tjeneste for å kalle cron.php hvert 15. minutt over http." -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Bruk systemets cron-tjeneste for å kalle cron.php hvert 15. minutt." -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Aktiver API for Deling" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Tillat apps å bruke API for Deling" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Tillat lenker" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Tillat brukere å dele filer offentlig med lenker" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Tillat offentlig opplasting" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Tillat at brukere lar andre laste opp til deres offentlig delte mapper" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "TIllat videredeling" -#: templates/admin.php:217 +#: templates/admin.php:236 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:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Tillat brukere å dele med alle" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Tillat kun deling med andre brukere i samme gruppe" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Tillat påminnelser i e-post" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Tillat at brukere sender epost-påminnelser for delte filer" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Sikkerhet" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Tving HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tvinger klientene til å koble til %s via en kryptert forbindelse." -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Vennligst koble til din %s via HTTPS for å aktivere eller deaktivere tvungen SSL." -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Server-adresse" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Logg" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Loggnivå" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Mer" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Mindre" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versjon" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index ae84487d1bb..8de5b111cf9 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/nds/core.po b/l10n/nds/core.po index fd6f56976f4..648e46df300 100644 --- a/l10n/nds/core.po +++ b/l10n/nds/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/nds/settings.po b/l10n/nds/settings.po index 72cef409fc8..5224f83aa48 100644 --- a/l10n/nds/settings.po +++ b/l10n/nds/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ne/core.po b/l10n/ne/core.po index 6e5273cb82c..0de88d8e9fd 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/ne/settings.po b/l10n/ne/settings.po index 12d2b048d84..45cc088491c 100644 --- a/l10n/ne/settings.po +++ b/l10n/ne/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 4e33e23483f..0177e68a325 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: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 08:20+0000\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 06:50+0000\n" "Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -536,6 +536,18 @@ msgstr "Nieuw wachtwoord" msgid "Reset password" msgstr "Reset wachtwoord" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "Mac OSX wordt niet ondersteund en %s zal niet goed werken op dit platform. Gebruik het op uw eigen risico!" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "Voor het beste resultaat adviseren wij het gebruik van een GNU/Linux server." + #: strings.php:5 msgid "Personal" msgstr "Persoonlijk" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index d386e8bbe53..d478170f83b 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -19,66 +19,66 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Kon %s niet verplaatsen - Er bestaat al een bestand met deze naam" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Kon %s niet verplaatsen" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Bestandsnaam kan niet leeg zijn." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" is een ongeldige bestandsnaam." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "De doelmap is verplaatst of verwijderd." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "De naam %s bestaat al in map %s. Kies een andere naam." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Geen geldige bron" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server mag geen URS's openen, controleer de server configuratie" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Fout bij downloaden %s naar %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Fout bij creëren bestand" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Mapnaam mag niet leeg zijn." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Fout bij aanmaken map" @@ -90,54 +90,54 @@ msgstr "Kan upload map niet instellen." msgid "Invalid Token" msgstr "Ongeldig Token" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Er was geen bestand geladen. Onbekende fout" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "De upload van het bestand is goedgegaan." -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Het geüploade bestand overscheidt de upload_max_filesize optie in php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Het bestand overschrijdt de MAX_FILE_SIZE instelling dat is opgegeven in het HTML formulier" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Het bestand is gedeeltelijk geüpload" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Er is geen bestand geüpload" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Er ontbreekt een tijdelijke map" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Schrijven naar schijf mislukt" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Niet genoeg opslagruimte beschikbaar" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Upload mislukt. Kon ge-uploade bestand niet vinden" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Upload mislukt, Kon geen bestandsinfo krijgen." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Ongeldige directory." @@ -158,40 +158,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Niet genoeg vrije ruimte. U upload {size1}, maar is is slechts {size2} beschikbaar" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Kon het resultaat van de server niet terugkrijgen." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL mag niet leeg zijn" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "in de home map 'Shared' is een gereserveerde bestandsnaam" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} bestaat al" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Kon bestand niet creëren" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Kon niet creëren map" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Fout bij ophalen URL" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index ebcab66a1af..8113608307e 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: 2014-03-13 01:55-0400\n" -"PO-Revision-Date: 2014-03-12 20:30+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 19:01+0000\n" "Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -51,15 +51,15 @@ msgstr "E-mail verzonden" msgid "You need to set your user email before being able to send test emails." msgstr "U moet uw e-mailadres instellen voordat u testberichten kunt versturen." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Verstuurmodus" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Versleuteling" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Authenticatiemethode" @@ -215,31 +215,31 @@ msgstr "Bijwerken" msgid "Updated" msgstr "Bijgewerkt" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Kies een profielafbeelding" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "Zeer zwak wachtwoord" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "Zwak wachtwoord" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "Matig wachtwoord" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "Goed wachtwoord" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "Sterk wachtwoord" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Bestanden worden gedecodeerd... Even geduld alstublieft, dit kan even duren." @@ -431,157 +431,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "Laatst uitgevoerde cron op %s." + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "Laatst uitgevoerde cron op %s. Dat is langer dan een uur geleden, er is iets fout gegaan." + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "Cron is nog niet uitgevoerd!" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Bij laden van elke pagina één taak uitvoeren" -#: templates/admin.php:175 +#: templates/admin.php:192 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:183 +#: templates/admin.php:200 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:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Delen" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Activeren Share API" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Apps toestaan de Share API te gebruiken" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Toestaan links" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Toestaan dat gebruikers objecten met links delen met anderen" -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Sta publieke uploads toe" -#: templates/admin.php:212 +#: templates/admin.php:228 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:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Toestaan opnieuw delen" -#: templates/admin.php:221 +#: templates/admin.php:236 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:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Toestaan dat gebruikers met iedereen delen" -#: templates/admin.php:231 +#: templates/admin.php:246 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:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Toestaan e-mailnotificaties" -#: templates/admin.php:239 +#: templates/admin.php:254 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:246 +#: templates/admin.php:261 msgid "Security" msgstr "Beveiliging" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Afdwingen HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, 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:267 +#: templates/admin.php:282 #, 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:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "E-mailserver" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "Dit wordt gestuurd voor het verzenden van meldingen." -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Afzenderadres" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Authenticatie vereist" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Server adres" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Poort" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Inloggegevens" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "SMTP gebruikersnaam" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "SMTP wachtwoord" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Test e-mailinstellingen" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Versturen e-mail" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Log" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Meer" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Minder" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versie" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index d3f5eb8d77f..a4759a0e924 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 18:30+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 5cf7aaafb87..bde8baeea24 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -536,6 +536,18 @@ msgstr "Nytt passord" msgid "Reset password" msgstr "Nullstill passord" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personleg" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 1ce4f870740..9f4fa5869fa 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -20,66 +20,66 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Klarte ikkje flytta %s – det finst allereie ei fil med dette namnet" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Klarte ikkje flytta %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Filnamnet kan ikkje vera tomt." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ugyldig namn, «\\», «/», «<», «>», «:», «\"», «|», «?» og «*» er ikkje tillate." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -91,54 +91,54 @@ msgstr "Klarte ikkje å endra opplastingsmappa." msgid "Invalid Token" msgstr "Ugyldig token" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer lasta opp. Ukjend feil" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Ingen feil, fila vart lasta opp" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Fila du lasta opp er større enn det «upload_max_filesize» i php.ini tillater: " -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den opplasta fila er større enn variabelen MAX_FILE_SIZE i HTML-skjemaet" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Fila vart berre delvis lasta opp" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ingen filer vart lasta opp" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Manglar ei mellombels mappe" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Klarte ikkje skriva til disk" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Ikkje nok lagringsplass tilgjengeleg" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Feil ved opplasting. Klarte ikkje å finna opplasta fil." -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Feil ved opplasting. Klarte ikkje å henta filinfo." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Ugyldig mappe." @@ -159,40 +159,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Opplasting avbroten." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Klarte ikkje å henta resultat frå tenaren." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fila lastar no opp. Viss du forlèt sida no vil opplastinga verta avbroten." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} finst allereie" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index a9924e80428..2077d182fd5 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -50,15 +50,15 @@ msgstr "E-post sendt" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Kryptering" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -214,31 +214,31 @@ msgstr "Oppdater" msgid "Updated" msgstr "Oppdatert" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Vel eit profilbilete" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dekrypterer filer … Ver venleg og vent, dette kan ta ei stund." @@ -335,18 +335,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Tryggleiksåtvaring" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -355,68 +355,68 @@ msgid "" "root." msgstr "Datamappa og filene dine er sannsynlegvis leselege frå nettet. Fila .htaccess fungerer ikkje. Me rår deg sterkt til å konfigurera vevtenaren din sånn at datamappa di ikkje lenger er tilgjengeleg; alternativt kan du flytta datamappa ut av dokumentrot til vevtenaren." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Oppsettsåtvaring" -#: templates/admin.php:74 +#: templates/admin.php:78 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." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "Ver venleg og dobbeltsjekk <a href=\"%s\">installasjonsrettleiinga</a>." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Modulen «fileinfo» manglar" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP-modulen «fileinfo» manglar. Me rår sterkt til å slå på denne modulen for å best mogleg oppdaga MIME-typar." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Regionaldata fungerer ikkje" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Nettilkoplinga fungerer ikkje" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -425,162 +425,178 @@ 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:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Utfør éi oppgåve for kvar sidelasting" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Slå på API-et for deling" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "La app-ar bruka API-et til deling" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Tillat lenkjer" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "La brukarar dela ting offentleg med lenkjer" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Tillat offentlege opplastingar" -#: templates/admin.php:208 +#: templates/admin.php:228 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:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Tillat vidaredeling" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "La brukarar vidaredela delte ting" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "La brukarar dela med kven som helst" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "La brukarar dela berre med brukarar i deira grupper" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Tryggleik" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Krev HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, 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:263 +#: templates/admin.php:282 #, 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:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Tenaradresse" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Logg" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Log nivå" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Meir" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Mindre" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Utgåve" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 480d38d38db..37d6774cb71 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/nqo/core.po b/l10n/nqo/core.po index aa6353886d6..fca384c25d9 100644 --- a/l10n/nqo/core.po +++ b/l10n/nqo/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -528,6 +528,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/nqo/settings.po b/l10n/nqo/settings.po index b476081f955..9845d1695c9 100644 --- a/l10n/nqo/settings.po +++ b/l10n/nqo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/oc/core.po b/l10n/oc/core.po index fce77c4c7ff..152d585a7a7 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -533,6 +533,18 @@ msgstr "Senhal novèl" msgid "Reset password" msgstr "Senhal tornat botar" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personal" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index f8210485c0a..7f609bb3b07 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Amontcargament capitat, pas d'errors" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Lo fichièr amontcargat es mai gròs que la directiva «MAX_FILE_SIZE» especifiada dins lo formulari HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Lo fichièr foguèt pas completament amontcargat" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Cap de fichièrs son estats amontcargats" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Un dorsièr temporari manca" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "L'escriptura sul disc a fracassat" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Amontcargar anullat." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo cargament. " -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 653448bf2b5..d71b89eca0a 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Avertiment de securitat" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Executa un prètfach amb cada pagina cargada" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Al partejar" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Activa API partejada" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Jornal" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Mai d'aquò" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 40d6de703ce..1c69513cbd9 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/pa/core.po b/l10n/pa/core.po index ac2849c135f..b6b1af47d5f 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -534,6 +534,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/pa/settings.po b/l10n/pa/settings.po index 72e4853611e..8f1df1750df 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -48,15 +48,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -212,31 +212,31 @@ msgstr "" msgid "Updated" msgstr "ਅੱਪਡੇਟ ਕੀਤਾ" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -333,18 +333,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "ਸੁਰੱਖਿਆ ਚੇਤਾਵਨੀ" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -353,68 +353,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "ਸੈਟਅੱਪ ਚੇਤਾਵਨੀ" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "ਸਰਵਰ ਐਡਰੈਸ" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/pl/core.po b/l10n/pl/core.po index acc4f191f2f..92279c7d0a2 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 06:30+0000\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 07:20+0000\n" "Last-Translator: bobie <maciej.przybecki@gmail.com>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -542,6 +542,18 @@ msgstr "Nowe hasło" msgid "Reset password" msgstr "Zresetuj hasło" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "Mac OS X nie jest wspierany i %s nie będzie działać poprawnie na tej platformie. Używasz na własne ryzyko!" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "Aby uzyskać najlepsze rezultaty, rozważ w to miejsce użycie serwera GNU/Linux." + #: strings.php:5 msgid "Personal" msgstr "Osobiste" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 72abe2edbb2..9473672b266 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -23,66 +23,66 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Nie można było przenieść %s - Plik o takiej nazwie już istnieje" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Nie można było przenieść %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Nazwa pliku nie może być pusta." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" jest nieprawidłową nazwą pliku." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nieprawidłowa nazwa. Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*' są niedozwolone." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Folder docelowy został przeniesiony lub usunięty" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Nazwa %s jest już używana w folderze %s. Proszę wybrać inną nazwę." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Niepoprawne źródło" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Serwer nie mógł otworzyć adresów URL, należy sprawdzić konfigurację serwera" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Błąd podczas pobierania %s do %S" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Błąd przy tworzeniu pliku" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Nazwa folderu nie może być pusta." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Błąd przy tworzeniu folderu" @@ -94,54 +94,54 @@ msgstr "Nie można ustawić katalog wczytywania." msgid "Invalid Token" msgstr "Nieprawidłowy Token" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Żaden plik nie został załadowany. Nieznany błąd" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Nie było błędów, plik wysłano poprawnie." -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Wgrany plik przekracza wartość upload_max_filesize zdefiniowaną w php.ini: " -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Wysłany plik przekracza wielkość dyrektywy MAX_FILE_SIZE określonej w formularzu HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Załadowany plik został wysłany tylko częściowo." -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nie wysłano żadnego pliku" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Brak folderu tymczasowego" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Błąd zapisu na dysk" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Za mało dostępnego miejsca" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Nieudane przesłanie. Nie można znaleźć przesyłanego pliku" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Nieudane przesłanie. Nie można pobrać informacji o pliku." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Zła ścieżka." @@ -162,40 +162,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Brak wolnej przestrzeni, przesyłasz {size1} a pozostało tylko {size2}" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Nie można uzyskać wyniku z serwera." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Wysyłanie pliku jest w toku. Jeśli opuścisz tę stronę, wysyłanie zostanie przerwane." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL nie może być pusty" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "W katalogu domowym \"Shared\" jest zarezerwowana nazwa pliku" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} już istnieje" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Nie można utworzyć pliku" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Nie można utworzyć folderu" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Błąd przy pobieraniu adresu URL" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 0da46ce25da..d1e47d0889e 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-16 03:12-0400\n" -"PO-Revision-Date: 2014-03-15 15:20+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 10:42+0000\n" "Last-Translator: bobie <maciej.przybecki@gmail.com>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -50,15 +50,15 @@ msgstr "E-mail wysłany" msgid "You need to set your user email before being able to send test emails." msgstr "Musisz najpierw ustawić użytkownika e-mail, aby móc wysyłać wiadomości testowe." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Tryb wysyłki" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Szyfrowanie" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Metoda autentykacji" @@ -430,157 +430,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "Ostatni cron był uruchomiony %s." + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "Ostatni cron był uruchomiony %s. To jest więcej niż godzinę temu, wygląda na to, że coś jest nie tak." + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "Cron nie został jeszcze uruchomiony!" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Wykonuj jedno zadanie wraz z każdą wczytaną stroną" -#: templates/admin.php:175 +#: templates/admin.php:192 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:183 +#: templates/admin.php:200 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:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Udostępnianie" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Włącz API udostępniania" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Zezwalaj aplikacjom na korzystanie z API udostępniania" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Zezwalaj na odnośniki" -#: templates/admin.php:203 +#: templates/admin.php:220 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:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Pozwól na publiczne wczytywanie" -#: templates/admin.php:212 +#: templates/admin.php:228 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:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Zezwalaj na ponowne udostępnianie" -#: templates/admin.php:221 +#: templates/admin.php:236 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:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Zezwalaj użytkownikom na współdzielenie z kimkolwiek" -#: templates/admin.php:231 +#: templates/admin.php:246 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:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Pozwól na mailowe powiadomienia" -#: templates/admin.php:239 +#: templates/admin.php:254 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:246 +#: templates/admin.php:261 msgid "Security" msgstr "Bezpieczeństwo" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Wymuś HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, 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:267 +#: templates/admin.php:282 #, 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:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "Serwer pocztowy" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "To jest używane do wysyłania powiadomień" -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Z adresu" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Wymagana autoryzacja" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Adres Serwera" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Poświadczenia" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "Użytkownik SMTP" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "Hasło SMTP" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Ustawienia testowej wiadomości" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Wyślij email" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Logi" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Poziom logów" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Więcej" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Mniej" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Wersja" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index c0c5d208854..25da5a7a43f 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/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: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-13 07:30+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: maxxx <maxxxrally@gmail.com>\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 622c8b621cd..9592e53fa5b 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: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 11:03+0000\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 14:31+0000\n" "Last-Translator: Flávio Veras <flaviove@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -535,6 +535,18 @@ msgstr "Nova senha" msgid "Reset password" msgstr "Redefinir senha" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "Mac OS X não é suportado e %s não funcionará corretamente nesta plataforma. Use-o por sua conta e risco!" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "Para obter os melhores resultados, por favor, considere o uso de um servidor GNU/Linux em seu lugar." + #: strings.php:5 msgid "Personal" msgstr "Pessoal" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index ccefbd75b34..127cadb9b98 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -20,66 +20,66 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Impossível mover %s - Um arquivo com este nome já existe" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Impossível mover %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "O nome do arquivo não pode estar vazio." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" é um nome de arquivo inválido." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "A pasta de destino foi movida ou excluída." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "O nome %s já é usado na pasta %s. Por favor, escolha um nome diferente." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Não é uma fonte válida" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Não é permitido ao servidor abrir URLs, por favor verificar a configuração do servidor." -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Erro ao baixar %s para %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Erro ao criar o arquivo" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "O nome da pasta não pode estar vazio." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Erro ao criar a pasta" @@ -91,54 +91,54 @@ msgstr "Impossível configurar o diretório de upload" msgid "Invalid Token" msgstr "Token inválido" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Nenhum arquivo foi enviado. Erro desconhecido" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Sem erros, o arquivo foi enviado com sucesso" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O arquivo enviado excede a diretiva upload_max_filesize no php.ini: " -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O arquivo carregado excede o argumento MAX_FILE_SIZE especificado no formulário HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "O arquivo foi parcialmente enviado" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nenhum arquivo enviado" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Pasta temporária não encontrada" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Falha ao escrever no disco" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Espaço de armazenamento insuficiente" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Falha no envio. Não foi possível encontrar o arquivo enviado" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Falha no envio. Não foi possível obter informações do arquivo." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Diretório inválido." @@ -159,40 +159,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Não há espaço suficiente, você está enviando {size1} mas resta apenas {size2}" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Não foi possível obter o resultado do servidor." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Upload em andamento. Sair da página agora resultará no cancelamento do envio." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL não pode estar vazia" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Na pasta home 'Shared- Compartilhada' é um nome reservado" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} já existe" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Não foi possível criar o arquivo" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Não foi possível criar a pasta" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Erro ao buscar URL" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 1d0ad869d15..aed155f7491 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: 2014-03-13 01:55-0400\n" -"PO-Revision-Date: 2014-03-12 14:01+0000\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 19:31+0000\n" "Last-Translator: Flávio Veras <flaviove@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -49,15 +49,15 @@ msgstr "E-mail enviado" msgid "You need to set your user email before being able to send test emails." msgstr "Você precisa configurar seu e-mail de usuário antes de ser capaz de enviar e-mails de teste." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Modo enviar" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Criptografia" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Método de autenticação" @@ -213,31 +213,31 @@ msgstr "Atualizar" msgid "Updated" msgstr "Atualizado" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Selecione uma imagem para o perfil" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "Senha muito fraca" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "Senha fraca" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "So-so senha" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "Boa senha" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "Senha forte" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Decriptando arquivos... Por favor aguarde, isso pode levar algum tempo." @@ -429,157 +429,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "Último cron foi executado em %s." + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "Última cron foi executado em %s. Isso é, mais do que uma hora atrás, algo parece errado." + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "Cron não foi executado ainda!" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Execute uma tarefa com cada página carregada" -#: templates/admin.php:175 +#: templates/admin.php:192 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:183 +#: templates/admin.php:200 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:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Compartilhamento" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Habilitar API de Compartilhamento" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Permitir que aplicativos usem a API de Compartilhamento" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Permitir links" -#: templates/admin.php:203 +#: templates/admin.php:220 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:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Permitir envio público" -#: templates/admin.php:212 +#: templates/admin.php:228 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:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Permitir recompartilhamento" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Permitir que usuários compartilhem novamente itens compartilhados com eles" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Permitir que usuários compartilhem com qualquer um" -#: templates/admin.php:231 +#: templates/admin.php:246 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:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Permitir notificação por email" -#: templates/admin.php:239 +#: templates/admin.php:254 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:246 +#: templates/admin.php:261 msgid "Security" msgstr "Segurança" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, 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:267 +#: templates/admin.php:282 #, 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:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "Servidor de Email" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "Isto é usado para o envio de notificações." -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Do Endereço" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Autenticação é requerida" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Endereço do servidor" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Porta" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Credenciais" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "Nome do Usuário SMTP" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "Senha SMTP" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Configurações de e-mail de teste" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Enviar email" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Registro" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Nível de registro" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Mais" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Menos" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versão" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 7835f9b48a5..f8940d0e55c 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 13:11+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: Flávio Veras <flaviove@gmail.com>\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_PT/core.po b/l10n/pt_PT/core.po index 926c0747fd8..30a03fb0c3d 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -540,6 +540,18 @@ msgstr "Nova palavra-chave" msgid "Reset password" msgstr "Repor password" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Pessoal" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index f59532a1a4f..5d3d9a8a8dc 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -21,66 +21,66 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Não pôde mover o ficheiro %s - Já existe um ficheiro com esse nome" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Não foi possível move o ficheiro %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "O nome do ficheiro não pode estar vazio." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "O nome %s já está em uso na pasta %s. Por favor escolha um nome diferente." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Não é uma fonte válida" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "O servidor não consegue abrir URLs, por favor verifique a configuração do servidor" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Erro ao transferir %s para %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Erro ao criar o ficheiro" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "O nome da pasta não pode estar vazio." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Erro ao criar a pasta" @@ -92,54 +92,54 @@ msgstr "Não foi possível criar o diretório de upload" msgid "Invalid Token" msgstr "Token inválido" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Não ocorreram erros, o ficheiro foi submetido com sucesso" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O tamanho do ficheiro carregado ultrapassa o valor MAX_FILE_SIZE definido no formulário HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro seleccionado foi apenas carregado parcialmente" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nenhum ficheiro foi submetido" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Está a faltar a pasta temporária" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Falhou a escrita no disco" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Não há espaço suficiente em disco" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Falhou o envio. Não conseguiu encontrar o ficheiro enviado" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "O carregamento falhou. Não foi possível obter a informação do ficheiro." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Directório Inválido" @@ -160,40 +160,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Não foi possível obter o resultado do servidor." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL não pode estar vazio" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Na pasta pessoal \"Partilhado\" é um nome de ficheiro reservado" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "O nome {new_name} já existe" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Não pôde criar ficheiro" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Não pôde criar pasta" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Erro ao obter URL" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index f89145893cb..607236cb2e7 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -4,14 +4,15 @@ # # Translators: # Mouxy <daniel@mouxy.net>, 2013 +# Helder Meneses <helder.meneses@gmail.com>, 2014 # jmruas <jmruas@gmail.com>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-16 03:12-0400\n" -"PO-Revision-Date: 2014-03-15 16:30+0000\n" -"Last-Translator: jmruas <jmruas@gmail.com>\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-21 10:30+0000\n" +"Last-Translator: Helder Meneses <helder.meneses@gmail.com>\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" @@ -43,20 +44,20 @@ msgstr "Erro ao configurar o armazenamento do Google Drive" msgid "Saved" msgstr "Guardado" -#: lib/config.php:512 +#: lib/config.php:631 msgid "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Atenção:</b> 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:516 +#: lib/config.php:635 msgid "" "<b>Warning:</b> 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 "<b>Aviso:</b> 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:519 +#: lib/config.php:638 msgid "" "<b>Warning:</b> The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -118,7 +119,7 @@ msgstr "Activar Armazenamento Externo para o Utilizador" #: templates/settings.php:130 msgid "Allow users to mount the following external storage" -msgstr "" +msgstr "Permitir que os utilizadores montem o seguinte armazenamento externo" #: templates/settings.php:147 msgid "SSL root certificates" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index ee073474d11..3879c7118d5 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-16 03:12-0400\n" -"PO-Revision-Date: 2014-03-15 16:30+0000\n" -"Last-Translator: jmruas <jmruas@gmail.com>\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -54,15 +54,15 @@ msgstr "E-mail enviado" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Modo de envio" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Encriptação" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -434,157 +434,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Executar uma tarefa com cada página carregada" -#: templates/admin.php:175 +#: templates/admin.php:192 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:183 +#: templates/admin.php:200 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:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Partilha" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Activar a API de partilha" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Permitir que os utilizadores usem a API de partilha" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Permitir links" -#: templates/admin.php:203 +#: templates/admin.php:220 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:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Permitir Envios Públicos" -#: templates/admin.php:212 +#: templates/admin.php:228 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:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Permitir repartilha" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Permitir que os utilizadores partilhem itens partilhados com eles" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Permitir que os utilizadores partilhem com todos" -#: templates/admin.php:231 +#: templates/admin.php:246 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:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Permitir notificação por email" -#: templates/admin.php:239 +#: templates/admin.php:254 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:246 +#: templates/admin.php:261 msgid "Security" msgstr "Segurança" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, 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:267 +#: templates/admin.php:282 #, 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:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "Servidor de email" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "Isto é utilizado para enviar notificações" -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Do endereço" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Autenticação necessária" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Endereço do servidor" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Porto" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Credenciais" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "Nome de utilizador SMTP" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "Password SMTP" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Testar configurações de email" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Enviar email" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Registo" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Nível do registo" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Mais" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Menos" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versão" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index d22b1d69435..98b05141911 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index dcab9dffb3a..970eadbc863 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -542,6 +542,18 @@ msgstr "Noua parolă" msgid "Reset password" msgstr "Resetează parola" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personal" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 2558dc5b3f4..f4def010820 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -24,66 +24,66 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "%s nu se poate muta - Fișierul cu acest nume există deja " -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Nu se poate muta %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Numele fișierului nu poate rămâne gol." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nume nevalide, '\\', '/', '<', '>', ':', '\"', '|', '?' și '*' nu sunt permise." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Eroare la crearea fisierului" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Eroare la crearea folderului" @@ -95,54 +95,54 @@ msgstr "Imposibil de a seta directorul pentru incărcare." msgid "Invalid Token" msgstr "Jeton Invalid" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Niciun fișier nu a fost încărcat. Eroare necunoscută" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Nu a apărut nici o eroare, fișierul a fost încărcat cu succes" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Fișierul încărcat depășește directiva upload_max_filesize din php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Fișierul încărcat depășește directiva MAX_FILE_SIZE specificată în formularul HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Fișierul a fost încărcat doar parțial" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nu a fost încărcat niciun fișier" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Lipsește un dosar temporar" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Eroare la scrierea pe disc" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nu este disponibil suficient spațiu" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Încărcare eșuată. Nu se poate găsi fișierul încărcat" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Încărcare eșuată. Nu se pot obține informații despre fișier." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Dosar nevalid." @@ -163,40 +163,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Încărcare anulată." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Nu se poate obține rezultatul de la server." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL nu poate fi gol" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} există deja" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Nu s-a putut crea fisierul" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Nu s-a putut crea folderul" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index de7d448e8d6..788adc850f7 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -49,15 +49,15 @@ msgstr "Mesajul a fost expediat" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Încriptare" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -213,31 +213,31 @@ msgstr "Actualizare" msgid "Updated" msgstr "Actualizat" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -334,18 +334,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Avertisment de securitate" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -354,68 +354,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Atenţie la implementare" -#: templates/admin.php:74 +#: templates/admin.php:78 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ă." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Modulul \"Fileinfo\" lipsește" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Modulul PHP \"Fileinfo\" lipsește. Va recomandam sa activaţi acest modul pentru a obține cele mai bune rezultate cu detectarea mime-type." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Localizarea nu funcționează" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Conexiunea la internet nu funcționează" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -424,162 +424,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Execută o sarcină la fiecare pagină încărcată" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Partajare" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Activare API partajare" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Permite aplicațiilor să folosească API-ul de partajare" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Pemite legături" -#: templates/admin.php:199 +#: templates/admin.php:220 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:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Permite încărcări publice" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Permite repartajarea" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Permite utilizatorilor să repartajeze fișiere partajate cu ei" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Permite utilizatorilor să partajeze cu oricine" -#: templates/admin.php:227 +#: templates/admin.php:246 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:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Securitate" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Adresa server-ului" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Portul" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Jurnal de activitate" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Nivel jurnal" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Mai mult" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Mai puțin" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versiunea" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index b81ac785574..a209336d3df 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index b0d2b8bc934..fec52335def 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -13,6 +13,7 @@ # stushev, 2013 # eurekafag <rkfg@rkfg.me>, 2013 # sk.avenger <sk.avenger@adygnet.ru>, 2013 +# Swab <swab@i.ua>, 2014 # Victor Bravo <>, 2013 # vsapronov <vladimir.sapronov@gmail.com>, 2013 # not_your_conscience <hex.void@gmail.com>, 2013 @@ -23,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 14:31+0000\n" +"Last-Translator: Swab <swab@i.ua>\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" @@ -35,7 +36,7 @@ msgstr "" #: ajax/share.php:88 msgid "Expiration date is in the past." -msgstr "" +msgstr "Дата истечения срока действия в прошлом." #: ajax/share.php:120 ajax/share.php:162 #, php-format @@ -281,23 +282,23 @@ msgstr "Ошибка при загрузке шаблона существующ #: js/setup.js:84 msgid "Very weak password" -msgstr "" +msgstr "Очень слабый пароль" #: js/setup.js:85 msgid "Weak password" -msgstr "" +msgstr "Слабый пароль" #: js/setup.js:86 msgid "So-so password" -msgstr "" +msgstr "Так себе пароль" #: js/setup.js:87 msgid "Good password" -msgstr "" +msgstr "Хороший пароль" #: js/setup.js:88 msgid "Strong password" -msgstr "" +msgstr "Устойчивый к взлому пароль" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" @@ -496,7 +497,7 @@ msgstr "%s сброс пароля" msgid "" "A problem has occurred whilst sending the email, please contact your " "administrator." -msgstr "" +msgstr "Произошла ошибка при отправке сообщения электронной почты, пожалуйста, свяжитесь с Вашим администратором." #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -554,6 +555,18 @@ msgstr "Новый пароль" msgid "Reset password" msgstr "Сбросить пароль" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "Mac OS X не поддерживается и %s не будет работать правильно на этой платформе. Используйте ее на свой страх и риск!" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "Для достижения наилучших результатов, пожалуйста, рассмотрите возможность использовать взамен GNU/Linux сервер." + #: strings.php:5 msgid "Personal" msgstr "Личное" @@ -674,7 +687,7 @@ msgstr "Создать <strong>учётную запись администра #: templates/installation.php:70 msgid "Storage & database" -msgstr "" +msgstr "Система хранения данных & база данных" #: templates/installation.php:77 msgid "Data folder" @@ -775,7 +788,7 @@ msgstr "Альтернативные имена пользователя" msgid "" "Hey there,<br><br>just letting you know that %s shared <strong>%s</strong> " "with you.<br><a href=\"%s\">View it!</a><br><br>" -msgstr "" +msgstr "Здравствуйте,<br><br>просто даём вам знать, что %s открыл доступ к %s для вас.<br><a href=\"%s\">Посмотреть!</a><br><br>" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/ru/files.po b/l10n/ru/files.po index d374b2491d1..4b5c985dfc9 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -8,6 +8,7 @@ # jekader <jekader@gmail.com>, 2013 # mogarych <mogarych@mail.ru>, 2014 # eurekafag <rkfg@rkfg.me>, 2013 +# Swab <swab@i.ua>, 2014 # Victor Bravo <>, 2013 # vsapronov <vladimir.sapronov@gmail.com>, 2013 # not_your_conscience <hex.void@gmail.com>, 2013 @@ -18,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 14:22+0000\n" +"Last-Translator: Swab <swab@i.ua>\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" @@ -28,66 +29,66 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Невозможно переместить %s - файл с таким именем уже существует" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Невозможно переместить %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Имя файла не может быть пустым." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." -msgstr "" +msgstr "\"%s\" это не правильное имя файла." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Неправильное имя: символы '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." -msgstr "" +msgstr "Целевой каталог был перемещен или удален." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Имя %s уже используется для каталога %s. Пожалуйста, выберите другое имя." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Неправильный источник" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Сервер не позволяет открывать URL-адреса, пожалуйста, проверьте настройки сервера" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Ошибка при скачивании %s в %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Ошибка при создании файла" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Имя папки не может быть пустым." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Ошибка создания каталога" @@ -99,54 +100,54 @@ msgstr "Не удалось установить каталог загрузки msgid "Invalid Token" msgstr "Недопустимый маркер" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Файл не был загружен. Неизвестная ошибка" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Файл загружен успешно." -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Файл превышает размер, установленный параметром upload_max_filesize в php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Загруженный файл превышает размер, установленный параметром MAX_FILE_SIZE в HTML-форме" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Файл загружен лишь частично" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ни одного файла загружено не было" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Отсутствует временный каталог" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Ошибка записи на диск" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Недостаточно доступного места в хранилище" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Загрузка не удалась. Невозможно найти загружаемый файл" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Загрузка не удалась. Невозможно получить информацию о файле" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Неверный каталог." @@ -160,47 +161,47 @@ msgstr "Невозможно загрузить {filename}, так как это #: js/file-upload.js:258 msgid "Total file size {size1} exceeds upload limit {size2}" -msgstr "" +msgstr "Полный размер файла {size1} превышает лимит по загрузке {size2}" #: js/file-upload.js:268 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" -msgstr "" +msgstr "Не достаточно свободного места, Вы загружаете {size1} но осталось только {size2}" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Загрузка отменена." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Не удалось получить ответ от сервера." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Идёт загрузка файла. Покинув страницу, вы прервёте загрузку." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "Ссылка не может быть пустой." -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "'Shared' - это зарезервированное имя файла в домашнем каталоге" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} уже существует" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Не удалось создать файл" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Не удалось создать каталог" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Ошибка получения URL" @@ -263,7 +264,7 @@ msgstr[2] "Закачка %n файлов" #: js/files.js:96 msgid "\"{name}\" is an invalid file name." -msgstr "" +msgstr "\"{name}\" это не правильное имя файла." #: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" diff --git a/l10n/ru/files_encryption.po b/l10n/ru/files_encryption.po index 07f348b79de..d0f028c8df8 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.po @@ -8,15 +8,16 @@ # lord93 <lordakryl@gmail.com>, 2013 # jekader <jekader@gmail.com>, 2013 # eurekafag <rkfg@rkfg.me>, 2013 +# Swab <swab@i.ua>, 2014 # Victor Bravo <>, 2013 # vsapronov <vladimir.sapronov@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 14:31+0000\n" +"Last-Translator: Swab <swab@i.ua>\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" @@ -108,7 +109,7 @@ msgstr "Начато начальное шифрование... Это може #: js/detect-migration.js:25 msgid "Initial encryption running... Please try again later." -msgstr "" +msgstr "Работает первоначальное шифрование... Пожалуйста, повторите попытку позже." #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 6af3711cc64..74a21556d84 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Swab <swab@i.ua>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 14:41+0000\n" +"Last-Translator: Swab <swab@i.ua>\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" @@ -39,22 +40,22 @@ msgstr "Ошибка при настройке хранилища Google Drive" #: js/settings.js:313 js/settings.js:320 msgid "Saved" -msgstr "" +msgstr "Сохранено" -#: lib/config.php:512 +#: lib/config.php:654 msgid "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Внимание:</b> \"smbclient\" не установлен. Подключение по CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его." -#: lib/config.php:516 +#: lib/config.php:658 msgid "" "<b>Warning:</b> 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 "<b>Внимание:</b> Поддержка FTP не включена в PHP. Подключение по FTP невозможно. Пожалуйста, обратитесь к системному администратору, чтобы включить." -#: lib/config.php:519 +#: lib/config.php:661 msgid "" "<b>Warning:</b> The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -116,7 +117,7 @@ msgstr "Включить пользовательские внешние нос #: templates/settings.php:130 msgid "Allow users to mount the following external storage" -msgstr "" +msgstr "Разрешить пользователям монтировать следующую внешнюю систему хранения данных" #: templates/settings.php:147 msgid "SSL root certificates" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 1d3f437adcc..5654edd1a82 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 14:41+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" @@ -39,7 +39,7 @@ msgstr "" #: admin/controller.php:73 msgid "Saved" -msgstr "" +msgstr "Сохранено" #: admin/controller.php:90 msgid "test email settings" @@ -62,15 +62,15 @@ msgstr "Письмо отправлено" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Шифрование" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -226,31 +226,31 @@ msgstr "Обновить" msgid "Updated" msgstr "Обновлено" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Выберите картинку профиля" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" -msgstr "" +msgstr "Очень слабый пароль" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" -msgstr "" +msgstr "Слабый пароль" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" -msgstr "" +msgstr "Так себе пароль" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" -msgstr "" +msgstr "Хороший пароль" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" -msgstr "" +msgstr "Устойчивый к взлому пароль" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Расшифровка файлов... Пожалуйста, подождите, это может занять некоторое время." @@ -347,18 +347,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Предупреждение безопасности" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Вы обращаетесь к %s используя HTTP. Мы настоятельно рекомендуем вам настроить сервер на использование HTTPS." -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -367,68 +367,68 @@ msgid "" "root." msgstr "Похоже, что папка с Вашими данными и Ваши файлы доступны из интернета. Файл .htaccess не работает. Мы настойчиво предлагаем Вам сконфигурировать вебсервер таким образом, чтобы папка с Вашими данными более не была доступна или переместите папку с данными куда-нибудь в другое место вне основной папки документов вебсервера." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Предупреждение установки" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Веб-сервер до сих пор не настроен для возможности синхронизации файлов. Похоже что проблема в неисправности интерфейса WebDAV." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "Пожалуйста, дважды просмотрите <a href='%s'>инструкции по установке</a>." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Модуль 'fileinfo' отсутствует" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP-модуль 'fileinfo' отсутствует. Мы настоятельно рекомендуем включить этот модуль для улучшения определения типов (mime-type) файлов." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Ваша версия PHP устарела" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "Ваша версия PHP устарела. Мы настоятельно рекомендуем обновиться до 5.3.8 или новее, так как старые версии работают не корректно. Вполне возможно, что эта установка не работает должным образом." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Локализация не работает" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Невозможно установить системную локаль, поддерживающую UTF-8" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Это значит, что могут быть проблемы с некоторыми символами в именах файлов." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Мы настоятельно рекомендуем установить требуемые пакеты в систему, для поддержки одной из следующих локалей: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Интернет-соединение не работает" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -437,162 +437,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Этот сервер не имеет подключения к сети интернет. Это значит, что некоторые возможности, такие как подключение внешних дисков, уведомления об обновлениях или установка сторонних приложений – не работают. Удалённый доступ к файлам и отправка уведомлений по электронной почте вероятнее всего тоже не будут работать. Предлагаем включить соединение с интернетом для этого сервера, если Вы хотите иметь все возможности." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Планировщик задач по расписанию" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Выполнять одно задание с каждой загруженной страницей" -#: templates/admin.php:171 +#: templates/admin.php:192 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:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Использовать системный cron для вызова cron.php каждые 15 минут." -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Общий доступ" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Включить API общего доступа" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Позволить приложениям использовать API общего доступа" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Разрешить ссылки" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Разрешить пользователям открывать в общий доступ элементы с публичной ссылкой" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Разрешить открытые загрузки" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Разрешить пользователям позволять другим загружать в их открытые папки" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Разрешить переоткрытие общего доступа" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Позволить пользователям открывать общий доступ к эллементам уже открытым в общий доступ" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Разрешить пользователя делать общий доступ любому" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Разрешить пользователям делать общий доступ только для пользователей их групп" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Разрешить уведомление по почте" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Разрешить пользователю оповещать почтой о расшаренных файлах" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Безопасность" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Принудить к HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Принудить клиентов подключаться к %s через шифрованное соединение." -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Пожалуйста, подключитесь к %s используя HTTPS чтобы включить или отключить принудительное SSL." -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Адрес сервера" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Порт" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "Полномочия" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Журнал" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Уровень детализации журнала" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Больше" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Меньше" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Версия" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index d6ca8bbef1c..449f689dc96 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 18d535944c2..d52d4ae3894 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -533,6 +533,18 @@ msgstr "නව මුරපදය" msgid "Reset password" msgstr "මුරපදය ප්රත්යාරම්භ කරන්න" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "පෞද්ගලික" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 1bdecb06284..4d19ae87f3e 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "දෝෂයක් නොමැත. සාර්ථකව ගොනුව උඩුගත කෙරුණි" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "උඩුගත කළ ගොනුවේ විශාලත්වය HTML පෝරමයේ නියම කළ ඇති MAX_FILE_SIZE විශාලත්වයට වඩා වැඩිය" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "උඩුගත කළ ගොනුවේ කොටසක් පමණක් උඩුගත විය" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "ගොනුවක් උඩුගත නොවුණි" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "තාවකාලික ෆොල්ඩරයක් අතුරුදහන්" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "තැටිගත කිරීම අසාර්ථකයි" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "උඩුගත කිරීම අත් හරින්න ලදී" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 5c24b16e0ff..6fd34786768 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "ගුප්ත කේතනය" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "යාවත්කාල කිරීම" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "ආරක්ෂක නිවේදනයක්" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "හුවමාරු කිරීම" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "යොමු සලසන්න" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "යළි යළිත් හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "හුවමාරු කළ හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "ඕනෑම අයෙකු හා හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "තම කණ්ඩායමේ අයෙකු හා පමණක් හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "සේවාදායකයේ ලිපිනය" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "තොට" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "ලඝුව" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "වැඩි" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "අඩු" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 175aba8b811..e6f39fc39de 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index e2c887550b1..72d438e715b 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -538,6 +538,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Osobné" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index bc16f5e1012..d705cf64c22 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index 45cd212519c..c4904394fe3 100644 --- a/l10n/sk/settings.po +++ b/l10n/sk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sk/user_ldap.po b/l10n/sk/user_ldap.po index 2e3098a1e2a..6caf66c53b3 100644 --- a/l10n/sk/user_ldap.po +++ b/l10n/sk/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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 8002ba711df..4a51239c720 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -540,6 +540,18 @@ msgstr "Nové heslo" msgid "Reset password" msgstr "Obnovenie hesla" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Osobné" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index fa1a2fde378..8694064b152 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -18,66 +18,66 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Nie je možné presunúť %s - súbor s týmto menom už existuje" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Nie je možné presunúť %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Meno súboru nemôže byť prázdne" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Názov %s už používa priečinok s%. Prosím zvoľte iný názov." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Neplatný zdroj" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server nie je oprávnený otvárať adresy URL. Overte nastavenia servera." -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Chyba pri sťahovaní súboru %s do %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Chyba pri vytváraní súboru" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Názov priečinka nemôže byť prázdny." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Chyba pri vytváraní priečinka" @@ -89,54 +89,54 @@ msgstr "Nemožno nastaviť priečinok pre nahrané súbory." msgid "Invalid Token" msgstr "Neplatný token" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Žiaden súbor nebol nahraný. Neznáma chyba" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Nenastala žiadna chyba, súbor bol úspešne nahraný" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Nahraný súbor prekročil limit nastavený v upload_max_filesize v súbore php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Ukladaný súbor prekračuje nastavenie MAX_FILE_SIZE z volieb HTML formulára." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Ukladaný súbor sa nahral len čiastočne" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Žiadny súbor nebol uložený" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Chýba dočasný priečinok" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Zápis na disk sa nepodaril" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nedostatok dostupného úložného priestoru" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Nahrávanie zlyhalo. Nepodarilo sa nájsť nahrávaný súbor" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Nahrávanie zlyhalo. Nepodarilo sa získať informácie o súbore." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Neplatný priečinok." @@ -157,40 +157,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Odosielanie zrušené." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Nepodarilo sa dostať výsledky zo servera." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Opustenie stránky zruší práve prebiehajúce odosielanie súboru." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL nemôže byť prázdna" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "V domovskom priečinku je názov \"Shared\" vyhradený názov súboru" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} už existuje" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Nemožno vytvoriť súbor" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Nemožno vytvoriť priečinok" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Chyba pri načítavaní URL" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 93cc730e3a8..32ec5e902eb 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -49,15 +49,15 @@ msgstr "Email odoslaný" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Šifrovanie" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -213,31 +213,31 @@ msgstr "Aktualizovať" msgid "Updated" msgstr "Aktualizované" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Vybrať avatara" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dešifrujem súbory ... Počkajte prosím, môže to chvíľu trvať." @@ -334,18 +334,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Bezpečnostné upozornenie" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Do %s máte prístup cez HTTP. Dôrazne odporúčame nakonfigurovať server tak, aby namiesto toho vyžadoval použitie HTTPS." -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -354,68 +354,68 @@ msgid "" "root." msgstr "Váš priečinok s dátami aj vaše súbory sú pravdepodobne prístupné z internetu. Súbor .htaccess nefunguje. Odporúčame nakonfigurovať webový server tak, aby priečinok s dátami nebol naďalej prístupný, alebo presunúť priečinok s dátami mimo priestor sprístupňovaný webovým serverom." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Nastavenia oznámení" -#: templates/admin.php:74 +#: templates/admin.php:78 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 nie je správne nastavený na synchronizáciu, pretože rozhranie WebDAV je poškodené." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "Skontrolujte prosím znovu <a href=\"%s\">inštalačnú príručku</a>." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Chýba modul 'fileinfo'" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Chýba modul 'fileinfo'. Dôrazne doporučujeme ho povoliť pre dosiahnutie najlepších výsledkov zisťovania mime-typu." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Vaša PHP verzia je zastaraná" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "Táto verzia PHP je zastaraná. Dôrazne vám odporúčame aktualizovať na verziu 5.3.8 alebo novšiu, lebo staršie verzie sú chybné. Je možné, že táto inštalácia nebude fungovať správne." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Lokalizácia nefunguje" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Nie je možné nastaviť znakovú sadu, ktorá podporuje UTF-8." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "To znamená, že sa môžu vyskytnúť problémy s niektorými znakmi v názvoch súborov." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Dôrazne doporučujeme nainštalovať na váš systém požadované balíčky podporujúce jednu z nasledovných znakových sád: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Pripojenie na internet nefunguje" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -424,162 +424,178 @@ 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:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Vykonať jednu úlohu s každým načítaní stránky" -#: templates/admin.php:171 +#: templates/admin.php:192 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:179 +#: templates/admin.php:200 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:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Zdieľanie" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Povoliť API zdieľania" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Povoliť aplikáciám používať API na zdieľanie" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Povoliť odkazy" -#: templates/admin.php:199 +#: templates/admin.php:220 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:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Povoliť verejné nahrávanie súborov" -#: templates/admin.php:208 +#: templates/admin.php:228 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:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Povoliť zdieľanie ďalej" -#: templates/admin.php:217 +#: templates/admin.php:236 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:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Povoliť používateľom zdieľať s kýmkoľvek" -#: templates/admin.php:227 +#: templates/admin.php:246 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:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Povoliť odosielať upozornenia emailom" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Povoliť používateľom odosielať upozornenia emailom pre svoje zdieľané súbory" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Zabezpečenie" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Vynútiť HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, 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:263 +#: templates/admin.php:282 #, 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:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Adresa servera" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "Prihlasovanie údaje" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Záznam" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Úroveň záznamu" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Viac" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Menej" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Verzia" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 09793a0baf8..2359384c654 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 56f99cd56e9..ddd78cae32f 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -21,7 +21,7 @@ msgstr "" #: ajax/share.php:88 msgid "Expiration date is in the past." -msgstr "" +msgstr "Datum preteka je v preteklosti." #: ajax/share.php:120 ajax/share.php:162 #, php-format @@ -545,6 +545,18 @@ msgstr "Novo geslo" msgid "Reset password" msgstr "Ponastavi geslo" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Osebno" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 98e94b68b6f..9966a2785bb 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -19,66 +19,66 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Datoteke %s ni mogoče premakniti - datoteka s tem imenom že obstaja." -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Datoteke %s ni mogoče premakniti" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Ime datoteke ne sme biti prazno polje." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" je neveljavno ime datoteke." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Neveljavno ime; znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Ciljna mapa je premaknjena ali izbrisana." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Ime %s je že v mapi %s že v uporabi. Izbrati je treba drugo ime." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Vir ni veljaven" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Odpiranje naslovov URL preko strežnika ni dovoljeno. Preverite nastavitve strežnika." -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Napaka med prejemanjem %s v mapo %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Napaka med ustvarjanjem datoteke" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Ime mape ne more biti prazna vrednost." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Napaka med ustvarjanjem mape" @@ -90,54 +90,54 @@ msgstr "Mapo, v katero boste prenašali dokumente, ni mogoče določiti" msgid "Invalid Token" msgstr "Neveljaven žeton" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ni poslane datoteke. Neznana napaka." -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je uspešno naložena." -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Poslana datoteka presega dovoljeno velikost, ki je določena z možnostjo upload_max_filesize v datoteki php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslana datoteka presega velikost, ki jo določa parameter največje dovoljene velikosti v obrazcu HTML." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Poslan je le del datoteke." -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ni poslane datoteke" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Manjka začasna mapa" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Pisanje na disk je spodletelo" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Na voljo ni dovolj prostora" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Pošiljanje je spodletelo. Ni mogoče najti poslane datoteke." -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Pošiljanje je spodletelo. Ni mogoče pridobiti podrobnosti datoteke." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Neveljavna mapa." @@ -158,40 +158,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Na voljo ni dovolj prostora. Velikost poslane datoteke je {size1}, na voljo pa je je {size2}." -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Pošiljanje je preklicano." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Ni mogoče pridobiti podatkov s strežnika." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "Polje naslova URL ne sme biti prazno" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "V domači mapi ni dovoljeno ustvariti mape z imenom 'Souporabe', saj je ime zadržano za javno mapo." -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} že obstaja" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Ni mogoče ustvariti datoteke" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Ni mogoče ustvariti mape" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Napaka pridobivanja naslova URL" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index ab3a6bcf560..91e310d8f24 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: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-14 19:30+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -49,15 +49,15 @@ msgstr "Elektronska pošta je poslana" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Način pošiljanja" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Šifriranje" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Način overitve" @@ -429,157 +429,173 @@ msgid "Cron" msgstr "Periodično opravilo" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Izvedi eno nalogo z vsako naloženo stranjo." -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "Datoteka cron.php je vpisana v storitvi webcron za potrditev sklica vsakih 15 minut pri povezavi preko HTTP." -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Uporabi storitev periodičnih opravil za klic datoteke cron.php vsakih 15 minut." -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Souporaba" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Omogoči API souporabe" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Dovoli programom uporabo vmesnika API souporabe" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Dovoli povezave" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Uporabnikom dovoli souporabo predmetov z javnimi povezavami" -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Dovoli javno pošiljanje datotek v oblak" -#: templates/admin.php:212 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Dovoli uporabnikom, da omogočijo drugim uporabnikom, pošiljati datoteke v javno mapo." -#: templates/admin.php:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Dovoli nadaljnjo souporabo" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Uporabnikom dovoli nadaljnjo souporabo predmetov" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Uporabnikom dovoli souporabo s komerkoli" -#: templates/admin.php:231 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Uporabnikom dovoli souporabo z ostalimi uporabniki njihove skupine" -#: templates/admin.php:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Dovoli obvestila preko elektronske pošte" -#: templates/admin.php:239 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Dovoli uporabniku poslati obvestila preko elektronske pošte za datoteke v souporabi" -#: templates/admin.php:246 +#: templates/admin.php:261 msgid "Security" msgstr "Varnost" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Zahtevaj uporabo HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Vsili povezavo odjemalca z %s preko šifrirane povezave." -#: templates/admin.php:267 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Za nastavljanje šifriranja SSL je treba vzpostaviti povezavo z mestom %s preko protokola HTTPS." -#: templates/admin.php:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "Poštni strežnik" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Zahtevana je overitev" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Naslov strežnika" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Vrata" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Poverila" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "Uporabniško ime SMTP" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "Geslo SMTP" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Preizkus nastavitev elektronske pošte" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Pošlji elektronsko sporočilo" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Dnevnik" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Raven beleženja" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Več" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Manj" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Različica" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index b5478c054ec..5a24ba9ffa7 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 10055ae78ab..adf1767891c 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -535,6 +535,18 @@ msgstr "Kodi i ri" msgid "Reset password" msgstr "Rivendos kodin" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personale" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index e13ccd3991f..10f0a0a3fc5 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -19,66 +19,66 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "E pa mundur zhvendosja e %s - ekziston nje skedar me te njetin emer" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Nuk mund të zhvendoset %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Emri i skedarit nuk mund të jetë bosh." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Emër jo i vlefshëm, '\\', '/', '<', '>', ':', '\"', '|', '?' dhe '*' nuk lejohen." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -90,54 +90,54 @@ msgstr "E pa mundur të vendoset dosja e ngarkimit" msgid "Invalid Token" msgstr "Shenjë e gabuar" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Asnjë skedar nuk u dërgua. Gabim i pa njohur" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Skedari u ngarkua me sukses" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Skedari i ngarkuar tejkalon limitin hapsirës së lejuar në php.ini" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Skedari i ngarkuar tejlakon vlerën MAX_FILE_SIZE të përcaktuar në formën HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Skedari është ngakruar vetëm pjesërisht" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Asnjë skedar nuk është ngarkuar" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Mungon dosja e përkohshme" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Dështoi shkrimi në disk" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Hapsira e arkivimit e pamjaftueshme" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Dosje e pavlefshme" @@ -158,40 +158,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Ngarkimi u anullua" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Skedari duke u ngarkuar. Largimi nga faqja do të anullojë ngarkimin" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL-i nuk mund të jetë bosh" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} është ekzistues " -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "I pamundur krijimi i kartelës" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index cdb29a4cdcf..4cb82529cc1 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "Email-i u dërgua" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "Përditësim" msgid "Updated" msgstr "I përditësuar" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Njoftim për sigurinë" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Lajmërim konfigurimi" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Web Serveri juaj nuk është konfigurar sic duhet në mënyre që të lejojë sinkronizimin e skedare pasi ndërfaqja WevDAV duket të jetë e demtuar." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Mungon moduli 'fileinfo'" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Moduli PHP 'fileinfo' mungon. Ju këshillojmë me këmbngulje të aktivizoni këtë modul për të arritur rezultate më të mirame identifikimin e tipeve te ndryshme MIME." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Locale nuk është funksional" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Lidhja me internetin nuk është funksionale" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Kryeni vetëm një veprim me secilën prej faqeve të ngarkuara" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Ndarje" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Aktivizo API për ndarjet" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Lejoni aplikacionet të përdorin share API" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Lejo lidhjet" -#: templates/admin.php:199 +#: templates/admin.php:220 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:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Lejo ngarkimin publik" -#: templates/admin.php:208 +#: templates/admin.php:228 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:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Lejo ri-ndarjen" -#: templates/admin.php:217 +#: templates/admin.php:236 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:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Lejo përdoruesit të ndajnë me cilindo" -#: templates/admin.php:227 +#: templates/admin.php:246 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:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Siguria" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Detyro HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Porta" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Historik aktiviteti" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Niveli i Historikut" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Më tepër" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "M'pak" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versioni" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 82db1279b91..b8ed2aa5515 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 80c0e0c57c6..0b51c7f639f 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -538,6 +538,18 @@ msgstr "Нова лозинка" msgid "Reset password" msgstr "Ресетуј лозинку" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Лично" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 41efd5b4a28..eb157cd5a79 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Не могу да преместим %s – датотека с овим именом већ постоји" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Не могу да преместим %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Име датотеке не може бити празно." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ниједна датотека није отпремљена услед непознате грешке" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Није дошло до грешке. Датотека је успешно отпремљена." -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Отпремљена датотека прелази смерницу upload_max_filesize у датотеци php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Отпремљена датотека прелази смерницу MAX_FILE_SIZE која је наведена у HTML обрасцу" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Датотека је делимично отпремљена" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Датотека није отпремљена" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Недостаје привремена фасцикла" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Не могу да пишем на диск" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Нема довољно простора" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "неисправна фасцикла." @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Отпремање је прекинуто." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} већ постоји" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 3957b136468..ea03c7d195d 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "Порука је послата" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Шифровање" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "Ажурирај" msgid "Updated" msgstr "Ажурирано" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Сигурносно упозорење" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Упозорење о подешавању" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Недостаје модул „fileinfo“" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Недостаје PHP модул „fileinfo“. Препоручујемо вам да га омогућите да бисте добили најбоље резултате с откривањем MIME врста." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Локализација не ради" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Веза с интернетом не ради" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Изврши један задатак са сваком учитаном страницом" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Дељење" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Омогући API Share" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Дозвољава апликацијама да користе API Share" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Дозволи везе" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Дозволи корисницима да деле ставке с другима путем веза" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Дозволи поновно дељење" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Дозволи корисницима да поновно деле ставке с другима" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Дозволи корисницима да деле са било ким" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Дозволи корисницима да деле само са корисницима у њиховим групама" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Безбедност" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Наметни HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Адреса сервера" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Порт" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Бележење" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Ниво бележења" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Више" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Мање" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Верзија" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 03929445d00..d39190908f6 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 87e1b0cffed..19ec0717037 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -540,6 +540,18 @@ msgstr "Nova lozinka" msgid "Reset password" msgstr "Resetuj lozinku" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Lično" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index ba91a498ad6..04923e48049 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Nema greške, fajl je uspešno poslat" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslati fajl prevazilazi direktivu MAX_FILE_SIZE koja je navedena u HTML formi" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Poslati fajl je samo delimično otpremljen!" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nijedan fajl nije poslat" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Nedostaje privremena fascikla" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 65a8aa61a5e..61ac8239bce 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "Email poslat" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Bezbednosno upozorenje" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index 91af0333798..bfe386afdc3 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/su/core.po b/l10n/su/core.po index 452d2e97800..a30711bcf79 100644 --- a/l10n/su/core.po +++ b/l10n/su/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -528,6 +528,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/su/settings.po b/l10n/su/settings.po index 289be4aad23..f93147a8bca 100644 --- a/l10n/su/settings.po +++ b/l10n/su/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 68c463aed5e..09583d597ee 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -540,6 +540,18 @@ msgstr "Nytt lösenord" msgid "Reset password" msgstr "Återställ lösenordet" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personligt" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 664d2617727..337141babf3 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -25,66 +25,66 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Kunde inte flytta %s - Det finns redan en fil med detta namn" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Kan inte flytta %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Filnamn kan inte vara tomt." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Namnet %s används redan i katalogen %s. Välj ett annat namn." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Inte en giltig källa" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Fel under nerladdning från %s till %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Fel under skapande utav filen" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Katalognamn kan ej vara tomt." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Fel under skapande utav en katalog" @@ -96,54 +96,54 @@ msgstr "Kan inte sätta mapp för uppladdning." msgid "Invalid Token" msgstr "Ogiltig token" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil uppladdad. Okänt fel" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Inga fel uppstod. Filen laddades upp utan problem." -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uppladdade filen överskrider upload_max_filesize direktivet php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uppladdade filen överskrider MAX_FILE_SIZE direktivet som har angetts i HTML formuläret" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Den uppladdade filen var endast delvis uppladdad" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ingen fil laddades upp" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "En temporär mapp saknas" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Misslyckades spara till disk" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Inte tillräckligt med lagringsutrymme tillgängligt" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Uppladdning misslyckades. Kunde inte hitta den uppladdade filen" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Uppladdning misslyckades. Gick inte att hämta filinformation." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Felaktig mapp." @@ -164,40 +164,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Uppladdning avbruten." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Gick inte att hämta resultat från server." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL kan ej vara tomt" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "I hemma katalogen 'Delat' är ett reserverat filnamn" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} finns redan" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Kunde ej skapa fil" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Kunde ej skapa katalog" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 2d87b768d93..260b11a4497 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -56,15 +56,15 @@ msgstr "E-post skickat" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Kryptering" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -220,31 +220,31 @@ msgstr "Uppdatera" msgid "Updated" msgstr "Uppdaterad" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Välj en profilbild" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dekrypterar filer... Vänligen vänta, detta kan ta en stund." @@ -341,18 +341,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Säkerhetsvarning" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -361,68 +361,68 @@ msgid "" "root." msgstr "Din datakatalog och dina filer är förmodligen åtkomliga från internet. Filen .htaccess fungerar inte. Vi rekommenderar starkt att du konfigurerar din webbserver så att datakatalogen inte längre är åtkomlig eller du flyttar datakatalogen utanför webbserverns rotkatalog." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Installationsvarning" -#: templates/admin.php:74 +#: templates/admin.php:78 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." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "Vänligen dubbelkolla igenom <a href=\"%s\">installationsguiden</a>." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Modulen \"fileinfo\" saknas" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP-modulen 'fileinfo' saknas. Vi rekommenderar starkt att aktivera den här modulen för att kunna upptäcka korrekt mime-typ." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Locale fungerar inte" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Internetförbindelsen fungerar inte" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -431,162 +431,178 @@ 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:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Exekvera en uppgift vid varje sidladdning" -#: templates/admin.php:171 +#: templates/admin.php:192 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:179 +#: templates/admin.php:200 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:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Dela" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Aktivera delat API" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Tillåt applikationer att använda delat API" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Tillåt länkar" -#: templates/admin.php:199 +#: templates/admin.php:220 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:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Tillåt offentlig uppladdning" -#: templates/admin.php:208 +#: templates/admin.php:228 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:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Tillåt vidaredelning" -#: templates/admin.php:217 +#: templates/admin.php:236 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:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Tillåt delning med alla" -#: templates/admin.php:227 +#: templates/admin.php:246 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:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Tillåt e-post notifikation" -#: templates/admin.php:235 +#: templates/admin.php:254 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:242 +#: templates/admin.php:261 msgid "Security" msgstr "Säkerhet" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Kräv HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, 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:263 +#: templates/admin.php:282 #, 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:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Serveradress" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "Inloggningsuppgifter" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Logg" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Nivå på loggning" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Mer" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Mindre" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index d06794d6eee..1b9e5d7a427 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index 1cc0fd91177..69c0afe6ace 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po index 8a372c5b480..2703facb88a 100644 --- a/l10n/sw_KE/settings.po +++ b/l10n/sw_KE/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 0fa7cc333dc..18b304ba112 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -533,6 +533,18 @@ msgstr "புதிய கடவுச்சொல்" msgid "Reset password" msgstr "மீளமைத்த கடவுச்சொல்" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "தனிப்பட்ட" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 325aee00eaa..0dacc830107 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "இங்கு வழு இல்லை, கோப்பு வெற்றிகரமாக பதிவேற்றப்பட்டது" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "பதிவேற்றப்பட்ட கோப்பானது HTML படிவத்தில் குறிப்பிடப்பட்டுள்ள MAX_FILE_SIZE directive ஐ விட கூடியது" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "பதிவேற்றப்பட்ட கோப்பானது பகுதியாக மட்டுமே பதிவேற்றப்பட்டுள்ளது" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "எந்த கோப்பும் பதிவேற்றப்படவில்லை" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "ஒரு தற்காலிகமான கோப்புறையை காணவில்லை" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "வட்டில் எழுத முடியவில்லை" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} ஏற்கனவே உள்ளது" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index a7d57176b6d..aec5ad9de2f 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "மறைக்குறியீடு" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "இற்றைப்படுத்தல்" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "பாதுகாப்பு எச்சரிக்கை" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "சேவையக முகவரி" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "துறை " -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "சான்று ஆவணங்கள்" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "மேலதிக" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "குறைவான" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 8ff5e0b32ac..7095ac9958f 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/te/core.po b/l10n/te/core.po index deecf0113f2..7387068662b 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -534,6 +534,18 @@ msgstr "కొత్త సంకేతపదం" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "వ్యక్తిగతం" diff --git a/l10n/te/files.po b/l10n/te/files.po index 962db4331a7..23e4494a55d 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 5d2c6323c8e..b8c07e59ad2 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "సేవకి చిరునామా" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "మరిన్ని" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index e728d77914a..d7bc4f03188 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index f1d502bbbba..d93a971a803 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -534,6 +534,17 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 9bc1bdb810c..82e117c5287 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 6894e1524b5..4d1a870edd3 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index f26ae037111..0c968b9069c 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -41,20 +41,20 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:631 +#: lib/config.php:654 msgid "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:635 +#: lib/config.php:658 msgid "" "<b>Warning:</b> 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:638 +#: lib/config.php:661 msgid "" "<b>Warning:</b> 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/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index af07b6635e1..dd36e90e600 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 87c92807a5e..19c5f5f2738 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -35,7 +35,7 @@ msgstr "" msgid "Error" msgstr "" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 6b0f82618f5..76eba3454da 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 503a0af0b8a..f599cc3ba6c 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -66,23 +66,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index bd2a744879e..4a9473b3ffc 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -66,23 +66,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: files.php:231 +#: files.php:232 msgid "ZIP download is turned off." msgstr "" -#: files.php:232 +#: files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:233 files.php:261 +#: files.php:234 files.php:262 msgid "Back to Files" msgstr "" -#: files.php:258 +#: files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:259 +#: files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 623f7f46dca..e91e82eccc2 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:282 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:295 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:319 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -426,156 +426,172 @@ msgid "Cron" msgstr "" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems " +"wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:210 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:211 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:226 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:229 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:237 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:244 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:259 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:265 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:279 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:310 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:332 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:336 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:340 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:345 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:346 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:354 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:359 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:360 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:392 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:393 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:399 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:403 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank" "\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" " diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index b048f760470..f8fe27cf0d7 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 3b0553eec27..e30d5c43f55 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 0e6a31ad150..cea1f814214 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -528,6 +528,18 @@ msgstr "รหัสผ่านใหม่" msgid "Reset password" msgstr "เปลี่ยนรหัสผ่าน" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "ส่วนตัว" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 81b1ace189f..7cb40f38e77 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "ไม่สามารถย้าย %s ได้ - ไฟล์ที่ใช้ชื่อนี้มีอยู่แล้ว" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "ไม่สามารถย้าย %s ได้" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "ชื่อไฟล์ไม่สามารถเว้นว่างได้" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง, '\\', '/', '<', '>', ':', '\"', '|', '?' และ '*' ไม่ได้รับอนุญาตให้ใช้งานได้" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "ไม่พบข้อผิดพลาดใดๆ, ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ไฟล์ที่อัพโหลดมีขนาดไฟล์ใหญ่เกินจำนวนที่กำหนดไว้ในคำสั่ง MAX_FILE_SIZE ที่ถูกระบุไว้ในรูปแบบของ HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "ไฟล์ถูกอัพโหลดได้เพียงบางส่วนเท่านั้น" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "ไม่มีไฟล์ที่ถูกอัพโหลด" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "โฟลเดอร์ชั่วคราวเกิดการสูญหาย" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้มเหลว" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "เหลือพื้นที่ไม่เพียงสำหรับใช้งาน" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "ไดเร็กทอรี่ไม่ถูกต้อง" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "การอัพโหลดถูกยกเลิก" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} มีอยู่แล้วในระบบ" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 96525b8f26e..050e1588f9d 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "ส่งอีเมล์แล้ว" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "การเข้ารหัส" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "อัพเดท" msgid "Updated" msgstr "อัพเดทแล้ว" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "คำเตือนเกี่ยวกับความปลอดภัย" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "การแชร์ข้อมูล" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "อนุญาตให้ใช้งานลิงก์ได้" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "อนุญาตให้ผู้ใช้งานสามารถแชร์ข้อมูลรายการต่างๆไปให้สาธารณะชนเป็นลิงก์ได้" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "อนุญาตให้แชร์ข้อมูลซ้ำใหม่ได้" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลรายการต่างๆที่ถูกแชร์มาให้ตัวผู้ใช้งานได้เท่านั้น" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลถึงใครก็ได้" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลได้เฉพาะกับผู้ใช้งานที่อยู่ในกลุ่มเดียวกันเท่านั้น" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "ที่อยู่เซิร์ฟเวอร์" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "พอร์ต" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "ข้อมูลส่วนตัวสำหรับเข้าระบบ" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "บันทึกการเปลี่ยนแปลง" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "ระดับการเก็บบันทึก log" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "มาก" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "น้อย" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "รุ่น" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 9b08c612be8..1e29595c3f8 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 19871ad9dd1..09a1e3d278e 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: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 09:00+0000\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 19:31+0000\n" "Last-Translator: volkangezer <volkangezer@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -490,7 +490,7 @@ msgid "" "The link to reset your password has been sent to your email.<br>If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.<br>If it is not there ask your local administrator ." -msgstr "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.<br>Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk dizinini kontrol ediniz.<br> Eğer orada da bulamazsanız sistem yöneticinize sorunuz." +msgstr "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.<br>Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk/gereksiz dizinini kontrol ediniz.<br> Eğer yine bulamazsanız sistem yöneticinize sorunuz." #: lostpassword/templates/lostpassword.php:15 msgid "Request failed!<br>Did you make sure your email/username was right?" @@ -537,6 +537,18 @@ msgstr "Yeni parola" msgid "Reset password" msgstr "Parolayı sıfırla" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "Mac OS X desteklenmemediğinden %s bu platformda düzgün çalışmayacak. Kendi riskinizle kullanın!" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "En iyi sonuçlar için GNU/Linux sunucusu kullanın." + #: strings.php:5 msgid "Personal" msgstr "Kişisel" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index b9a6e7a8f62..3894fb0ad4d 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -21,66 +21,66 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "%s taşınamadı - Bu isimde dosya zaten var" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "%s taşınamadı" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Dosya adı boş olamaz." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "'%s' geçersiz bir dosya adı." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Hedef klasör taşındı veya silindi." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "%s ismi zaten %s klasöründe kullanılıyor. Lütfen farklı bir isim seçin." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Geçerli bir kaynak değil" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Sunucunun adresleri açma izi yok, lütfen sunucu yapılandırmasını denetleyin" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "%s, %s içine indirilirken hata" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Dosya oluşturulurken hata" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Klasör adı boş olamaz." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Klasör oluşturulurken hata" @@ -92,54 +92,54 @@ msgstr "Yükleme dizini tanımlanamadı." msgid "Invalid Token" msgstr "Geçersiz Simge" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Dosya yüklenmedi. Bilinmeyen hata" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Dosya başarıyla yüklendi, hata oluşmadı" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırı aşıldı." -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Yüklenecek dosyanın boyutu HTML formunda belirtilen MAX_FILE_SIZE limitini aşıyor" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Dosya kısmen karşıya yüklenebildi" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Hiç dosya gönderilmedi" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Geçici dizin eksik" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Diske yazılamadı" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Yeterli disk alanı yok" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Yükleme başarısız. Yüklenen dosya bulunamadı" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Yükleme başarısız. Dosya bilgisi alınamadı." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Geçersiz dizin." @@ -160,40 +160,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Yeterince boş alan yok. Gönderdiğiniz boyut {size1} ancak {size2} alan mevcut" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Yükleme iptal edildi." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Sunucudan sonuç alınamadı." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL boş olamaz" -#: js/file-upload.js:566 +#: js/file-upload.js:568 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:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} zaten mevcut" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Dosya oluşturulamadı" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Klasör oluşturulamadı" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Adres getirilirken hata" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 37e17b1006a..cb9da3017de 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" -"PO-Revision-Date: 2014-03-12 10:51+0000\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 19:31+0000\n" "Last-Translator: volkangezer <volkangezer@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -51,15 +51,15 @@ msgstr "E-posta gönderildi" msgid "You need to set your user email before being able to send test emails." msgstr "Sınama e-postaları göndermeden önce kullanıcı e-postasını ayarlamanız gerekiyor." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Gönderme kipi" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Şifreleme" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Kimlik doğrulama yöntemi" @@ -215,31 +215,31 @@ msgstr "Güncelleme" msgid "Updated" msgstr "Güncellendi" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Bir profil fotoğrafı seçin" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "Çok güçsüz parola" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "Güçsüz parola" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "Normal parola" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "İyi parola" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "Güçlü parola" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dosyaların şifresi çözülüyor... Lütfen bekleyin, bu biraz zaman alabilir." @@ -431,157 +431,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "Son cron %s zamanında çalıştırıldı." + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "Son cron %s zamanında çalıştırıldı. Bu bir saatten daha uzun bir süre, bir şeyler yanlış gibi görünüyor." + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "Cron henüz çalıştırılmadı!" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Yüklenen her sayfa ile bir görev çalıştır" -#: templates/admin.php:175 +#: templates/admin.php:192 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 kaydedilir." -#: templates/admin.php:183 +#: templates/admin.php:200 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:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Paylaşım" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Paylaşım API'sini etkinleştir" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Uygulamaların paylaşım API'sini kullanmasına izin ver" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Bağlantılara izin ver" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Kullanıcıların ögeleri paylaşması için herkese açık bağlantılara izin ver" -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Herkes tarafından yüklemeye izin ver" -#: templates/admin.php:212 +#: templates/admin.php:228 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:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Paylaşıma izin ver" -#: templates/admin.php:221 +#: templates/admin.php:236 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:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Kullanıcıların her şeyi paylaşmalarına izin ver" -#: templates/admin.php:231 +#: templates/admin.php:246 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:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Posta bilgilendirmesine izin ver" -#: templates/admin.php:239 +#: templates/admin.php:254 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:246 +#: templates/admin.php:261 msgid "Security" msgstr "Güvenlik" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "HTTPS bağlantısına zorla" -#: templates/admin.php:261 +#: templates/admin.php:276 #, 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:267 +#: templates/admin.php:282 #, 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:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "E-Posta Sunucusu" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "Bu, bildirimler gönderilirken kullanılır." -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Kimden adresi" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Kimlik doğrulama gerekli" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Sunucu adresi" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Kimlik Bilgileri" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "SMTP Kullanıcı Adı" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "SMTP Parolası" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "E-posta ayarlarını sına" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "E-posta gönder" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Günlük" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Günlük seviyesi" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Daha fazla" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Az" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Sürüm" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 29c83ca6b78..33a02856ebe 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/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: 2014-03-13 01:55-0400\n" -"PO-Revision-Date: 2014-03-12 10:51+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: volkangezer <volkangezer@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tzm/core.po b/l10n/tzm/core.po index 34fc73005c4..5188ffa1f44 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/tzm/settings.po b/l10n/tzm/settings.po index 2829e52b25f..c8ed5177a5a 100644 --- a/l10n/tzm/settings.po +++ b/l10n/tzm/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 47f2c79d9bb..a8ad67283df 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -528,6 +528,18 @@ msgstr "يېڭى ئىم" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "شەخسىي" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 6af595b22fa..99023de9b63 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "%s يۆتكىيەلمەيدۇ" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "ھېچقانداق ھۆججەت يۈكلەنمىدى. يوچۇن خاتالىق" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "ھېچقانداق ھۆججەت يۈكلەنمىدى" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "ۋاقىتلىق قىسقۇچ كەم." -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "دىسكىغا يازالمىدى" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "يېتەرلىك ساقلاش بوشلۇقى يوق" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "يۈكلەشتىن ۋاز كەچتى." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ھۆججەت يۈكلەش مەشغۇلاتى ئېلىپ بېرىلىۋاتىدۇ. Leaving the page now will cancel the upload." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} مەۋجۇت" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index da254c80a06..a304d79b2fc 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -48,15 +48,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "شىفىرلاش" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -212,31 +212,31 @@ msgstr "يېڭىلا" msgid "Updated" msgstr "يېڭىلاندى" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -333,18 +333,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "بىخەتەرلىك ئاگاھلاندۇرۇش" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -353,68 +353,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "ئاگاھلاندۇرۇش تەڭشەك" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "سىزنىڭ تور مۇلازىمېتىرىڭىز ھۆججەت قەدەمداشلاشقا يول قويىدىغان قىلىپ توغرا تەڭشەلمەپتۇ، چۈنكى WebDAV نىڭ ئېغىزى بۇزۇلغاندەك تۇرىدۇ." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "بۆلەك «ھۆججەت ئۇچۇرى» يوقالغان" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "ھەمبەھىر" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "بىخەتەرلىك" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "مۇلازىمېتىر ئادرىسى" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "ئېغىز" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "خاتىرە" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "خاتىرە دەرىجىسى" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "تېخىمۇ كۆپ" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "ئاز" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "نەشرى" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index a2672c92aaa..4ac58f58360 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index e64a98b639a..31bbc3a69de 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -539,6 +539,18 @@ msgstr "Новий пароль" msgid "Reset password" msgstr "Скинути пароль" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Особисте" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 7a3fd6f1cd4..310553d9484 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -18,66 +18,66 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Не вдалося перемістити %s - Файл з таким ім'ям вже існує" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Не вдалося перемістити %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr " Ім'я файлу не може бути порожнім." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Невірне ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не дозволені." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Ім'я теки не може бути порожнім." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -89,54 +89,54 @@ msgstr "Не вдалося встановити каталог завантаж msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Не завантажено жодного файлу. Невідома помилка" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Файл успішно вивантажено без помилок." -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Розмір звантаження перевищує upload_max_filesize параметра в php.ini: " -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Розмір відвантаженого файлу перевищує директиву MAX_FILE_SIZE вказану в HTML формі" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Файл відвантажено лише частково" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Не відвантажено жодного файлу" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Відсутній тимчасовий каталог" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Невдалося записати на диск" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Місця більше немає" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Невірний каталог." @@ -157,40 +157,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Завантаження перервано." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL не може бути порожнім" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} вже існує" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Не вдалося створити файл" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Не вдалося створити теку" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 5f9427f831c..3b7a588fc6d 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -48,15 +48,15 @@ msgstr "Ел. пошта надіслана" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Шифрування" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -212,31 +212,31 @@ msgstr "Оновити" msgid "Updated" msgstr "Оновлено" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -333,18 +333,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Попередження про небезпеку" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -353,68 +353,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Попередження при Налаштуванні" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш Web-сервер ще не налаштований належним чином для того, щоб дозволити синхронізацію файлів, через те що інтерфейс WebDAV, здається, зламаний." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Модуль 'fileinfo' відсутній" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP модуль 'fileinfo' відсутній. Ми наполегливо рекомендуємо увімкнути цей модуль, щоб отримати кращі результати при виявленні MIME-типів." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Локалізація не працює" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Інтернет-з'єднання не працює" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Виконати одне завдання для кожної завантаженої сторінки " -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Спільний доступ" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Увімкнути API спільного доступу" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Дозволити програмам використовувати API спільного доступу" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Дозволити посилання" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Дозволити користувачам відкривати спільний доступ до елементів за допомогою посилань" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Дозволити перевідкривати спільний доступ" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Дозволити користувачам знову відкривати спільний доступ до елементів, які вже відкриті для доступу" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Дозволити користувачам відкривати спільний доступ для всіх" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Дозволити користувачам відкривати спільний доступ лише для користувачів з їхньої групи" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Безпека" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Примусове застосування HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Адреса сервера" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Порт" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "Облікові дані" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Протокол" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Рівень протоколювання" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Більше" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Менше" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Версія" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 5aa076e5cb8..0e0f846c7ff 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/ur/core.po b/l10n/ur/core.po index 841019ffa64..4a075757d6a 100644 --- a/l10n/ur/core.po +++ b/l10n/ur/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/ur/settings.po b/l10n/ur/settings.po index d75ab573080..4461002aca5 100644 --- a/l10n/ur/settings.po +++ b/l10n/ur/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 0540a0b7c7d..dd41da4e86a 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -533,6 +533,18 @@ msgstr "نیا پاسورڈ" msgid "Reset password" msgstr "ری سیٹ پاسورڈ" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "ذاتی" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 415f5dbd057..302512f11a2 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/uz/core.po b/l10n/uz/core.po index 550fb51f9d5..7b8fa16a1d7 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -528,6 +528,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/uz/settings.po b/l10n/uz/settings.po index 19c7676cf7d..0e253ad5c70 100644 --- a/l10n/uz/settings.po +++ b/l10n/uz/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 71940b1c18e..48a4e5f7c78 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -532,6 +532,18 @@ msgstr "Mật khẩu mới" msgid "Reset password" msgstr "Khôi phục mật khẩu" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Cá nhân" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 04ec0176f0d..b049eef635c 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -21,66 +21,66 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Không thể di chuyển %s - Đã có tên tập tin này trên hệ thống" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Không thể di chuyển %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Tên file không được rỗng" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Tên không hợp lệ, '\\', '/', '<', '>', ':', '\"', '|', '?' và '*' thì không được phép dùng." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Tên %s đã được sử dụng trong thư mục %s. Hãy chọn tên khác." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Nguồn không hợp lệ" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server cấm mở URLs, vui lòng kiểm tra lại cấu hình server" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Lỗi trong trong quá trình tải %s từ %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Lỗi khi tạo file" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Tên thư mục không thể để trống" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Lỗi khi tạo thư mục" @@ -92,54 +92,54 @@ msgstr "Không thể thiết lập thư mục tải lên." msgid "Invalid Token" msgstr "Xác thực không hợp lệ" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Không có tập tin nào được tải lên. Lỗi không xác định" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Không có lỗi, các tập tin đã được tải lên thành công" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Tập tin được tải lên vượt quá MAX_FILE_SIZE được quy định trong mẫu HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Các tập tin được tải lên chỉ tải lên được một phần" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Chưa có file nào được tải lên" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Không tìm thấy thư mục tạm" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Không thể ghi " -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Không đủ không gian lưu trữ" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Tải lên thất bại. Không thể tìm thấy tập tin được tải lên" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Tải lên thất bại. Không thể có được thông tin tập tin." -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Thư mục không hợp lệ" @@ -160,40 +160,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Hủy tải lên" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Không thể nhận được kết quả từ máy chủ." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL không thể để trống" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} đã tồn tại" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Không thể tạo file" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Không thể tạo thư mục" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 2c2c6bfda32..fb289628500 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -48,15 +48,15 @@ msgstr "Email đã được gửi" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Mã hóa" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -212,31 +212,31 @@ msgstr "Cập nhật" msgid "Updated" msgstr "Đã cập nhật" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -333,18 +333,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Cảnh bảo bảo mật" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -353,68 +353,68 @@ msgid "" "root." msgstr "Thư mục và các tập tin của bạn có thể được truy cập từ Internet. Tập tin .htaccess không làm việc. Chúng tôi đề nghị bạn cấu hình ebserver ,phân quyền lại thư mục dữ liệu và cấp quyền truy cập hoặc di chuyển thư mục dữ liệu bên ngoài tài liệu gốc máy chủ web." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 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:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Chia sẻ" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Bật chia sẻ API" -#: templates/admin.php:191 +#: templates/admin.php:212 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:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Cho phép liên kết" -#: templates/admin.php:199 +#: templates/admin.php:220 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:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Cho phép chia sẻ lại" -#: templates/admin.php:217 +#: templates/admin.php:236 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:224 +#: templates/admin.php:243 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:227 +#: templates/admin.php:246 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:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Địa chỉ máy chủ" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Cổng" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "Giấy chứng nhận" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Log" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "hơn" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "ít" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Phiên bản" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index 6d8ab5dafc1..0874d51ffbd 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index f510ad5ce5a..0345cacc602 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -533,6 +533,18 @@ msgstr "新密码" msgid "Reset password" msgstr "重置密码" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "个人" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 11d8394772f..79cc25eb3ea 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -21,66 +21,66 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "无法移动 %s - 同名文件已存在" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "无法移动 %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "文件名不能为空。" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "文件名 %s 是已经在 %s 中存在的名称。请使用其他名称。" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "不是一个可用的源" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "服务器没有允许打开URL网址,请检查服务器配置" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "当下载 %s 到 %s 时出错" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "当创建文件是出错" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "文件夹名称不能为空" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "创建文件夹出错" @@ -92,54 +92,54 @@ msgstr "无法设置上传文件夹。" msgid "Invalid Token" msgstr "无效密匙" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "没有文件被上传。未知错误" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "文件上传成功,没有错误发生" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "上传文件大小已超过php.ini中upload_max_filesize所规定的值" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上传的文件长度超出了 HTML 表单中 MAX_FILE_SIZE 的限制" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "已上传文件只上传了部分(不完整)" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "没有文件被上传" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "缺少临时目录" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "写入磁盘失败" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "没有足够的存储空间" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "上传失败。不能发现上传的文件" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "上传失败。不能获取文件信息。" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "无效文件夹。" @@ -160,40 +160,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "上传已取消" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "不能从服务器得到结果" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL不能为空" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "主目录里 'Shared' 是系统预留目录名" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "不能创建文件" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "不能创建文件夹" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "获取URL出错" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 1ed696a2001..34e1ff4df24 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -54,15 +54,15 @@ msgstr "邮件已发送" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "加密" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -218,31 +218,31 @@ msgstr "更新" msgid "Updated" msgstr "已更新" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "正在解密文件... 请稍等,可能需要一些时间。" @@ -339,18 +339,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "安全警告" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -359,68 +359,68 @@ msgid "" "root." msgstr "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器以外。" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "设置警告" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "请认真检查<a href='%s'>安装指南</a>." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "模块'文件信息'丢失" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP模块'文件信息'丢失. 我们强烈建议启用此模块以便mime类型检测取得最佳结果." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "您的 PHP 版本不是最新版" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "本地化无法工作" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "因特网连接无法工作" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -429,162 +429,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "此服务器上没有可用的因特网连接. 这意味着某些特性将无法工作,例如挂载外部存储器, 提醒更新或安装第三方应用等. 从远程访问文件和发送提醒电子邮件也可能无法工作. 如果你想要ownCloud的所有特性, 我们建议启用此服务器的因特网连接." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "计划任务" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "每个页面加载后执行一个任务" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "使用系统 cron 服务每15分钟调用一次 cron.php 文件。" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "共享" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "启用共享API" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "允许应用软件使用共享API" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "允许链接" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "允许用户使用连接公开共享项目" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "允许公开上传" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "用户可让其他人上传到他的公开共享文件夹" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "允许再次共享" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "允许用户将共享给他们的项目再次共享" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "允许用户向任何人共享" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "允许用户只向同组用户共享" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "允许邮件通知" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "允许用户为共享的文件发送邮件通知" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "安全" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "强制使用 HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "强制客户端通过加密连接连接到%s。" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "请经由HTTPS连接到这个%s 实例来启用或禁用强制SSL." -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "服务器地址" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "端口" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "凭证" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "日志" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "日志级别" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "更多" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "更少" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "版本" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 723367bdbe1..79cecd9f5ea 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index ec37a019a1b..2b6ff7ae0db 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -528,6 +528,18 @@ msgstr "新密碼" msgid "Reset password" msgstr "重設密碼" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "個人" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 76b4c3ff60c..af3a338f965 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -17,66 +17,66 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index d4c6b39c80f..abc1f449b54 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -47,15 +47,15 @@ msgstr "郵件已傳" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "加密" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "連接埠" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 690f08e838e..67182c3f7e1 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 7e121bc9841..9595c3fa222 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+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" @@ -530,6 +530,18 @@ msgstr "新密碼" msgid "Reset password" msgstr "重設密碼" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "個人" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 48abe4ce14b..a83f1fff465 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" @@ -19,66 +19,66 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "無法移動 %s ,同名的檔案已經存在" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "無法移動 %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "檔名不能為空" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "檔名不合法,不允許 \\ / < > : \" | ? * 字元" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "%s 已經被使用於資料夾 %s ,請換一個名字" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "不是有效的來源" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "下載 %s 到 %s 失敗" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "建立檔案失敗" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "資料夾名稱不能留空" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "建立資料夾失敗" @@ -90,54 +90,54 @@ msgstr "無法設定上傳目錄" msgid "Invalid Token" msgstr "無效的 token" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "沒有檔案被上傳,原因未知" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "一切都順利,檔案上傳成功" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上傳的檔案大小超過 HTML 表單中 MAX_FILE_SIZE 的限制" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "只有檔案的一部分被上傳" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "沒有檔案被上傳" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "找不到暫存資料夾" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "寫入硬碟失敗" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "儲存空間不足" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "上傳失敗,找不到上傳的檔案" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "上傳失敗,無法取得檔案資訊" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "無效的資料夾" @@ -158,40 +158,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "上傳已取消" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "無法從伺服器取回結果" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "檔案上傳中,離開此頁面將會取消上傳。" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL 不能留空" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "在家目錄中不能使用「共享」作為檔名" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} 已經存在" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "無法建立檔案" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "無法建立資料夾" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index c1509ba9a82..963c82e52c7 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+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" @@ -48,15 +48,15 @@ msgstr "Email 已寄出" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "加密" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -212,31 +212,31 @@ msgstr "更新" msgid "Updated" msgstr "已更新" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "選擇大頭貼" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "檔案解密中,請稍候。" @@ -333,18 +333,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "安全性警告" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -353,68 +353,68 @@ msgid "" "root." msgstr "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "設定警告" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the <a href=\"%s\">installation guides</a>." msgstr "請參考<a href='%s'>安裝指南</a>。" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "遺失 'fileinfo' 模組" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "未偵測到 PHP 模組 'fileinfo'。我們強烈建議啟用這個模組以取得最好的 mime-type 支援。" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "語系無法運作" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, 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:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "無網際網路存取" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "這臺 ownCloud 伺服器沒有連接到網際網路,因此有些功能像是掛載外部儲存空間、更新 ownCloud 或應用程式的通知沒有辦法運作。透過網際網路存取檔案還有電子郵件通知可能也無法運作。如果想要 ownCloud 完整的功能,建議您將這臺伺服器連接至網際網路。" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "當頁面載入時,執行" -#: templates/admin.php:171 +#: templates/admin.php:192 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:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "使用系統的 cron 服務每15分鐘呼叫 cron.php 一次" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "分享" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "啟用分享 API" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "允許 apps 使用分享 API" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "允許連結" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "允許使用者以結連公開分享檔案" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "允許任何人上傳" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "允許使用者將他們公開分享的資料夾設定為「任何人皆可上傳」" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "允許轉貼分享" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "允許使用者分享其他使用者分享給他的檔案" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "允許使用者與任何人分享檔案" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "僅允許使用者在群組內分享" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "允許郵件通知" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "允許使用者分享檔案時寄出通知郵件" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "安全性" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "強制啟用 HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "強迫用戶端使用加密連線連接到 %s" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "請使用 HTTPS 連線到 %s 以啓用或停用強制 SSL 加密。" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "伺服器位址" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "連接埠" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "認證" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "紀錄" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "紀錄層級" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "更多" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "更少" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "版本" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 47eae57c809..f025e58cce9 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06: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" diff --git a/lib/base.php b/lib/base.php index cc710fc7207..15a3ec8bc8a 100644 --- a/lib/base.php +++ b/lib/base.php @@ -98,7 +98,9 @@ class OC { get_include_path() ); - if(defined('PHPUNIT_RUN') and PHPUNIT_RUN and is_dir(OC::$SERVERROOT . '/tests/config/')) { + if(defined('PHPUNIT_CONFIG_DIR')) { + self::$configDir = OC::$SERVERROOT . '/' . PHPUNIT_CONFIG_DIR . '/'; + } elseif(defined('PHPUNIT_RUN') and PHPUNIT_RUN and is_dir(OC::$SERVERROOT . '/tests/config/')) { self::$configDir = OC::$SERVERROOT . '/tests/config/'; } else { self::$configDir = OC::$SERVERROOT . '/config/'; @@ -547,16 +549,10 @@ class OC { OC_User::logout(); } - // Load Apps - // This includes plugins for users and filesystems as well - global $RUNTIME_NOAPPS; - global $RUNTIME_APPTYPES; - if (!$RUNTIME_NOAPPS && !self::checkUpgrade(false)) { - if ($RUNTIME_APPTYPES) { - OC_App::loadApps($RUNTIME_APPTYPES); - } else { - OC_App::loadApps(); - } + // Load minimum set of apps - which is filesystem, authentication and logging + if (!self::checkUpgrade(false)) { + OC_App::loadApps(array('authentication')); + OC_App::loadApps(array('filesystem', 'logging')); } //setup extra user backends @@ -657,10 +653,10 @@ class OC { */ public static function registerShareHooks() { if (\OC_Config::getValue('installed')) { - OC_Hook::connect('OC_User', 'post_deleteUser', 'OCP\Share', 'post_deleteUser'); - OC_Hook::connect('OC_User', 'post_addToGroup', 'OCP\Share', 'post_addToGroup'); - OC_Hook::connect('OC_User', 'post_removeFromGroup', 'OCP\Share', 'post_removeFromGroup'); - OC_Hook::connect('OC_User', 'post_deleteGroup', 'OCP\Share', 'post_deleteGroup'); + OC_Hook::connect('OC_User', 'post_deleteUser', 'OC\Share\Hooks', 'post_deleteUser'); + OC_Hook::connect('OC_User', 'post_addToGroup', 'OC\Share\Hooks', 'post_addToGroup'); + OC_Hook::connect('OC_User', 'post_removeFromGroup', 'OC\Share\Hooks', 'post_removeFromGroup'); + OC_Hook::connect('OC_User', 'post_deleteGroup', 'OC\Share\Hooks', 'post_deleteGroup'); } } @@ -849,7 +845,7 @@ class OC { ) { return false; } - OC_App::loadApps(array('authentication')); + if (defined("DEBUG") && DEBUG) { OC_Log::write('core', 'Trying to login from cookie', OC_Log::DEBUG); } @@ -921,7 +917,7 @@ class OC { ) { return false; } - OC_App::loadApps(array('authentication')); + if (OC_User::login($_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"])) { //OC_Log::write('core',"Logged in with HTTP Authentication", OC_Log::DEBUG); OC_User::unsetMagicInCookie(); @@ -932,11 +928,6 @@ class OC { } -// define runtime variables - unless this already has been done -if (!isset($RUNTIME_NOAPPS)) { - $RUNTIME_NOAPPS = false; -} - if (!function_exists('get_temp_dir')) { function get_temp_dir() { if ($temp = ini_get('upload_tmp_dir')) return $temp; @@ -955,4 +946,3 @@ if (!function_exists('get_temp_dir')) { } OC::init(); - diff --git a/lib/l10n/am_ET.php b/lib/l10n/am_ET.php new file mode 100644 index 00000000000..15f78e0bce6 --- /dev/null +++ b/lib/l10n/am_ET.php @@ -0,0 +1,8 @@ +<?php +$TRANSLATIONS = array( +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/ar.php b/lib/l10n/ar.php index bf9215e3506..6287a53d619 100644 --- a/lib/l10n/ar.php +++ b/lib/l10n/ar.php @@ -8,15 +8,22 @@ $TRANSLATIONS = array( "Users" => "المستخدمين", "Admin" => "المدير", "Failed to upgrade \"%s\"." => "خطا في ترقية \"%s\".", +"Unknown filetype" => "نوع الملف غير معروف", +"Invalid image" => "الصورة غير صالحة", "web services under your control" => "خدمات الشبكة تحت سيطرتك", "ZIP download is turned off." => "تحميل ملفات ZIP متوقف", "Files need to be downloaded one by one." => "الملفات بحاجة الى ان يتم تحميلها واحد تلو الاخر", "Back to Files" => "العودة الى الملفات", "Selected files too large to generate zip file." => "الملفات المحددة كبيرة جدا ليتم ضغطها في ملف zip", "No source specified when installing app" => "لم يتم تحديد المصدر عن تثبيت البرنامج", +"Archives of type %s are not supported" => "الأرشيفات من نوع %s غير مدعومة", +"App does not provide an info.xml file" => "التطبيق لا يتوفر على ملف info.xml", +"App directory already exists" => "مجلد التطبيق موجود مسبقا", +"Can't create app folder. Please fix permissions. %s" => "لا يمكن إنشاء مجلد التطبيق. يرجى تعديل الصلاحيات. %s", "Application is not enabled" => "التطبيق غير مفعّل", "Authentication error" => "لم يتم التأكد من الشخصية بنجاح", "Token expired. Please reload page." => "انتهت صلاحية الكلمة , يرجى اعادة تحميل الصفحة", +"Unknown user" => "المستخدم غير معروف", "Files" => "الملفات", "Text" => "معلومات إضافية", "Images" => "صور", @@ -25,8 +32,12 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s لا يسمح لك باستخدام نقطه (.) في اسم قاعدة البيانات", "MS SQL username and/or password not valid: %s" => "اسم المستخدم و/أو كلمة المرور لنظام MS SQL غير صحيح : %s", "You need to enter either an existing account or the administrator." => "انت بحاجة لكتابة اسم مستخدم موجود أو حساب المدير.", +"MySQL/MariaDB username and/or password not valid" => "اسم مستخدم أو كلمة مرور MySQL/MariaDB غير صحيحين", "DB Error: \"%s\"" => "خطأ في قواعد البيانات : \"%s\"", "Offending command was: \"%s\"" => "الأمر المخالف كان : \"%s\"", +"MySQL/MariaDB user '%s'@'localhost' exists already." => "مستخدم MySQL/MariaDB '%s'@'localhost' موجود مسبقا", +"Drop this user from MySQL/MariaDB." => "حذف هذا المستخدم من MySQL/MariaDB", +"Oracle connection could not be established" => "لم تنجح محاولة اتصال Oracle", "Oracle username and/or password not valid" => "اسم المستخدم و/أو كلمة المرور لنظام Oracle غير صحيح", "Offending command was: \"%s\", name: %s, password: %s" => "الأمر المخالف كان : \"%s\", اسم المستخدم : %s, كلمة المرور: %s", "PostgreSQL username and/or password not valid" => "اسم المستخدم / أو كلمة المرور الخاصة بـPostgreSQL غير صحيحة", @@ -34,6 +45,7 @@ $TRANSLATIONS = array( "Set an admin password." => "اعداد كلمة مرور للمدير", "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 <a href='%s'>installation guides</a>." => "الرجاء التحقق من <a href='%s'>دليل التنصيب</a>.", +"%s shared »%s« with you" => "%s شارك »%s« معك", "Could not find category \"%s\"" => "تعذر العثور على المجلد \"%s\"", "seconds ago" => "منذ ثواني", "_%n minute ago_::_%n minutes ago_" => array("","","","","",""), diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 7969060b2cd..6b5c8441ca1 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -44,9 +44,9 @@ $TRANSLATIONS = array( "DB Error: \"%s\"" => "Chyba databáze: \"%s\"", "Offending command was: \"%s\"" => "Příslušný příkaz byl: \"%s\"", "MySQL/MariaDB user '%s'@'localhost' exists already." => "MySQL/MariaDB uživatel '%s'@'localhost' již existuje.", -"Drop this user from MySQL/MariaDB" => "Zahodit uživatele z MySQL/MariaDB", +"Drop this user from MySQL/MariaDB" => "Smazat tohoto uživatele z MySQL/MariaDB", "MySQL/MariaDB user '%s'@'%%' already exists" => "MySQL/MariaDB uživatel '%s'@'%%' již existuje", -"Drop this user from MySQL/MariaDB." => "Zahodit uživatele z MySQL/MariaDB.", +"Drop this user from MySQL/MariaDB." => "Smazat tohoto uživatele z MySQL/MariaDB.", "Oracle connection could not be established" => "Spojení s Oracle nemohlo být navázáno", "Oracle username and/or password not valid" => "Uživatelské jméno či heslo Oracle není platné", "Offending command was: \"%s\", name: %s, password: %s" => "Příslušný příkaz byl: \"%s\", jméno: %s, heslo: %s", diff --git a/lib/l10n/da.php b/lib/l10n/da.php index 755033f8657..c3166000727 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -31,6 +31,7 @@ $TRANSLATIONS = array( "Application is not enabled" => "Programmet er ikke aktiveret", "Authentication error" => "Adgangsfejl", "Token expired. Please reload page." => "Adgang er udløbet. Genindlæs siden.", +"Unknown user" => "Ukendt bruger", "Files" => "Filer", "Text" => "SMS", "Images" => "Billeder", @@ -39,8 +40,13 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s du må ikke bruge punktummer i databasenavnet.", "MS SQL username and/or password not valid: %s" => "MS SQL brugernavn og/eller adgangskode ikke er gyldigt: %s", "You need to enter either an existing account or the administrator." => "Du bliver nødt til at indtaste en eksisterende bruger eller en administrator.", +"MySQL/MariaDB username and/or password not valid" => "Ugyldigt MySQL/MariaDB brugernavn og/eller kodeord ", "DB Error: \"%s\"" => "Databasefejl: \"%s\"", "Offending command was: \"%s\"" => "Fejlende kommando var: \"%s\"", +"MySQL/MariaDB user '%s'@'localhost' exists already." => "MySQL/MariaDB bruger '%s'@'localhost' eksistere allerede.", +"Drop this user from MySQL/MariaDB" => "Slet denne bruger fra MySQL/MariaDB", +"MySQL/MariaDB user '%s'@'%%' already exists" => "MySQL/MariaDB bruger '%s'@'%%' eksistere allerede", +"Drop this user from MySQL/MariaDB." => "Drop denne bruger fra MySQL/MariaDB.", "Oracle connection could not be established" => "Oracle forbindelsen kunne ikke etableres", "Oracle username and/or password not valid" => "Oracle brugernavn og/eller kodeord er ikke gyldigt.", "Offending command was: \"%s\", name: %s, password: %s" => "Fejlende kommando var: \"%s\", navn: %s, password: %s", diff --git a/lib/private/cache/file.php b/lib/private/cache/file.php index 8a6ef39f61b..be6805a9a57 100644 --- a/lib/private/cache/file.php +++ b/lib/private/cache/file.php @@ -1,6 +1,7 @@ <?php /** * Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl> + * Copyright (c) 2014 Vincent Petry <pvince81@owncloud.com> * This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. @@ -10,22 +11,22 @@ namespace OC\Cache; class File { protected $storage; + + /** + * Returns the cache storage for the logged in user + * @return cache storage + */ protected function getStorage() { if (isset($this->storage)) { return $this->storage; } if(\OC_User::isLoggedIn()) { \OC\Files\Filesystem::initMountPoints(\OC_User::getUser()); - $subdir = 'cache'; - $view = new \OC\Files\View('/' . \OC_User::getUser()); - if(!$view->file_exists($subdir)) { - $view->mkdir($subdir); - } - $this->storage = new \OC\Files\View('/' . \OC_User::getUser().'/'.$subdir); + $this->storage = new \OC\Files\View('/' . \OC_User::getUser() . '/cache'); return $this->storage; }else{ \OC_Log::write('core', 'Can\'t get cache storage, user not logged in', \OC_Log::ERROR); - return false; + throw new \OC\ForbiddenException('Can\t get cache storage, user not logged in'); } } diff --git a/lib/private/db/statementwrapper.php b/lib/private/db/statementwrapper.php index eaf215c7231..492209b883b 100644 --- a/lib/private/db/statementwrapper.php +++ b/lib/private/db/statementwrapper.php @@ -8,6 +8,11 @@ /** * small wrapper around \Doctrine\DBAL\Driver\Statement to make it behave, more like an MDB2 Statement + * + * @method boolean bindValue(mixed $param, mixed $value, integer $type = null); + * @method string errorCode(); + * @method array errorInfo(); + * @method integer rowCount(); */ class OC_DB_StatementWrapper { /** @@ -161,6 +166,8 @@ class OC_DB_StatementWrapper { /** * provide an alias for fetch + * + * @return mixed */ public function fetchRow() { return $this->statement->fetch(); @@ -168,12 +175,13 @@ class OC_DB_StatementWrapper { /** * Provide a simple fetchOne. + * * fetch single column from the next row - * @param int $colnum the column number to fetch + * @param int $column the column number to fetch * @return string */ - public function fetchOne($colnum = 0) { - return $this->statement->fetchColumn($colnum); + public function fetchOne($column = 0) { + return $this->statement->fetchColumn($column); } /** diff --git a/lib/private/files.php b/lib/private/files.php index 7e7a27f48dc..bfe6d3c02da 100644 --- a/lib/private/files.php +++ b/lib/private/files.php @@ -148,8 +148,9 @@ class OC_Files { set_time_limit($executionTime); } else { if ($xsendfile) { + $view = \OC\Files\Filesystem::getView(); /** @var $storage \OC\Files\Storage\Storage */ - list($storage) = \OC\Files\Filesystem::resolvePath($filename); + list($storage) = $view->resolvePath($filename); if ($storage->isLocal()) { self::addSendfileHeader(\OC\Files\Filesystem::getLocalFile($filename)); } else { diff --git a/lib/private/files/cache/cache.php b/lib/private/files/cache/cache.php index 9b18257088c..abc11e76470 100644 --- a/lib/private/files/cache/cache.php +++ b/lib/private/files/cache/cache.php @@ -498,9 +498,10 @@ class Cache { * update the folder size and the size of all parent folders * * @param string|boolean $path + * @param array $data (optional) meta data of the folder */ - public function correctFolderSize($path) { - $this->calculateFolderSize($path); + public function correctFolderSize($path, $data = null) { + $this->calculateFolderSize($path, $data); if ($path !== '') { $parent = dirname($path); if ($parent === '.' or $parent === '/') { @@ -514,11 +515,14 @@ class Cache { * get the size of a folder and set it in the cache * * @param string $path + * @param array $entry (optional) meta data of the folder * @return int */ - public function calculateFolderSize($path) { + public function calculateFolderSize($path, $entry = null) { $totalSize = 0; - $entry = $this->get($path); + if (is_null($entry) or !isset($entry['fileid'])) { + $entry = $this->get($path); + } if ($entry && $entry['mimetype'] === 'httpd/unix-directory') { $id = $entry['fileid']; $sql = 'SELECT SUM(`size`) AS f1, MIN(`size`) AS f2, ' . @@ -540,7 +544,7 @@ class Cache { if ($entry['size'] !== $totalSize) { $update['size'] = $totalSize; } - if ($entry['unencrypted_size'] !== $unencryptedSum) { + if (!isset($entry['unencrypted_size']) or $entry['unencrypted_size'] !== $unencryptedSum) { $update['unencrypted_size'] = $unencryptedSum; } if (count($update) > 0) { diff --git a/lib/private/files/cache/homecache.php b/lib/private/files/cache/homecache.php index 82f31d0867d..2326c46e8d0 100644 --- a/lib/private/files/cache/homecache.php +++ b/lib/private/files/cache/homecache.php @@ -13,15 +13,21 @@ class HomeCache extends Cache { * get the size of a folder and set it in the cache * * @param string $path + * @param array $entry (optional) meta data of the folder * @return int */ - public function calculateFolderSize($path) { + public function calculateFolderSize($path, $entry = null) { if ($path !== '/' and $path !== '' and $path !== 'files' and $path !== 'files_trashbin') { - return parent::calculateFolderSize($path); + return parent::calculateFolderSize($path, $entry); + } elseif ($path === '' or $path === '/') { + // since the size of / isn't used (the size of /files is used instead) there is no use in calculating it + return 0; } $totalSize = 0; - $entry = $this->get($path); + if (is_null($entry)) { + $entry = $this->get($path); + } if ($entry && $entry['mimetype'] === 'httpd/unix-directory') { $id = $entry['fileid']; $sql = 'SELECT SUM(`size`) AS f1, ' . @@ -45,6 +51,7 @@ class HomeCache extends Cache { /** * @param string $path + * @return array */ public function get($path) { $data = parent::get($path); diff --git a/lib/private/files/cache/scanner.php b/lib/private/files/cache/scanner.php index 92a4c01841b..79159724d16 100644 --- a/lib/private/files/cache/scanner.php +++ b/lib/private/files/cache/scanner.php @@ -155,7 +155,7 @@ class Scanner extends BasicEmitter { } } if (!empty($newData)) { - $this->cache->put($file, $newData); + $data['fileid'] = $this->cache->put($file, $newData); $this->emit('\OC\Files\Cache\Scanner', 'postScanFile', array($file, $this->storageId)); \OC_Hook::emit('\OC\Files\Cache\Scanner', 'post_scan_file', array('path' => $file, 'storage' => $this->storageId)); } @@ -173,14 +173,16 @@ class Scanner extends BasicEmitter { * @param string $path * @param bool $recursive * @param int $reuse - * @return int the size of the scanned folder or -1 if the size is unknown at this stage + * @return array with the meta data of the scanned file or folder */ public function scan($path, $recursive = self::SCAN_RECURSIVE, $reuse = -1) { if ($reuse === -1) { $reuse = ($recursive === self::SCAN_SHALLOW) ? self::REUSE_ETAG | self::REUSE_SIZE : 0; } - $this->scanFile($path, $reuse); - return $this->scanChildren($path, $recursive, $reuse); + $data = $this->scanFile($path, $reuse); + $size = $this->scanChildren($path, $recursive, $reuse); + $data['size'] = $size; + return $data; } /** diff --git a/lib/private/files/cache/updater.php b/lib/private/files/cache/updater.php index 7a45b9e9e96..199ce5dee78 100644 --- a/lib/private/files/cache/updater.php +++ b/lib/private/files/cache/updater.php @@ -38,8 +38,8 @@ class Updater { if ($storage) { $cache = $storage->getCache($internalPath); $scanner = $storage->getScanner($internalPath); - $scanner->scan($internalPath, Scanner::SCAN_SHALLOW); - $cache->correctFolderSize($internalPath); + $data = $scanner->scan($internalPath, Scanner::SCAN_SHALLOW); + $cache->correctFolderSize($internalPath, $data); self::correctFolder($path, $storage->filemtime($internalPath)); self::correctParentStorageMtime($storage, $internalPath); } @@ -119,6 +119,9 @@ class Updater { if ($uid != \OCP\User::getUser()) { $info = \OC\Files\Filesystem::getFileInfo($filename); + if (!$info) { + return array($uid, '/files/' . $filename); + } $ownerView = new \OC\Files\View('/' . $uid . '/files'); $filename = $ownerView->getPath($info['fileid']); } @@ -150,7 +153,7 @@ class Updater { $cache->update($id, array('mtime' => $time, 'etag' => $storage->getETag($internalPath))); if ($realPath !== '') { $realPath = dirname($realPath); - if($realPath === DIRECTORY_SEPARATOR ) { + if ($realPath === DIRECTORY_SEPARATOR) { $realPath = ""; } // check storage for parent in case we change the storage in this step diff --git a/lib/private/files/filesystem.php b/lib/private/files/filesystem.php index c31e0c38180..7e27650c557 100644 --- a/lib/private/files/filesystem.php +++ b/lib/private/files/filesystem.php @@ -321,11 +321,36 @@ class Filesystem { self::mount('\OC\Files\Storage\Local', array('datadir' => $root), $user); } + self::mountCacheDir($user); + // Chance to mount for other storages \OC_Hook::emit('OC_Filesystem', 'post_initMountPoints', array('user' => $user, 'user_dir' => $root)); } /** + * Mounts the cache directory + * @param string $user user name + */ + private static function mountCacheDir($user) { + $cacheBaseDir = \OC_Config::getValue('cache_path', ''); + if ($cacheBaseDir === '') { + // use local cache dir relative to the user's home + $subdir = 'cache'; + $view = new \OC\Files\View('/' . $user); + if(!$view->file_exists($subdir)) { + $view->mkdir($subdir); + } + } else { + $cacheDir = rtrim($cacheBaseDir, '/') . '/' . $user; + if (!file_exists($cacheDir)) { + mkdir($cacheDir, 0770, true); + } + // mount external cache dir to "/$user/cache" mount point + self::mount('\OC\Files\Storage\Local', array('datadir' => $cacheDir), '/' . $user . '/cache'); + } + } + + /** * get the default filesystem view * * @return View diff --git a/lib/private/files/storage/common.php b/lib/private/files/storage/common.php index 3c078d7b1b4..2b697141515 100644 --- a/lib/private/files/storage/common.php +++ b/lib/private/files/storage/common.php @@ -160,8 +160,7 @@ abstract class Common implements \OC\Files\Storage\Storage { public function hash($type, $path, $raw = false) { $tmpFile = $this->getLocalFile($path); - $hash = hash($type, $tmpFile, $raw); - unlink($tmpFile); + $hash = hash_file($type, $tmpFile, $raw); return $hash; } diff --git a/lib/private/files/storage/local.php b/lib/private/files/storage/local.php index a62230bdba5..571bf7f97c1 100644 --- a/lib/private/files/storage/local.php +++ b/lib/private/files/storage/local.php @@ -35,7 +35,7 @@ if (\OC_Util::runningOnWindows()) { } public function mkdir($path) { - return @mkdir($this->datadir . $path); + return @mkdir($this->datadir . $path, 0777, true); } public function rmdir($path) { @@ -256,7 +256,7 @@ if (\OC_Util::runningOnWindows()) { return 0; } - public function hash($path, $type, $raw = false) { + public function hash($type, $path, $raw = false) { return hash_file($type, $this->datadir . $path, $raw); } diff --git a/lib/private/files/storage/mappedlocal.php b/lib/private/files/storage/mappedlocal.php index 1bab3489a28..94ee28ca763 100644 --- a/lib/private/files/storage/mappedlocal.php +++ b/lib/private/files/storage/mappedlocal.php @@ -31,7 +31,7 @@ class MappedLocal extends \OC\Files\Storage\Common{ return 'local::'.$this->datadir; } public function mkdir($path) { - return @mkdir($this->buildPath($path)); + return @mkdir($this->buildPath($path), 0777, true); } public function rmdir($path) { try { @@ -276,7 +276,7 @@ class MappedLocal extends \OC\Files\Storage\Common{ return 0; } - public function hash($path, $type, $raw=false) { + public function hash($type, $path, $raw=false) { return hash_file($type, $this->buildPath($path), $raw); } diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 2dbbf5b88c9..f06c2fcd66c 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -25,6 +25,8 @@ namespace OC\Files; +use OC\Files\Cache\Updater; + class View { private $fakeRoot = ''; private $internal_path_cache = array(); @@ -308,6 +310,9 @@ class View { fclose($target); fclose($data); if ($this->shouldEmitHooks($path) && $result !== false) { + Updater::writeHook(array( + 'path' => $this->getHookPath($path) + )); if (!$exists) { \OC_Hook::emit( Filesystem::CLASSNAME, @@ -433,6 +438,7 @@ class View { } if ($this->shouldEmitHooks() && (Cache\Scanner::isPartialFile($path1) && !Cache\Scanner::isPartialFile($path2)) && $result !== false) { // if it was a rename from a part file to a regular file it was a write and not a rename operation + Updater::writeHook(array('path' => $this->getHookPath($path2))); \OC_Hook::emit( Filesystem::CLASSNAME, Filesystem::signal_post_write, @@ -441,6 +447,10 @@ class View { ) ); } elseif ($this->shouldEmitHooks() && $result !== false) { + Updater::renameHook(array( + 'oldpath' => $this->getHookPath($path1), + 'newpath' => $this->getHookPath($path2) + )); \OC_Hook::emit( Filesystem::CLASSNAME, Filesystem::signal_post_rename, @@ -741,7 +751,10 @@ class View { } /** + * @param string[] $hooks * @param string $path + * @param bool $post + * @return bool */ private function runHooks($hooks, $path, $post = false) { $path = $this->getHookPath($path); @@ -749,6 +762,16 @@ class View { $run = true; if ($this->shouldEmitHooks($path)) { foreach ($hooks as $hook) { + // manually triger updater hooks to ensure they are called first + if ($post) { + if ($hook == 'write') { + Updater::writeHook(array('path' => $path)); + } elseif ($hook == 'touch') { + Updater::touchHook(array('path' => $path)); + } else if ($hook == 'delete') { + Updater::deleteHook(array('path' => $path)); + } + } if ($hook != 'read') { \OC_Hook::emit( Filesystem::CLASSNAME, @@ -820,7 +843,7 @@ class View { $data = $cache->get($internalPath); } - if ($data and $data['fileid']) { + if ($data and isset($data['fileid'])) { if ($includeMountPoints and $data['mimetype'] === 'httpd/unix-directory') { //add the sizes of other mountpoints to the folder $mountPoints = Filesystem::getMountPoints($path); diff --git a/lib/private/forbiddenexception.php b/lib/private/forbiddenexception.php new file mode 100644 index 00000000000..14a4cd14984 --- /dev/null +++ b/lib/private/forbiddenexception.php @@ -0,0 +1,16 @@ +<?php +/** + * Copyright (c) 2014 Vincent Petry <pvince81@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC; + +/** + * Exception thrown whenever access to a resource has + * been forbidden or whenever a user isn't authenticated. + */ +class ForbiddenException extends \Exception { +} diff --git a/lib/private/mail.php b/lib/private/mail.php index 9605290fe57..79f51609631 100644 --- a/lib/private/mail.php +++ b/lib/private/mail.php @@ -73,6 +73,7 @@ class OC_Mail { $mailo->FromName = $fromname;; $mailo->Sender = $fromaddress; try { + $toaddress = self::buildAsciiEmail($toaddress); $mailo->AddAddress($toaddress, $toname); if($ccaddress<>'') $mailo->AddCC($ccaddress, $ccname); @@ -124,7 +125,23 @@ class OC_Mail { * @param string $emailAddress a given email address to be validated * @return bool */ - public static function ValidateAddress($emailAddress) { + public static function validateAddress($emailAddress) { + $emailAddress = self::buildAsciiEmail($emailAddress); return PHPMailer::ValidateAddress($emailAddress); } + + /** + * IDN domains will be properly converted to ascii domains. + * + * @param string $emailAddress + * @return string + */ + public static function buildAsciiEmail($emailAddress) { + + list($name, $domain) = explode('@', $emailAddress, 2); + $domain = idn_to_ascii($domain); + + return "$name@$domain"; + } + } diff --git a/lib/private/route/cachingrouter.php b/lib/private/route/cachingrouter.php new file mode 100644 index 00000000000..ad25372391f --- /dev/null +++ b/lib/private/route/cachingrouter.php @@ -0,0 +1,43 @@ +<?php +/** + * Copyright (c) 2014 Robin Appelman <icewind@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Route; + +class CachingRouter extends Router { + /** + * @var \OCP\ICache + */ + protected $cache; + + /** + * @param \OCP\ICache $cache + */ + public function __construct($cache) { + $this->cache = $cache; + parent::__construct(); + } + + /** + * Generate url based on $name and $parameters + * + * @param string $name Name of the route to use. + * @param array $parameters Parameters for the route + * @param bool $absolute + * @return string + */ + public function generate($name, $parameters = array(), $absolute = false) { + $key = $name . json_encode($parameters) . $absolute; + if ($this->cache->hasKey($key)) { + return $this->cache->get($key); + } else { + $url = parent::generate($name, $parameters, $absolute); + $this->cache->set($key, $url, 3600); + return $url; + } + } +} diff --git a/lib/private/route/router.php b/lib/private/route/router.php index 60ba5878401..1f0a23ee124 100644 --- a/lib/private/route/router.php +++ b/lib/private/route/router.php @@ -47,6 +47,8 @@ class Router implements IRouter { protected $loaded = false; + protected $loadedApps = array(); + public function __construct() { $baseUrl = \OC_Helper::linkTo('', 'index.php'); if (!\OC::$CLI) { @@ -93,27 +95,46 @@ class Router implements IRouter { /** * loads the api routes */ - public function loadRoutes() { + public function loadRoutes($app = null) { if ($this->loaded) { return; } - $this->loaded = true; - foreach ($this->getRoutingFiles() as $app => $file) { - $this->useCollection($app); - require_once $file; - $collection = $this->getCollection($app); - $collection->addPrefix('/apps/' . $app); + if (is_null($app)) { + $this->loaded = true; + $routingFiles = $this->getRoutingFiles(); + } else { + if (isset($this->loadedApps[$app])) { + return; + } + $file = \OC_App::getAppPath($app) . '/appinfo/routes.php'; + if (file_exists($file)) { + $routingFiles = array($app => $file); + } else { + $routingFiles = array(); + } + } + foreach ($routingFiles as $app => $file) { + if (!isset($this->loadedApps[$app])) { + $this->loadedApps[$app] = true; + $this->useCollection($app); + require_once $file; + $collection = $this->getCollection($app); + $collection->addPrefix('/apps/' . $app); + $this->root->addCollection($collection); + } + } + if (!isset($this->loadedApps['core'])) { + $this->loadedApps['core'] = true; + $this->useCollection('root'); + require_once 'settings/routes.php'; + require_once 'core/routes.php'; + + // include ocs routes + require_once 'ocs/routes.php'; + $collection = $this->getCollection('ocs'); + $collection->addPrefix('/ocs'); $this->root->addCollection($collection); } - $this->useCollection('root'); - require_once 'settings/routes.php'; - require_once 'core/routes.php'; - - // include ocs routes - require_once 'ocs/routes.php'; - $collection = $this->getCollection('ocs'); - $collection->addPrefix('/ocs'); - $this->root->addCollection($collection); } /** @@ -152,12 +173,21 @@ class Router implements IRouter { } /** - * Find the route matching $url. + * Find the route matching $url * * @param string $url The url to find * @throws \Exception */ public function match($url) { + if (substr($url, 0, 6) === '/apps/') { + // empty string / 'apps' / $app / rest of the route + list(, , $app,) = explode('/', $url, 4); + $this->loadRoutes($app); + } else if (substr($url, 0, 6) === '/core/' or substr($url, 0, 5) === '/ocs/' or substr($url, 0, 10) === '/settings/') { + $this->loadRoutes('core'); + } else { + $this->loadRoutes(); + } $matcher = new UrlMatcher($this->root, $this->context); $parameters = $matcher->match($url); if (isset($parameters['action'])) { @@ -196,6 +226,7 @@ class Router implements IRouter { * @return string */ public function generate($name, $parameters = array(), $absolute = false) { + $this->loadRoutes(); return $this->getGenerator()->generate($name, $parameters, $absolute); } diff --git a/lib/private/server.php b/lib/private/server.php index 8c9ea39c562..5c83f3ef495 100644 --- a/lib/private/server.php +++ b/lib/private/server.php @@ -159,7 +159,15 @@ class Server extends SimpleContainer implements IServerContainer { return new \OC\BackgroundJob\JobList($c->getDatabaseConnection(), $config); }); $this->registerService('Router', function ($c){ - $router = new \OC\Route\Router(); + /** + * @var Server $c + */ + $cacheFactory = $c->getMemCacheFactory(); + if ($cacheFactory->isAvailable()) { + $router = new \OC\Route\CachingRouter($cacheFactory->create('route')); + } else { + $router = new \OC\Route\Router(); + } return $router; }); } @@ -327,7 +335,7 @@ class Server extends SimpleContainer implements IServerContainer { /** * Returns an \OCP\CacheFactory instance * - * @return \OCP\CacheFactory + * @return \OCP\ICacheFactory */ function getMemCacheFactory() { return $this->query('MemCacheFactory'); @@ -375,8 +383,6 @@ class Server extends SimpleContainer implements IServerContainer { * @return \OCP\Route\IRouter */ function getRouter(){ - $router = $this->query('Router'); - $router->loadRoutes(); - return $router; + return $this->query('Router'); } } diff --git a/lib/private/share/constants.php b/lib/private/share/constants.php new file mode 100644 index 00000000000..7e4223d10fa --- /dev/null +++ b/lib/private/share/constants.php @@ -0,0 +1,44 @@ +<?php +/** + * ownCloud + * + * @author Bjoern Schiessle + * @copyright 2014 Bjoern Schiessle <schiessle@owncloud.com> + * + * 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 <http://www.gnu.org/licenses/>. + */ + +namespace OC\Share; + +class Constants { + + const SHARE_TYPE_USER = 0; + const SHARE_TYPE_GROUP = 1; + const SHARE_TYPE_LINK = 3; + const SHARE_TYPE_EMAIL = 4; + const SHARE_TYPE_CONTACT = 5; + const SHARE_TYPE_REMOTE = 6; + + const FORMAT_NONE = -1; + const FORMAT_STATUSES = -2; + const FORMAT_SOURCES = -3; + + const TOKEN_LENGTH = 32; // see db_structure.xml + + protected static $shareTypeUserAndGroups = -1; + protected static $shareTypeGroupUserUnique = 2; + protected static $backends = array(); + protected static $backendTypes = array(); + protected static $isResharingAllowed; +} diff --git a/lib/private/share/helper.php b/lib/private/share/helper.php new file mode 100644 index 00000000000..fde55667281 --- /dev/null +++ b/lib/private/share/helper.php @@ -0,0 +1,202 @@ +<?php +/** + * ownCloud + * + * @author Bjoern Schiessle + * @copyright 2014 Bjoern Schiessle <schiessle@owncloud.com> + * + * 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 <http://www.gnu.org/licenses/>. + */ + +namespace OC\Share; + +class Helper extends \OC\Share\Constants { + + /** + * Generate a unique target for the item + * @param string Item type + * @param string Item source + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string User or group the item is being shared with + * @param string User that is the owner of shared item + * @param string The suggested target originating from a reshare (optional) + * @param int The id of the parent group share (optional) + * @return string Item target + */ + public static function generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, + $suggestedTarget = null, $groupParent = null) { + $backend = \OC\Share\Share::getBackend($itemType); + if ($shareType == self::SHARE_TYPE_LINK) { + if (isset($suggestedTarget)) { + return $suggestedTarget; + } + return $backend->generateTarget($itemSource, false); + } else { + if ($itemType == 'file' || $itemType == 'folder') { + $column = 'file_target'; + $columnSource = 'file_source'; + } else { + $column = 'item_target'; + $columnSource = 'item_source'; + } + if ($shareType == self::SHARE_TYPE_USER) { + // Share with is a user, so set share type to user and groups + $shareType = self::$shareTypeUserAndGroups; + $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith)); + } else { + $userAndGroups = false; + } + $exclude = null; + // Backend has 3 opportunities to generate a unique target + for ($i = 0; $i < 2; $i++) { + // Check if suggested target exists first + if ($i == 0 && isset($suggestedTarget)) { + $target = $suggestedTarget; + } else { + if ($shareType == self::SHARE_TYPE_GROUP) { + $target = $backend->generateTarget($itemSource, false, $exclude); + } else { + $target = $backend->generateTarget($itemSource, $shareWith, $exclude); + } + if (is_array($exclude) && in_array($target, $exclude)) { + break; + } + } + // Check if target already exists + $checkTarget = \OC\Share\Share::getItems($itemType, $target, $shareType, $shareWith); + if (!empty($checkTarget)) { + foreach ($checkTarget as $item) { + // Skip item if it is the group parent row + if (isset($groupParent) && $item['id'] == $groupParent) { + if (count($checkTarget) == 1) { + return $target; + } else { + continue; + } + } + if ($item['uid_owner'] == $uidOwner) { + if ($itemType == 'file' || $itemType == 'folder') { + $meta = \OC\Files\Filesystem::getFileInfo($itemSource); + if ($item['file_source'] == $meta['fileid']) { + return $target; + } + } else if ($item['item_source'] == $itemSource) { + return $target; + } + } + } + if (!isset($exclude)) { + $exclude = array(); + } + // Find similar targets to improve backend's chances to generate a unqiue target + if ($userAndGroups) { + if ($column == 'file_target') { + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' + .' WHERE `item_type` IN (\'file\', \'folder\')' + .' AND `share_type` IN (?,?,?)' + .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); + $result = $checkTargets->execute(array(self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, + self::$shareTypeGroupUserUnique)); + } else { + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' + .' WHERE `item_type` = ? AND `share_type` IN (?,?,?)' + .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); + $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_USER, + self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique)); + } + } else { + if ($column == 'file_target') { + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' + .' WHERE `item_type` IN (\'file\', \'folder\')' + .' AND `share_type` = ? AND `share_with` = ?'); + $result = $checkTargets->execute(array(self::SHARE_TYPE_GROUP, $shareWith)); + } else { + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' + .' WHERE `item_type` = ? AND `share_type` = ? AND `share_with` = ?'); + $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_GROUP, $shareWith)); + } + } + while ($row = $result->fetchRow()) { + $exclude[] = $row[$column]; + } + } else { + return $target; + } + } + } + $message = 'Sharing backend registered for '.$itemType.' did not generate a unique target for '.$itemSource; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + + /** + * Delete all reshares of an item + * @param int Id of item to delete + * @param bool If true, exclude the parent from the delete (optional) + * @param string The user that the parent was shared with (optinal) + */ + public static function delete($parent, $excludeParent = false, $uidOwner = null) { + $ids = array($parent); + $parents = array($parent); + while (!empty($parents)) { + $parents = "'".implode("','", $parents)."'"; + // Check the owner on the first search of reshares, useful for + // finding and deleting the reshares by a single user of a group share + if (count($ids) == 1 && isset($uidOwner)) { + $query = \OC_DB::prepare('SELECT `id`, `uid_owner`, `item_type`, `item_target`, `parent`' + .' FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.') AND `uid_owner` = ?'); + $result = $query->execute(array($uidOwner)); + } else { + $query = \OC_DB::prepare('SELECT `id`, `item_type`, `item_target`, `parent`, `uid_owner`' + .' FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.')'); + $result = $query->execute(); + } + // Reset parents array, only go through loop again if items are found + $parents = array(); + while ($item = $result->fetchRow()) { + // Search for a duplicate parent share, this occurs when an + // item is shared to the same user through a group and user or the + // same item is shared by different users + $userAndGroups = array_merge(array($item['uid_owner']), \OC_Group::getUserGroups($item['uid_owner'])); + $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share`' + .' WHERE `item_type` = ?' + .' AND `item_target` = ?' + .' AND `share_type` IN (?,?,?)' + .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')' + .' AND `uid_owner` != ? AND `id` != ?'); + $duplicateParent = $query->execute(array($item['item_type'], $item['item_target'], + self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique, + $item['uid_owner'], $item['parent']))->fetchRow(); + if ($duplicateParent) { + // Change the parent to the other item id if share permission is granted + if ($duplicateParent['permissions'] & \OCP\PERMISSION_SHARE) { + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `parent` = ? WHERE `id` = ?'); + $query->execute(array($duplicateParent['id'], $item['id'])); + continue; + } + } + $ids[] = $item['id']; + $parents[] = $item['id']; + } + } + if ($excludeParent) { + unset($ids[0]); + } + if (!empty($ids)) { + $ids = "'".implode("','", $ids)."'"; + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `id` IN ('.$ids.')'); + $query->execute(); + } + } +} diff --git a/lib/private/share/hooks.php b/lib/private/share/hooks.php new file mode 100644 index 00000000000..a33c71eedd2 --- /dev/null +++ b/lib/private/share/hooks.php @@ -0,0 +1,108 @@ +<?php +/** + * ownCloud + * + * @author Bjoern Schiessle + * @copyright 2014 Bjoern Schiessle <schiessle@owncloud.com> + * + * 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 <http://www.gnu.org/licenses/>. + */ + +namespace OC\Share; + +class Hooks extends \OC\Share\Constants { + /** + * Function that is called after a user is deleted. Cleans up the shares of that user. + * @param array arguments + */ + public static function post_deleteUser($arguments) { + // Delete any items shared with the deleted user + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share`' + .' WHERE `share_with` = ? AND `share_type` = ? OR `share_type` = ?'); + $result = $query->execute(array($arguments['uid'], self::SHARE_TYPE_USER, self::$shareTypeGroupUserUnique)); + // Delete any items the deleted user shared + $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `uid_owner` = ?'); + $result = $query->execute(array($arguments['uid'])); + while ($item = $result->fetchRow()) { + Helper::delete($item['id']); + } + } + + /** + * Function that is called after a user is added to a group. + * TODO what does it do? + * @param array arguments + */ + public static function post_addToGroup($arguments) { + // Find the group shares and check if the user needs a unique target + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'); + $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid'])); + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`,' + .' `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`,' + .' `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)'); + while ($item = $result->fetchRow()) { + if ($item['item_type'] == 'file' || $item['item_type'] == 'file') { + $itemTarget = null; + } else { + $itemTarget = Helper::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, + $arguments['uid'], $item['uid_owner'], $item['item_target'], $item['id']); + } + if (isset($item['file_source'])) { + $fileTarget = Helper::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, + $arguments['uid'], $item['uid_owner'], $item['file_target'], $item['id']); + } else { + $fileTarget = null; + } + // Insert an extra row for the group share if the item or file target is unique for this user + if ($itemTarget != $item['item_target'] || $fileTarget != $item['file_target']) { + $query->execute(array($item['item_type'], $item['item_source'], $itemTarget, $item['id'], + self::$shareTypeGroupUserUnique, $arguments['uid'], $item['uid_owner'], $item['permissions'], + $item['stime'], $item['file_source'], $fileTarget)); + \OC_DB::insertid('*PREFIX*share'); + } + } + } + + /** + * Function that is called after a user is removed from a group. Shares are cleaned up. + * @param array arguments + */ + public static function post_removeFromGroup($arguments) { + $sql = 'SELECT `id`, `share_type` FROM `*PREFIX*share`' + .' WHERE (`share_type` = ? AND `share_with` = ?) OR (`share_type` = ? AND `share_with` = ?)'; + $result = \OC_DB::executeAudited($sql, array(self::SHARE_TYPE_GROUP, $arguments['gid'], + self::$shareTypeGroupUserUnique, $arguments['uid'])); + while ($item = $result->fetchRow()) { + if ($item['share_type'] == self::SHARE_TYPE_GROUP) { + // Delete all reshares by this user of the group share + Helper::delete($item['id'], true, $arguments['uid']); + } else { + Helper::delete($item['id']); + } + } + } + + /** + * Function that is called after a group is removed. Cleans up the shares to that group. + * @param array arguments + */ + public static function post_deleteGroup($arguments) { + $sql = 'SELECT `id` FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'; + $result = \OC_DB::executeAudited($sql, array(self::SHARE_TYPE_GROUP, $arguments['gid'])); + while ($item = $result->fetchRow()) { + Helper::delete($item['id']); + } + } + +} diff --git a/lib/private/share/share.php b/lib/private/share/share.php new file mode 100644 index 00000000000..8238797600e --- /dev/null +++ b/lib/private/share/share.php @@ -0,0 +1,1619 @@ +<?php +/** + * ownCloud + * + * @author Bjoern Schiessle, Michael Gapczynski + * @copyright 2012 Michael Gapczynski <mtgap@owncloud.com> + * 2014 Bjoern Schiessle <schiessle@owncloud.com> + * + * 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 <http://www.gnu.org/licenses/>. + */ + +namespace OC\Share; + +/** + * This class provides the ability for apps to share their content between users. + * Apps must create a backend class that implements OCP\Share_Backend and register it with this class. + * + * It provides the following hooks: + * - post_shared + */ +class Share extends \OC\Share\Constants { + + /** CRUDS permissions (Create, Read, Update, Delete, Share) using a bitmask + * Construct permissions for share() and setPermissions with Or (|) e.g. + * Give user read and update permissions: PERMISSION_READ | PERMISSION_UPDATE + * + * Check if permission is granted with And (&) e.g. Check if delete is + * granted: if ($permissions & PERMISSION_DELETE) + * + * Remove permissions with And (&) and Not (~) e.g. Remove the update + * permission: $permissions &= ~PERMISSION_UPDATE + * + * Apps are required to handle permissions on their own, this class only + * stores and manages the permissions of shares + * @see lib/public/constants.php + */ + + /** + * Register a sharing backend class that implements OCP\Share_Backend for an item type + * @param string Item type + * @param string Backend class + * @param string (optional) Depends on item type + * @param array (optional) List of supported file extensions if this item type depends on files + * @return Returns true if backend is registered or false if error + */ + public static function registerBackend($itemType, $class, $collectionOf = null, $supportedFileExtensions = null) { + if (self::isEnabled()) { + if (!isset(self::$backendTypes[$itemType])) { + self::$backendTypes[$itemType] = array( + 'class' => $class, + 'collectionOf' => $collectionOf, + 'supportedFileExtensions' => $supportedFileExtensions + ); + if(count(self::$backendTypes) === 1) { + \OC_Util::addScript('core', 'share'); + \OC_Util::addStyle('core', 'share'); + } + return true; + } + \OC_Log::write('OCP\Share', + 'Sharing backend '.$class.' not registered, '.self::$backendTypes[$itemType]['class'] + .' is already registered for '.$itemType, + \OC_Log::WARN); + } + return false; + } + + /** + * Check if the Share API is enabled + * @return Returns true if enabled or false + * + * The Share API is enabled by default if not configured + */ + public static function isEnabled() { + if (\OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes') == 'yes') { + return true; + } + return false; + } + + /** + * Find which users can access a shared item + * @param $path to the file + * @param $user owner of the file + * @param include owner to the list of users with access to the file + * @return array + * @note $path needs to be relative to user data dir, e.g. 'file.txt' + * not '/admin/data/file.txt' + */ + public static function getUsersSharingFile($path, $user, $includeOwner = false) { + + $shares = array(); + $publicShare = false; + $source = -1; + $cache = false; + + $view = new \OC\Files\View('/' . $user . '/files'); + if ($view->file_exists($path)) { + $meta = $view->getFileInfo($path); + } else { + // if the file doesn't exists yet we start with the parent folder + $meta = $view->getFileInfo(dirname($path)); + } + + if($meta !== false) { + $source = $meta['fileid']; + $cache = new \OC\Files\Cache\Cache($meta['storage']); + } + + while ($source !== -1) { + + // Fetch all shares with another user + $query = \OC_DB::prepare( + 'SELECT `share_with` + FROM + `*PREFIX*share` + WHERE + `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' + ); + + $result = $query->execute(array($source, self::SHARE_TYPE_USER)); + + if (\OCP\DB::isError($result)) { + \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); + } else { + while ($row = $result->fetchRow()) { + $shares[] = $row['share_with']; + } + } + // We also need to take group shares into account + + $query = \OC_DB::prepare( + 'SELECT `share_with` + FROM + `*PREFIX*share` + WHERE + `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' + ); + + $result = $query->execute(array($source, self::SHARE_TYPE_GROUP)); + + if (\OCP\DB::isError($result)) { + \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); + } else { + while ($row = $result->fetchRow()) { + $usersInGroup = \OC_Group::usersInGroup($row['share_with']); + $shares = array_merge($shares, $usersInGroup); + } + } + + //check for public link shares + if (!$publicShare) { + $query = \OC_DB::prepare( + 'SELECT `share_with` + FROM + `*PREFIX*share` + WHERE + `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' + ); + + $result = $query->execute(array($source, self::SHARE_TYPE_LINK)); + + if (\OCP\DB::isError($result)) { + \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); + } else { + if ($result->fetchRow()) { + $publicShare = true; + } + } + } + + // let's get the parent for the next round + $meta = $cache->get((int)$source); + if($meta !== false) { + $source = (int)$meta['parent']; + } else { + $source = -1; + } + } + // Include owner in list of users, if requested + if ($includeOwner) { + $shares[] = $user; + } + + return array("users" => array_unique($shares), "public" => $publicShare); + } + + /** + * Get the items of item type shared with the current user + * @param string Item type + * @param int Format (optional) Format type must be defined by the backend + * @param mixed Parameters (optional) + * @param int Number of items to return (optional) Returns all by default + * @param bool include collections (optional) + * @return Return depends on format + */ + public static function getItemsSharedWith($itemType, $format = self::FORMAT_NONE, + $parameters = null, $limit = -1, $includeCollections = false) { + return self::getItems($itemType, null, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, + $parameters, $limit, $includeCollections); + } + + /** + * Get the item of item type shared with the current user + * @param string $itemType + * @param string $itemTarget + * @param int $format (optional) Format type must be defined by the backend + * @param mixed Parameters (optional) + * @param bool include collections (optional) + * @return Return depends on format + */ + public static function getItemSharedWith($itemType, $itemTarget, $format = self::FORMAT_NONE, + $parameters = null, $includeCollections = false) { + return self::getItems($itemType, $itemTarget, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, + $parameters, 1, $includeCollections); + } + + /** + * Get the item of item type shared with a given user by source + * @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 + */ + public static function getItemSharedWithUser($itemType, $itemSource, $user) { + + $shares = array(); + + // first check if there is a db entry for the specific user + $query = \OC_DB::prepare( + 'SELECT `file_target`, `permissions`, `expiration` + FROM + `*PREFIX*share` + WHERE + `item_source` = ? AND `item_type` = ? AND `share_with` = ?' + ); + + $result = \OC_DB::executeAudited($query, array($itemSource, $itemType, $user)); + + while ($row = $result->fetchRow()) { + $shares[] = $row; + } + + //if didn't found a result than let's look for a group share. + if(empty($shares)) { + $groups = \OC_Group::getUserGroups($user); + + $query = \OC_DB::prepare( + 'SELECT `file_target`, `permissions`, `expiration` + FROM + `*PREFIX*share` + WHERE + `item_source` = ? AND `item_type` = ? AND `share_with` in (?)' + ); + + $result = \OC_DB::executeAudited($query, array($itemSource, $itemType, implode(',', $groups))); + + while ($row = $result->fetchRow()) { + $shares[] = $row; + } + } + + return $shares; + + } + + /** + * Get the item of item type shared with the current user by source + * @param string Item type + * @param string Item source + * @param int Format (optional) Format type must be defined by the backend + * @param mixed Parameters + * @param bool include collections + * @return Return depends on format + */ + public static function getItemSharedWithBySource($itemType, $itemSource, $format = self::FORMAT_NONE, + $parameters = null, $includeCollections = false) { + return self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, + $parameters, 1, $includeCollections, true); + } + + /** + * Get the item of item type shared by a link + * @param string Item type + * @param string Item source + * @param string Owner of link + * @return Item + */ + public static function getItemSharedWithByLink($itemType, $itemSource, $uidOwner) { + return self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, $uidOwner, self::FORMAT_NONE, + null, 1); + } + + /** + * Based on the given token the share information will be returned - password protected shares will be verified + * @param string $token + * @return array | bool false will be returned in case the token is unknown or unauthorized + */ + public static function getShareByToken($token, $checkPasswordProtection = true) { + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `token` = ?', 1); + $result = $query->execute(array($token)); + if (\OC_DB::isError($result)) { + \OC_Log::write('OCP\Share', \OC_DB::getErrorMessage($result) . ', token=' . $token, \OC_Log::ERROR); + } + $row = $result->fetchRow(); + if ($row === false) { + return false; + } + if (is_array($row) and self::expireItem($row)) { + return false; + } + + // password protected shares need to be authenticated + if ($checkPasswordProtection && !\OCP\Share::checkPasswordProtectedShare($row)) { + return false; + } + + return $row; + } + + /** + * resolves reshares down to the last real share + * @param $linkItem + * @return $fileOwner + */ + public static function resolveReShare($linkItem) + { + if (isset($linkItem['parent'])) { + $parent = $linkItem['parent']; + while (isset($parent)) { + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `id` = ?', 1); + $item = $query->execute(array($parent))->fetchRow(); + if (isset($item['parent'])) { + $parent = $item['parent']; + } else { + return $item; + } + } + } + return $linkItem; + } + + + /** + * Get the shared items of item type owned by the current user + * @param string Item type + * @param int Format (optional) Format type must be defined by the backend + * @param mixed Parameters + * @param int Number of items to return (optional) Returns all by default + * @param bool include collections + * @return Return depends on format + */ + public static function getItemsShared($itemType, $format = self::FORMAT_NONE, $parameters = null, + $limit = -1, $includeCollections = false) { + return self::getItems($itemType, null, null, null, \OC_User::getUser(), $format, + $parameters, $limit, $includeCollections); + } + + /** + * Get the shared item of item type owned by the current user + * @param string Item type + * @param string Item source + * @param int Format (optional) Format type must be defined by the backend + * @param mixed Parameters + * @param bool include collections + * @return Return depends on format + */ + public static function getItemShared($itemType, $itemSource, $format = self::FORMAT_NONE, + $parameters = null, $includeCollections = false) { + return self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), $format, + $parameters, -1, $includeCollections); + } + + /** + * Get all users an item is shared with + * @param string Item type + * @param string Item source + * @param string Owner + * @param bool Include collections + * @praram bool check expire date + * @return Return array of users + */ + public static function getUsersItemShared($itemType, $itemSource, $uidOwner, $includeCollections = false, $checkExpireDate = true) { + + $users = array(); + $items = self::getItems($itemType, $itemSource, null, null, $uidOwner, self::FORMAT_NONE, null, -1, $includeCollections, false, $checkExpireDate); + if ($items) { + foreach ($items as $item) { + if ((int)$item['share_type'] === self::SHARE_TYPE_USER) { + $users[] = $item['share_with']; + } else if ((int)$item['share_type'] === self::SHARE_TYPE_GROUP) { + $users = array_merge($users, \OC_Group::usersInGroup($item['share_with'])); + } + } + } + return $users; + } + + /** + * Share an item with a user, group, or via private link + * @param string $itemType + * @param string $itemSource + * @param int $shareType SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string $shareWith User or group the item is being shared with + * @param int $permissions CRUDS + * @param null $itemSourceName + * @throws \Exception + * @internal param \OCP\Item $string type + * @internal param \OCP\Item $string source + * @internal param \OCP\SHARE_TYPE_USER $int , SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @internal param \OCP\User $string or group the item is being shared with + * @internal param \OCP\CRUDS $int permissions + * @return bool|string Returns true on success or false on failure, Returns token on success for links + */ + public static function shareItem($itemType, $itemSource, $shareType, $shareWith, $permissions, $itemSourceName = null) { + $uidOwner = \OC_User::getUser(); + $sharingPolicy = \OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global'); + + if (is_null($itemSourceName)) { + $itemSourceName = $itemSource; + } + + // Verify share type and sharing conditions are met + if ($shareType === self::SHARE_TYPE_USER) { + if ($shareWith == $uidOwner) { + $message = 'Sharing '.$itemSourceName.' failed, because the user '.$shareWith.' is the item owner'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + if (!\OC_User::userExists($shareWith)) { + $message = 'Sharing '.$itemSourceName.' failed, because the user '.$shareWith.' does not exist'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + if ($sharingPolicy == 'groups_only') { + $inGroup = array_intersect(\OC_Group::getUserGroups($uidOwner), \OC_Group::getUserGroups($shareWith)); + if (empty($inGroup)) { + $message = 'Sharing '.$itemSourceName.' failed, because the user ' + .$shareWith.' is not a member of any groups that '.$uidOwner.' is a member of'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } + // Check if the item source is already shared with the user, either from the same owner or a different user + if ($checkExists = self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, + $shareWith, null, self::FORMAT_NONE, null, 1, true, true)) { + // Only allow the same share to occur again if it is the same + // owner and is not a user share, this use case is for increasing + // permissions for a specific user + if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) { + $message = 'Sharing '.$itemSourceName.' failed, because this item is already shared with '.$shareWith; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } + } else if ($shareType === self::SHARE_TYPE_GROUP) { + if (!\OC_Group::groupExists($shareWith)) { + $message = 'Sharing '.$itemSourceName.' failed, because the group '.$shareWith.' does not exist'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + if ($sharingPolicy == 'groups_only' && !\OC_Group::inGroup($uidOwner, $shareWith)) { + $message = 'Sharing '.$itemSourceName.' failed, because ' + .$uidOwner.' is not a member of the group '.$shareWith; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + // Check if the item source is already shared with the group, either from the same owner or a different user + // The check for each user in the group is done inside the put() function + if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_GROUP, $shareWith, + null, self::FORMAT_NONE, null, 1, true, true)) { + // Only allow the same share to occur again if it is the same + // owner and is not a group share, this use case is for increasing + // permissions for a specific user + if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) { + $message = 'Sharing '.$itemSourceName.' failed, because this item is already shared with '.$shareWith; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } + // Convert share with into an array with the keys group and users + $group = $shareWith; + $shareWith = array(); + $shareWith['group'] = $group; + $shareWith['users'] = array_diff(\OC_Group::usersInGroup($group), array($uidOwner)); + } else if ($shareType === self::SHARE_TYPE_LINK) { + if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') == 'yes') { + // when updating a link share + if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, + $uidOwner, self::FORMAT_NONE, null, 1)) { + // remember old token + $oldToken = $checkExists['token']; + $oldPermissions = $checkExists['permissions']; + //delete the old share + Helper::delete($checkExists['id']); + } + + // Generate hash of password - same method as user passwords + if (isset($shareWith)) { + $forcePortable = (CRYPT_BLOWFISH != 1); + $hasher = new \PasswordHash(8, $forcePortable); + $shareWith = $hasher->HashPassword($shareWith.\OC_Config::getValue('passwordsalt', '')); + } else { + // reuse the already set password, but only if we change permissions + // otherwise the user disabled the password protection + if ($checkExists && (int)$permissions !== (int)$oldPermissions) { + $shareWith = $checkExists['share_with']; + } + } + + // Generate token + if (isset($oldToken)) { + $token = $oldToken; + } else { + $token = \OC_Util::generateRandomBytes(self::TOKEN_LENGTH); + } + $result = self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, + null, $token, $itemSourceName); + if ($result) { + return $token; + } else { + return false; + } + } + $message = 'Sharing '.$itemSourceName.' failed, because sharing with links is not allowed'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + return false; + } else { + // Future share types need to include their own conditions + $message = 'Share type '.$shareType.' is not valid for '.$itemSource; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + // Put the item into the database + return self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, null, null, $itemSourceName); + } + + /** + * Unshare an item from a user, group, or delete a private link + * @param string Item type + * @param string Item source + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string User or group the item is being shared with + * @return Returns true on success or false on failure + */ + public static function unshare($itemType, $itemSource, $shareType, $shareWith) { + $item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(),self::FORMAT_NONE, null, 1); + if (!empty($item)) { + self::unshareItem($item); + return true; + } + return false; + } + + /** + * Unshare an item from all users, groups, and remove all links + * @param string Item type + * @param string Item source + * @return Returns true on success or false on failure + */ + public static function unshareAll($itemType, $itemSource) { + // Get all of the owners of shares of this item. + $query = \OC_DB::prepare( 'SELECT `uid_owner` from `*PREFIX*share` WHERE `item_type`=? AND `item_source`=?' ); + $result = $query->execute(array($itemType, $itemSource)); + $shares = array(); + // Add each owner's shares to the array of all shares for this item. + while ($row = $result->fetchRow()) { + $shares = array_merge($shares, self::getItems($itemType, $itemSource, null, null, $row['uid_owner'])); + } + if (!empty($shares)) { + // Pass all the vars we have for now, they may be useful + $hookParams = array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'shares' => $shares, + ); + \OC_Hook::emit('OCP\Share', 'pre_unshareAll', $hookParams); + foreach ($shares as $share) { + self::unshareItem($share); + } + \OC_Hook::emit('OCP\Share', 'post_unshareAll', $hookParams); + return true; + } + return false; + } + + /** + * Unshare an item shared with the current user + * @param string Item type + * @param string Item target + * @return Returns true on success or false on failure + * + * Unsharing from self is not allowed for items inside collections + */ + public static function unshareFromSelf($itemType, $itemTarget) { + $item = self::getItemSharedWith($itemType, $itemTarget); + if (!empty($item)) { + if ((int)$item['share_type'] === self::SHARE_TYPE_GROUP) { + // Insert an extra row for the group share and set permission + // to 0 to prevent it from showing up for the user + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share`' + .' (`item_type`, `item_source`, `item_target`, `parent`, `share_type`,' + .' `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`)' + .' VALUES (?,?,?,?,?,?,?,?,?,?,?)'); + $query->execute(array($item['item_type'], $item['item_source'], $item['item_target'], + $item['id'], self::$shareTypeGroupUserUnique, + \OC_User::getUser(), $item['uid_owner'], 0, $item['stime'], $item['file_source'], + $item['file_target'])); + \OC_DB::insertid('*PREFIX*share'); + // Delete all reshares by this user of the group share + Helper::delete($item['id'], true, \OC_User::getUser()); + } else if ((int)$item['share_type'] === self::$shareTypeGroupUserUnique) { + // Set permission to 0 to prevent it from showing up for the user + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?'); + $query->execute(array(0, $item['id'])); + Helper::delete($item['id'], true); + } else { + Helper::delete($item['id']); + } + return true; + } + return false; + } + /** + * sent status if users got informed by mail about share + * @param string $itemType + * @param string $itemSource + * @param int $shareType SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param bool $status + */ + public static function setSendMailStatus($itemType, $itemSource, $shareType, $status) { + $status = $status ? 1 : 0; + + $query = \OC_DB::prepare( + 'UPDATE `*PREFIX*share` + SET `mail_send` = ? + WHERE `item_type` = ? AND `item_source` = ? AND `share_type` = ?'); + + $result = $query->execute(array($status, $itemType, $itemSource, $shareType)); + + if($result === false) { + \OC_Log::write('OCP\Share', 'Couldn\'t set send mail status', \OC_Log::ERROR); + } + } + + /** + * Set the permissions of an item for a specific user or group + * @param string Item type + * @param string Item source + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string User or group the item is being shared with + * @param int CRUDS permissions + * @return Returns true on success or false on failure + */ + public static function setPermissions($itemType, $itemSource, $shareType, $shareWith, $permissions) { + if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, + \OC_User::getUser(), self::FORMAT_NONE, null, 1, false)) { + // Check if this item is a reshare and verify that the permissions + // granted don't exceed the parent shared item + if (isset($item['parent'])) { + $query = \OC_DB::prepare('SELECT `permissions` FROM `*PREFIX*share` WHERE `id` = ?', 1); + $result = $query->execute(array($item['parent']))->fetchRow(); + if (~(int)$result['permissions'] & $permissions) { + $message = 'Setting permissions for '.$itemSource.' failed,' + .' because the permissions exceed permissions granted to '.\OC_User::getUser(); + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?'); + $query->execute(array($permissions, $item['id'])); + if ($itemType === 'file' || $itemType === 'folder') { + \OC_Hook::emit('OCP\Share', 'post_update_permissions', array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'shareType' => $shareType, + 'shareWith' => $shareWith, + 'uidOwner' => \OC_User::getUser(), + 'permissions' => $permissions, + 'path' => $item['path'], + )); + } + // Check if permissions were removed + if ($item['permissions'] & ~$permissions) { + // If share permission is removed all reshares must be deleted + if (($item['permissions'] & \OCP\PERMISSION_SHARE) && (~$permissions & \OCP\PERMISSION_SHARE)) { + Helper::delete($item['id'], true); + } else { + $ids = array(); + $parents = array($item['id']); + while (!empty($parents)) { + $parents = "'".implode("','", $parents)."'"; + $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share`' + .' WHERE `parent` IN ('.$parents.')'); + $result = $query->execute(); + // Reset parents array, only go through loop again if + // items are found that need permissions removed + $parents = array(); + while ($item = $result->fetchRow()) { + // Check if permissions need to be removed + if ($item['permissions'] & ~$permissions) { + // Add to list of items that need permissions removed + $ids[] = $item['id']; + $parents[] = $item['id']; + } + } + } + // Remove the permissions for all reshares of this item + if (!empty($ids)) { + $ids = "'".implode("','", $ids)."'"; + // TODO this should be done with Doctrine platform objects + if (\OC_Config::getValue( "dbtype") === 'oci') { + $andOp = 'BITAND(`permissions`, ?)'; + } else { + $andOp = '`permissions` & ?'; + } + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = '.$andOp + .' WHERE `id` IN ('.$ids.')'); + $query->execute(array($permissions)); + } + } + } + return true; + } + $message = 'Setting permissions for '.$itemSource.' failed, because the item was not found'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + + /** + * Set expiration date for a share + * @param string $itemType + * @param string $itemSource + * @param string $date expiration date + * @return \OCP\Share_Backend + */ + public static function setExpirationDate($itemType, $itemSource, $date) { + $user = \OC_User::getUser(); + $items = self::getItems($itemType, $itemSource, null, null, $user, self::FORMAT_NONE, null, -1, false); + if (!empty($items)) { + if ($date == '') { + $date = null; + } else { + $date = new \DateTime($date); + } + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `expiration` = ? WHERE `id` = ?'); + $query->bindValue(1, $date, 'datetime'); + foreach ($items as $item) { + $query->bindValue(2, (int) $item['id']); + $query->execute(); + \OC_Hook::emit('OCP\Share', 'post_set_expiration_date', array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'date' => $date, + 'uidOwner' => $user + )); + } + return true; + } + return false; + } + + /** + * Checks whether a share has expired, calls unshareItem() if yes. + * @param array $item Share data (usually database row) + * @return bool True if item was expired, false otherwise. + */ + protected static function expireItem(array $item) { + if (!empty($item['expiration'])) { + $now = new \DateTime(); + $expires = new \DateTime($item['expiration']); + if ($now > $expires) { + self::unshareItem($item); + return true; + } + } + return false; + } + + /** + * Unshares a share given a share data array + * @param array $item Share data (usually database row) + * @return null + */ + protected static function unshareItem(array $item) { + // Pass all the vars we have for now, they may be useful + $hookParams = array( + 'itemType' => $item['item_type'], + 'itemSource' => $item['item_source'], + 'shareType' => $item['share_type'], + 'shareWith' => $item['share_with'], + 'itemParent' => $item['parent'], + 'uidOwner' => $item['uid_owner'], + ); + + \OC_Hook::emit('OCP\Share', 'pre_unshare', $hookParams + array( + 'fileSource' => $item['file_source'], + )); + Helper::delete($item['id']); + \OC_Hook::emit('OCP\Share', 'post_unshare', $hookParams); + } + + /** + * Get the backend class for the specified item type + * @param string $itemType + * @return \OCP\Share_Backend + */ + public static function getBackend($itemType) { + if (isset(self::$backends[$itemType])) { + return self::$backends[$itemType]; + } else if (isset(self::$backendTypes[$itemType]['class'])) { + $class = self::$backendTypes[$itemType]['class']; + if (class_exists($class)) { + self::$backends[$itemType] = new $class; + if (!(self::$backends[$itemType] instanceof \OCP\Share_Backend)) { + $message = 'Sharing backend '.$class.' must implement the interface OCP\Share_Backend'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + return self::$backends[$itemType]; + } else { + $message = 'Sharing backend '.$class.' not found'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } + $message = 'Sharing backend for '.$itemType.' not found'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + + /** + * Check if resharing is allowed + * @return Returns true if allowed or false + * + * Resharing is allowed by default if not configured + */ + private static function isResharingAllowed() { + if (!isset(self::$isResharingAllowed)) { + if (\OC_Appconfig::getValue('core', 'shareapi_allow_resharing', 'yes') == 'yes') { + self::$isResharingAllowed = true; + } else { + self::$isResharingAllowed = false; + } + } + return self::$isResharingAllowed; + } + + /** + * Get a list of collection item types for the specified item type + * @param string Item type + * @return array + */ + private static function getCollectionItemTypes($itemType) { + $collectionTypes = array($itemType); + foreach (self::$backendTypes as $type => $backend) { + if (in_array($backend['collectionOf'], $collectionTypes)) { + $collectionTypes[] = $type; + } + } + // TODO Add option for collections to be collection of themselves, only 'folder' does it now... + if (!self::getBackend($itemType) instanceof \OCP\Share_Backend_Collection || $itemType != 'folder') { + unset($collectionTypes[0]); + } + // Return array if collections were found or the item type is a + // collection itself - collections can be inside collections + if (count($collectionTypes) > 0) { + return $collectionTypes; + } + return false; + } + + /** + * Get shared items from the database + * @param string Item type + * @param string Item source or target (optional) + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, SHARE_TYPE_LINK, $shareTypeUserAndGroups, or $shareTypeGroupUserUnique + * @param string User or group the item is being shared with + * @param string User that is the owner of shared items (optional) + * @param int Format to convert items to with formatItems() + * @param mixed Parameters to pass to formatItems() + * @param int Number of items to return, -1 to return all matches (optional) + * @param bool Include collection item types (optional) + * @param bool TODO (optional) + * @prams bool check expire date + * @return array + * + * See public functions getItem(s)... for parameter usage + * + */ + public static function getItems($itemType, $item = null, $shareType = null, $shareWith = null, + $uidOwner = null, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, + $includeCollections = false, $itemShareWithBySource = false, $checkExpireDate = true) { + if (!self::isEnabled()) { + return array(); + } + $backend = self::getBackend($itemType); + $collectionTypes = false; + // Get filesystem root to add it to the file target and remove from the + // file source, match file_source with the file cache + if ($itemType == 'file' || $itemType == 'folder') { + if(!is_null($uidOwner)) { + $root = \OC\Files\Filesystem::getRoot(); + } else { + $root = ''; + } + $where = 'INNER JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid`'; + if (!isset($item)) { + $where .= ' WHERE `file_target` IS NOT NULL'; + } + $fileDependent = true; + $queryArgs = array(); + } else { + $fileDependent = false; + $root = ''; + $collectionTypes = self::getCollectionItemTypes($itemType); + if ($includeCollections && !isset($item) && $collectionTypes) { + // If includeCollections is true, find collections of this item type, e.g. a music album contains songs + if (!in_array($itemType, $collectionTypes)) { + $itemTypes = array_merge(array($itemType), $collectionTypes); + } else { + $itemTypes = $collectionTypes; + } + $placeholders = join(',', array_fill(0, count($itemTypes), '?')); + $where = ' WHERE `item_type` IN ('.$placeholders.'))'; + $queryArgs = $itemTypes; + } else { + $where = ' WHERE `item_type` = ?'; + $queryArgs = array($itemType); + } + } + if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') !== 'yes') { + $where .= ' AND `share_type` != ?'; + $queryArgs[] = self::SHARE_TYPE_LINK; + } + if (isset($shareType)) { + // Include all user and group items + if ($shareType == self::$shareTypeUserAndGroups && isset($shareWith)) { + $where .= ' AND `share_type` IN (?,?,?)'; + $queryArgs[] = self::SHARE_TYPE_USER; + $queryArgs[] = self::SHARE_TYPE_GROUP; + $queryArgs[] = self::$shareTypeGroupUserUnique; + $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith)); + $placeholders = join(',', array_fill(0, count($userAndGroups), '?')); + $where .= ' AND `share_with` IN ('.$placeholders.')'; + $queryArgs = array_merge($queryArgs, $userAndGroups); + // Don't include own group shares + $where .= ' AND `uid_owner` != ?'; + $queryArgs[] = $shareWith; + } else { + $where .= ' AND `share_type` = ?'; + $queryArgs[] = $shareType; + if (isset($shareWith)) { + $where .= ' AND `share_with` = ?'; + $queryArgs[] = $shareWith; + } + } + } + if (isset($uidOwner)) { + $where .= ' AND `uid_owner` = ?'; + $queryArgs[] = $uidOwner; + if (!isset($shareType)) { + // Prevent unique user targets for group shares from being selected + $where .= ' AND `share_type` != ?'; + $queryArgs[] = self::$shareTypeGroupUserUnique; + } + if ($fileDependent) { + $column = 'file_source'; + } else { + $column = 'item_source'; + } + } else { + if ($fileDependent) { + $column = 'file_target'; + } else { + $column = 'item_target'; + } + } + if (isset($item)) { + $collectionTypes = self::getCollectionItemTypes($itemType); + if ($includeCollections && $collectionTypes) { + $where .= ' AND ('; + } else { + $where .= ' AND'; + } + // If looking for own shared items, check item_source else check item_target + if (isset($uidOwner) || $itemShareWithBySource) { + // If item type is a file, file source needs to be checked in case the item was converted + if ($fileDependent) { + $where .= ' `file_source` = ?'; + $column = 'file_source'; + } else { + $where .= ' `item_source` = ?'; + $column = 'item_source'; + } + } else { + if ($fileDependent) { + $where .= ' `file_target` = ?'; + $item = \OC\Files\Filesystem::normalizePath($item); + } else { + $where .= ' `item_target` = ?'; + } + } + $queryArgs[] = $item; + if ($includeCollections && $collectionTypes) { + $placeholders = join(',', array_fill(0, count($collectionTypes), '?')); + $where .= ' OR `item_type` IN ('.$placeholders.'))'; + $queryArgs = array_merge($queryArgs, $collectionTypes); + } + } + if ($limit != -1 && !$includeCollections) { + if ($shareType == self::$shareTypeUserAndGroups) { + // Make sure the unique user target is returned if it exists, + // unique targets should follow the group share in the database + // If the limit is not 1, the filtering can be done later + $where .= ' ORDER BY `*PREFIX*share`.`id` DESC'; + } + // The limit must be at least 3, because filtering needs to be done + if ($limit < 3) { + $queryLimit = 3; + } else { + $queryLimit = $limit; + } + } else { + $queryLimit = null; + } + $select = self::createSelectStatement($format, $fileDependent, $uidOwner); + $root = strlen($root); + $query = \OC_DB::prepare('SELECT '.$select.' FROM `*PREFIX*share` '.$where, $queryLimit); + $result = $query->execute($queryArgs); + if (\OC_DB::isError($result)) { + \OC_Log::write('OCP\Share', + \OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=' . $where, + \OC_Log::ERROR); + } + $items = array(); + $targets = array(); + $switchedItems = array(); + $mounts = array(); + while ($row = $result->fetchRow()) { + self::transformDBResults($row); + // Filter out duplicate group shares for users with unique targets + if ($row['share_type'] == self::$shareTypeGroupUserUnique && isset($items[$row['parent']])) { + $row['share_type'] = self::SHARE_TYPE_GROUP; + $row['share_with'] = $items[$row['parent']]['share_with']; + // Remove the parent group share + unset($items[$row['parent']]); + if ($row['permissions'] == 0) { + continue; + } + } else if (!isset($uidOwner)) { + // Check if the same target already exists + if (isset($targets[$row[$column]])) { + // Check if the same owner shared with the user twice + // through a group and user share - this is allowed + $id = $targets[$row[$column]]; + if (isset($items[$id]) && $items[$id]['uid_owner'] == $row['uid_owner']) { + // Switch to group share type to ensure resharing conditions aren't bypassed + if ($items[$id]['share_type'] != self::SHARE_TYPE_GROUP) { + $items[$id]['share_type'] = self::SHARE_TYPE_GROUP; + $items[$id]['share_with'] = $row['share_with']; + } + // Switch ids if sharing permission is granted on only + // one share to ensure correct parent is used if resharing + if (~(int)$items[$id]['permissions'] & \OCP\PERMISSION_SHARE + && (int)$row['permissions'] & \OCP\PERMISSION_SHARE) { + $items[$row['id']] = $items[$id]; + $switchedItems[$id] = $row['id']; + unset($items[$id]); + $id = $row['id']; + } + // Combine the permissions for the item + $items[$id]['permissions'] |= (int)$row['permissions']; + continue; + } + } else { + $targets[$row[$column]] = $row['id']; + } + } + // Remove root from file source paths if retrieving own shared items + if (isset($uidOwner) && isset($row['path'])) { + if (isset($row['parent'])) { + // FIXME: Doesn't always construct the correct path, example: + // Folder '/a/b', share '/a' and '/a/b' to user2 + // user2 reshares /Shared/b and ask for share status of /Shared/a/b + // expected result: path=/Shared/a/b; actual result /Shared/b because of the parent + $query = \OC_DB::prepare('SELECT `file_target` FROM `*PREFIX*share` WHERE `id` = ?'); + $parentResult = $query->execute(array($row['parent'])); + if (\OC_DB::isError($result)) { + \OC_Log::write('OCP\Share', 'Can\'t select parent: ' . + \OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=' . $where, + \OC_Log::ERROR); + } else { + $parentRow = $parentResult->fetchRow(); + $tmpPath = '/Shared' . $parentRow['file_target']; + // find the right position where the row path continues from the target path + $pos = strrpos($row['path'], $parentRow['file_target']); + $subPath = substr($row['path'], $pos); + $splitPath = explode('/', $subPath); + foreach (array_slice($splitPath, 2) as $pathPart) { + $tmpPath = $tmpPath . '/' . $pathPart; + } + $row['path'] = $tmpPath; + } + } else { + if (!isset($mounts[$row['storage']])) { + $mountPoints = \OC\Files\Filesystem::getMountByNumericId($row['storage']); + if (is_array($mountPoints)) { + $mounts[$row['storage']] = current($mountPoints); + } + } + if ($mounts[$row['storage']]) { + $path = $mounts[$row['storage']]->getMountPoint().$row['path']; + $row['path'] = substr($path, $root); + } + } + } + if($checkExpireDate) { + if (self::expireItem($row)) { + continue; + } + } + // Check if resharing is allowed, if not remove share permission + if (isset($row['permissions']) && !self::isResharingAllowed()) { + $row['permissions'] &= ~\OCP\PERMISSION_SHARE; + } + // Add display names to result + if ( isset($row['share_with']) && $row['share_with'] != '') { + $row['share_with_displayname'] = \OCP\User::getDisplayName($row['share_with']); + } + if ( isset($row['uid_owner']) && $row['uid_owner'] != '') { + $row['displayname_owner'] = \OCP\User::getDisplayName($row['uid_owner']); + } + + $items[$row['id']] = $row; + } + if (!empty($items)) { + $collectionItems = array(); + foreach ($items as &$row) { + // Return only the item instead of a 2-dimensional array + if ($limit == 1 && $row[$column] == $item && ($row['item_type'] == $itemType || $itemType == 'file')) { + if ($format == self::FORMAT_NONE) { + return $row; + } else { + break; + } + } + // Check if this is a collection of the requested item type + if ($includeCollections && $collectionTypes && in_array($row['item_type'], $collectionTypes)) { + if (($collectionBackend = self::getBackend($row['item_type'])) + && $collectionBackend instanceof \OCP\Share_Backend_Collection) { + // Collections can be inside collections, check if the item is a collection + if (isset($item) && $row['item_type'] == $itemType && $row[$column] == $item) { + $collectionItems[] = $row; + } else { + $collection = array(); + $collection['item_type'] = $row['item_type']; + if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') { + $collection['path'] = basename($row['path']); + } + $row['collection'] = $collection; + // Fetch all of the children sources + $children = $collectionBackend->getChildren($row[$column]); + foreach ($children as $child) { + $childItem = $row; + $childItem['item_type'] = $itemType; + if ($row['item_type'] != 'file' && $row['item_type'] != 'folder') { + $childItem['item_source'] = $child['source']; + $childItem['item_target'] = $child['target']; + } + if ($backend instanceof \OCP\Share_Backend_File_Dependent) { + if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') { + $childItem['file_source'] = $child['source']; + } else { // TODO is this really needed if we already know that we use the file backend? + $meta = \OC\Files\Filesystem::getFileInfo($child['file_path']); + $childItem['file_source'] = $meta['fileid']; + } + $childItem['file_target'] = + \OC\Files\Filesystem::normalizePath($child['file_path']); + } + if (isset($item)) { + if ($childItem[$column] == $item) { + // Return only the item instead of a 2-dimensional array + if ($limit == 1) { + if ($format == self::FORMAT_NONE) { + return $childItem; + } else { + // Unset the items array and break out of both loops + $items = array(); + $items[] = $childItem; + break 2; + } + } else { + $collectionItems[] = $childItem; + } + } + } else { + $collectionItems[] = $childItem; + } + } + } + } + // Remove collection item + $toRemove = $row['id']; + if (array_key_exists($toRemove, $switchedItems)) { + $toRemove = $switchedItems[$toRemove]; + } + unset($items[$toRemove]); + } + } + if (!empty($collectionItems)) { + $items = array_merge($items, $collectionItems); + } + + return self::formatResult($items, $column, $backend, $format, $parameters); + } + + return array(); + } + + /** + * Put shared item into the database + * @param string Item type + * @param string Item source + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string User or group the item is being shared with + * @param string User that is the owner of shared item + * @param int CRUDS permissions + * @param bool|array Parent folder target (optional) + * @param string token (optional) + * @param string name of the source item (optional) + * @return bool Returns true on success or false on failure + */ + private static function put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, + $permissions, $parentFolder = null, $token = null, $itemSourceName = null) { + $backend = self::getBackend($itemType); + + // Check if this is a reshare + if ($checkReshare = self::getItemSharedWithBySource($itemType, $itemSource, self::FORMAT_NONE, null, true)) { + + // Check if attempting to share back to owner + if ($checkReshare['uid_owner'] == $shareWith && $shareType == self::SHARE_TYPE_USER) { + $message = 'Sharing '.$itemSourceName.' failed, because the user '.$shareWith.' is the original sharer'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + // Check if share permissions is granted + if (self::isResharingAllowed() && (int)$checkReshare['permissions'] & \OCP\PERMISSION_SHARE) { + if (~(int)$checkReshare['permissions'] & $permissions) { + $message = 'Sharing '.$itemSourceName + .' failed, because the permissions exceed permissions granted to '.$uidOwner; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } else { + // TODO Don't check if inside folder + $parent = $checkReshare['id']; + $itemSource = $checkReshare['item_source']; + $fileSource = $checkReshare['file_source']; + $suggestedItemTarget = $checkReshare['item_target']; + $suggestedFileTarget = $checkReshare['file_target']; + $filePath = $checkReshare['file_target']; + } + } else { + $message = 'Sharing '.$itemSourceName.' failed, because resharing is not allowed'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } else { + $parent = null; + $suggestedItemTarget = null; + $suggestedFileTarget = null; + if (!$backend->isValidSource($itemSource, $uidOwner)) { + $message = 'Sharing '.$itemSource.' failed, because the sharing backend for ' + .$itemType.' could not find its source'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + if ($backend instanceof \OCP\Share_Backend_File_Dependent) { + $filePath = $backend->getFilePath($itemSource, $uidOwner); + if ($itemType == 'file' || $itemType == 'folder') { + $fileSource = $itemSource; + } else { + $meta = \OC\Files\Filesystem::getFileInfo($filePath); + $fileSource = $meta['fileid']; + } + if ($fileSource == -1) { + $message = 'Sharing '.$itemSource.' failed, because the file could not be found in the file cache'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } else { + $filePath = null; + $fileSource = null; + } + } + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`,' + .' `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`,' + .' `file_target`, `token`) VALUES (?,?,?,?,?,?,?,?,?,?,?,?)'); + // Share with a group + if ($shareType == self::SHARE_TYPE_GROUP) { + $groupItemTarget = Helper::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'], + $uidOwner, $suggestedItemTarget); + $run = true; + $error = ''; + \OC_Hook::emit('OCP\Share', 'pre_shared', array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'itemTarget' => $groupItemTarget, + 'shareType' => $shareType, + 'shareWith' => $shareWith['group'], + 'uidOwner' => $uidOwner, + 'permissions' => $permissions, + 'fileSource' => $fileSource, + 'token' => $token, + 'run' => &$run, + 'error' => &$error + )); + + if ($run === false) { + throw new \Exception($error); + } + + if (isset($fileSource)) { + if ($parentFolder) { + if ($parentFolder === true) { + $groupFileTarget = Helper::generateTarget('file', $filePath, $shareType, + $shareWith['group'], $uidOwner, $suggestedFileTarget); + // Set group default file target for future use + $parentFolders[0]['folder'] = $groupFileTarget; + } else { + // Get group default file target + $groupFileTarget = $parentFolder[0]['folder'].$itemSource; + $parent = $parentFolder[0]['id']; + } + } else { + $groupFileTarget = Helper::generateTarget('file', $filePath, $shareType, $shareWith['group'], + $uidOwner, $suggestedFileTarget); + } + } else { + $groupFileTarget = null; + } + $query->execute(array($itemType, $itemSource, $groupItemTarget, $parent, $shareType, + $shareWith['group'], $uidOwner, $permissions, time(), $fileSource, $groupFileTarget, $token)); + // Save this id, any extra rows for this group share will need to reference it + $parent = \OC_DB::insertid('*PREFIX*share'); + // Loop through all users of this group in case we need to add an extra row + foreach ($shareWith['users'] as $uid) { + $itemTarget = Helper::generateTarget($itemType, $itemSource, self::SHARE_TYPE_USER, $uid, + $uidOwner, $suggestedItemTarget, $parent); + if (isset($fileSource)) { + if ($parentFolder) { + if ($parentFolder === true) { + $fileTarget = Helper::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, + $uidOwner, $suggestedFileTarget, $parent); + if ($fileTarget != $groupFileTarget) { + $parentFolders[$uid]['folder'] = $fileTarget; + } + } else if (isset($parentFolder[$uid])) { + $fileTarget = $parentFolder[$uid]['folder'].$itemSource; + $parent = $parentFolder[$uid]['id']; + } + } else { + $fileTarget = Helper::generateTarget('file', $filePath, self::SHARE_TYPE_USER, + $uid, $uidOwner, $suggestedFileTarget, $parent); + } + } else { + $fileTarget = null; + } + // Insert an extra row for the group share if the item or file target is unique for this user + if ($itemTarget != $groupItemTarget || (isset($fileSource) && $fileTarget != $groupFileTarget)) { + $query->execute(array($itemType, $itemSource, $itemTarget, $parent, + self::$shareTypeGroupUserUnique, $uid, $uidOwner, $permissions, time(), + $fileSource, $fileTarget, $token)); + $id = \OC_DB::insertid('*PREFIX*share'); + } + } + \OC_Hook::emit('OCP\Share', 'post_shared', array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'itemTarget' => $groupItemTarget, + 'parent' => $parent, + 'shareType' => $shareType, + 'shareWith' => $shareWith['group'], + 'uidOwner' => $uidOwner, + 'permissions' => $permissions, + 'fileSource' => $fileSource, + 'fileTarget' => $groupFileTarget, + 'id' => $parent, + 'token' => $token + )); + + if ($parentFolder === true) { + // Return parent folders to preserve file target paths for potential children + return $parentFolders; + } + } else { + $itemTarget = Helper::generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, + $suggestedItemTarget); + $run = true; + $error = ''; + \OC_Hook::emit('OCP\Share', 'pre_shared', array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'itemTarget' => $itemTarget, + 'shareType' => $shareType, + 'shareWith' => $shareWith, + 'uidOwner' => $uidOwner, + 'permissions' => $permissions, + 'fileSource' => $fileSource, + 'token' => $token, + 'run' => &$run, + 'error' => &$error + )); + + if ($run === false) { + throw new \Exception($error); + } + + if (isset($fileSource)) { + if ($parentFolder) { + if ($parentFolder === true) { + $fileTarget = Helper::generateTarget('file', $filePath, $shareType, $shareWith, + $uidOwner, $suggestedFileTarget); + $parentFolders['folder'] = $fileTarget; + } else { + $fileTarget = $parentFolder['folder'].$itemSource; + $parent = $parentFolder['id']; + } + } else { + $fileTarget = Helper::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, + $suggestedFileTarget); + } + } else { + $fileTarget = null; + } + $query->execute(array($itemType, $itemSource, $itemTarget, $parent, $shareType, $shareWith, $uidOwner, + $permissions, time(), $fileSource, $fileTarget, $token)); + $id = \OC_DB::insertid('*PREFIX*share'); + \OC_Hook::emit('OCP\Share', 'post_shared', array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'itemTarget' => $itemTarget, + 'parent' => $parent, + 'shareType' => $shareType, + 'shareWith' => $shareWith, + 'uidOwner' => $uidOwner, + 'permissions' => $permissions, + 'fileSource' => $fileSource, + 'fileTarget' => $fileTarget, + 'id' => $id, + 'token' => $token + )); + if ($parentFolder === true) { + $parentFolders['id'] = $id; + // Return parent folder to preserve file target paths for potential children + return $parentFolders; + } + } + return true; + } + + /** + * Delete all shares with type SHARE_TYPE_LINK + */ + public static function removeAllLinkShares() { + // Delete any link shares + $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `share_type` = ?'); + $result = $query->execute(array(self::SHARE_TYPE_LINK)); + while ($item = $result->fetchRow()) { + Helper::delete($item['id']); + } + } + + /** + * In case a password protected link is not yet authenticated this function will return false + * + * @param array $linkItem + * @return bool + */ + public static function checkPasswordProtectedShare(array $linkItem) { + if (!isset($linkItem['share_with'])) { + return true; + } + if (!isset($linkItem['share_type'])) { + return true; + } + if (!isset($linkItem['id'])) { + return true; + } + + if ($linkItem['share_type'] != \OCP\Share::SHARE_TYPE_LINK) { + return true; + } + + if ( \OC::$session->exists('public_link_authenticated') + && \OC::$session->get('public_link_authenticated') === $linkItem['id'] ) { + return true; + } + + return false; + } + + /** + * @breif construct select statement + * @param int $format + * @param bool $fileDependent ist it a file/folder share or a generla share + * @param string $uidOwner + * @return string select statement + */ + private static function createSelectStatement($format, $fileDependent, $uidOwner = null) { + $select = '*'; + if ($format == self::FORMAT_STATUSES) { + if ($fileDependent) { + $select = '`*PREFIX*share`.`id`, `*PREFIX*share`.`parent`, `share_type`, `path`, `share_with`, `uid_owner`'; + } else { + $select = '`id`, `parent`, `share_type`, `share_with`, `uid_owner`'; + } + } else { + if (isset($uidOwner)) { + if ($fileDependent) { + $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`,' + . ' `share_type`, `share_with`, `file_source`, `path`, `permissions`, `stime`,' + . ' `expiration`, `token`, `storage`, `mail_send`, `uid_owner`'; + } else { + $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `permissions`,' + . ' `stime`, `file_source`, `expiration`, `token`, `mail_send`, `uid_owner`'; + } + } else { + if ($fileDependent) { + if ($format == \OC_Share_Backend_File::FORMAT_GET_FOLDER_CONTENTS || $format == \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT) { + $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`, `uid_owner`, ' + . '`share_type`, `share_with`, `file_source`, `path`, `file_target`, ' + . '`permissions`, `expiration`, `storage`, `*PREFIX*filecache`.`parent` as `file_parent`, ' + . '`name`, `mtime`, `mimetype`, `mimepart`, `size`, `unencrypted_size`, `encrypted`, `etag`, `mail_send`'; + } else { + $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`, + `*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`, + `file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`, `token`, `storage`, `mail_send`'; + } + } + } + } + return $select; + } + + + /** + * @brief transform db results + * @param array $row result + */ + private static function transformDBResults(&$row) { + if (isset($row['id'])) { + $row['id'] = (int) $row['id']; + } + if (isset($row['share_type'])) { + $row['share_type'] = (int) $row['share_type']; + } + if (isset($row['parent'])) { + $row['parent'] = (int) $row['parent']; + } + if (isset($row['file_parent'])) { + $row['file_parent'] = (int) $row['file_parent']; + } + if (isset($row['file_source'])) { + $row['file_source'] = (int) $row['file_source']; + } + if (isset($row['permissions'])) { + $row['permissions'] = (int) $row['permissions']; + } + if (isset($row['storage'])) { + $row['storage'] = (int) $row['storage']; + } + if (isset($row['stime'])) { + $row['stime'] = (int) $row['stime']; + } + } + + /** + * @brief format result + * @param array $items result + * @prams string $column is it a file share or a general share ('file_target' or 'item_target') + * @params \OCP\Share_Backend $backend sharing backend + * @param int $format + * @param array additional format parameters + * @return array formate result + */ + private static function formatResult($items, $column, $backend, $format = self::FORMAT_NONE , $parameters = null) { + if ($format === self::FORMAT_NONE) { + return $items; + } else if ($format === self::FORMAT_STATUSES) { + $statuses = array(); + foreach ($items as $item) { + if ($item['share_type'] === self::SHARE_TYPE_LINK) { + $statuses[$item[$column]]['link'] = true; + } else if (!isset($statuses[$item[$column]])) { + $statuses[$item[$column]]['link'] = false; + } + if ('file_target') { + $statuses[$item[$column]]['path'] = $item['path']; + } + } + return $statuses; + } else { + return $backend->formatItems($items, $format, $parameters); + } + } +} diff --git a/lib/private/urlgenerator.php b/lib/private/urlgenerator.php index 44b46ef6700..0d238737dde 100644 --- a/lib/private/urlgenerator.php +++ b/lib/private/urlgenerator.php @@ -60,7 +60,7 @@ class URLGenerator implements IURLGenerator { $app_path = \OC_App::getAppPath($app); // Check if the app is in the app folder if ($app_path && file_exists($app_path . '/' . $file)) { - if (substr($file, -3) == 'php' || substr($file, -3) == 'css') { + if (substr($file, -3) == 'php') { $urlLinkTo = \OC::$WEBROOT . '/index.php/apps/' . $app; if ($frontControllerActive) { @@ -148,6 +148,7 @@ class URLGenerator implements IURLGenerator { */ public function getAbsoluteURL($url) { $separator = $url[0] === '/' ? '' : '/'; - return \OC_Request::serverProtocol() . '://' . \OC_Request::serverHost() . $separator . $url; + + return \OC_Request::serverProtocol() . '://' . \OC_Request::serverHost(). \OC::$WEBROOT . $separator . $url; } } diff --git a/lib/private/user.php b/lib/private/user.php index a89b7286c10..dc4c7ec3b61 100644 --- a/lib/private/user.php +++ b/lib/private/user.php @@ -321,8 +321,6 @@ class OC_User { */ public static function isLoggedIn() { if (\OC::$session->get('user_id') && self::$incognitoMode === false) { - OC_App::loadApps(array('authentication')); - self::setupBackends(); return self::userExists(\OC::$session->get('user_id')); } return false; diff --git a/lib/private/util.php b/lib/private/util.php index f72276418ba..c48a5505d41 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -30,9 +30,7 @@ class OC_Util { } // load all filesystem apps before, so no setup-hook gets lost - if(!isset($RUNTIME_NOAPPS) || !$RUNTIME_NOAPPS) { - OC_App::loadApps(array('filesystem')); - } + OC_App::loadApps(array('filesystem')); // the filesystem will finish when $user is not empty, // mark fs setup here to avoid doing the setup from loading @@ -490,6 +488,8 @@ class OC_Util { ); } + $errors = array_merge($errors, self::checkDatabaseVersion()); + // Cache the result of this function \OC::$session->set('checkServer_suceeded', count($errors) == 0); @@ -497,6 +497,39 @@ class OC_Util { } /** + * Check the database version + * @return array errors array + */ + public static function checkDatabaseVersion() { + $errors = array(); + $dbType = \OC_Config::getValue('dbtype', 'sqlite'); + if ($dbType === 'pgsql') { + // check PostgreSQL version + try { + $result = \OC_DB::executeAudited('SHOW SERVER_VERSION'); + $data = $result->fetchRow(); + if (isset($data['server_version'])) { + $version = $data['server_version']; + if (version_compare($version, '9.0.0', '<')) { + $errors[] = array( + 'error' => 'PostgreSQL >= 9 required', + 'hint' => 'Please upgrade your database version' + ); + } + } + } catch (\Doctrine\DBAL\DBALException $e) { + \OCP\Util::logException('core', $e); + $errors[] = array( + 'error' => 'Error occurred while checking PostgreSQL version', + 'hint' => 'Please make sure you have PostgreSQL >= 9 or check the logs for more information about the error' + ); + } + } + return $errors; + } + + + /** * @brief check if there are still some encrypted files stored * @return boolean */ @@ -1039,13 +1072,13 @@ class OC_Util { public static function getUrlContent($url) { if (function_exists('curl_init')) { $curl = curl_init(); + $max_redirects = 10; curl_setopt($curl, CURLOPT_HEADER, 0); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 10); curl_setopt($curl, CURLOPT_URL, $url); - curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); - curl_setopt($curl, CURLOPT_MAXREDIRS, 10); + curl_setopt($curl, CURLOPT_USERAGENT, "ownCloud Server Crawler"); if(OC_Config::getValue('proxy', '') != '') { @@ -1054,9 +1087,50 @@ class OC_Util { if(OC_Config::getValue('proxyuserpwd', '') != '') { curl_setopt($curl, CURLOPT_PROXYUSERPWD, OC_Config::getValue('proxyuserpwd')); } - $data = curl_exec($curl); + + if (ini_get('open_basedir') === '' && ini_get('safe_mode' === 'Off')) { + curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); + curl_setopt($curl, CURLOPT_MAXREDIRS, $max_redirects); + $data = curl_exec($curl); + } else { + curl_setopt($curl, CURLOPT_FOLLOWLOCATION, false); + $mr = $max_redirects; + if ($mr > 0) { + $newurl = curl_getinfo($curl, CURLINFO_EFFECTIVE_URL); + + $rcurl = curl_copy_handle($curl); + curl_setopt($rcurl, CURLOPT_HEADER, true); + curl_setopt($rcurl, CURLOPT_NOBODY, true); + curl_setopt($rcurl, CURLOPT_FORBID_REUSE, false); + curl_setopt($rcurl, CURLOPT_RETURNTRANSFER, true); + do { + curl_setopt($rcurl, CURLOPT_URL, $newurl); + $header = curl_exec($rcurl); + if (curl_errno($rcurl)) { + $code = 0; + } else { + $code = curl_getinfo($rcurl, CURLINFO_HTTP_CODE); + if ($code == 301 || $code == 302) { + preg_match('/Location:(.*?)\n/', $header, $matches); + $newurl = trim(array_pop($matches)); + } else { + $code = 0; + } + } + } while ($code && --$mr); + curl_close($rcurl); + if ($mr > 0) { + curl_setopt($curl, CURLOPT_URL, $newurl); + } + } + + if($mr == 0 && $max_redirects > 0) { + $data = false; + } else { + $data = curl_exec($curl); + } + } curl_close($curl); - } else { $contextArray = null; diff --git a/lib/public/route/irouter.php b/lib/public/route/irouter.php index d6b0750ba6f..125cd29e81b 100644 --- a/lib/public/route/irouter.php +++ b/lib/public/route/irouter.php @@ -10,8 +10,6 @@ namespace OCP\Route; interface IRouter { - public function __construct(); - /** * Get the files to load the routes from * @@ -24,7 +22,7 @@ interface IRouter { /** * loads the api routes */ - public function loadRoutes(); + public function loadRoutes($app = null); /** * Sets the collection to use for adding routes diff --git a/lib/public/share.php b/lib/public/share.php index 5066d40354d..a08134b3837 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -2,8 +2,9 @@ /** * ownCloud * - * @author Michael Gapczynski - * @copyright 2012 Michael Gapczynski mtgap@owncloud.com + * @author Bjoern Schiessle, Michael Gapczynski + * @copyright 2012 Michael Gapczynski <mtgap@owncloud.com> + * 2014 Bjoern Schiessle <schiessle@owncloud.com> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE @@ -36,41 +37,7 @@ namespace OCP; * It provides the following hooks: * - post_shared */ -class Share { - - const SHARE_TYPE_USER = 0; - const SHARE_TYPE_GROUP = 1; - const SHARE_TYPE_LINK = 3; - const SHARE_TYPE_EMAIL = 4; - const SHARE_TYPE_CONTACT = 5; - const SHARE_TYPE_REMOTE = 6; - - /** CRUDS permissions (Create, Read, Update, Delete, Share) using a bitmask - * Construct permissions for share() and setPermissions with Or (|) e.g. - * Give user read and update permissions: PERMISSION_READ | PERMISSION_UPDATE - * - * Check if permission is granted with And (&) e.g. Check if delete is - * granted: if ($permissions & PERMISSION_DELETE) - * - * Remove permissions with And (&) and Not (~) e.g. Remove the update - * permission: $permissions &= ~PERMISSION_UPDATE - * - * Apps are required to handle permissions on their own, this class only - * stores and manages the permissions of shares - * @see lib/public/constants.php - */ - - const FORMAT_NONE = -1; - const FORMAT_STATUSES = -2; - const FORMAT_SOURCES = -3; - - const TOKEN_LENGTH = 32; // see db_structure.xml - - private static $shareTypeUserAndGroups = -1; - private static $shareTypeGroupUserUnique = 2; - private static $backends = array(); - private static $backendTypes = array(); - private static $isResharingAllowed; +class Share extends \OC\Share\Constants { /** * Register a sharing backend class that implements OCP\Share_Backend for an item type @@ -78,67 +45,25 @@ class Share { * @param string Backend class * @param string (optional) Depends on item type * @param array (optional) List of supported file extensions if this item type depends on files - * @param string $itemType - * @param string $class - * @param string $collectionOf - * @return boolean true if backend is registered or false if error + * @return Returns true if backend is registered or false if error */ public static function registerBackend($itemType, $class, $collectionOf = null, $supportedFileExtensions = null) { - if (self::isEnabled()) { - if (!isset(self::$backendTypes[$itemType])) { - self::$backendTypes[$itemType] = array( - 'class' => $class, - 'collectionOf' => $collectionOf, - 'supportedFileExtensions' => $supportedFileExtensions - ); - if(count(self::$backendTypes) === 1) { - \OC_Util::addScript('core', 'share'); - \OC_Util::addStyle('core', 'share'); - } - return true; - } - \OC_Log::write('OCP\Share', - 'Sharing backend '.$class.' not registered, '.self::$backendTypes[$itemType]['class'] - .' is already registered for '.$itemType, - \OC_Log::WARN); - } - return false; + return \OC\Share\Share::registerBackend($itemType, $class, $collectionOf, $supportedFileExtensions); } /** * Check if the Share API is enabled - * @return boolean true if enabled or false + * @return Returns true if enabled or false * * The Share API is enabled by default if not configured */ public static function isEnabled() { - if (\OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes') == 'yes') { - return true; - } - return false; - } - - /** - * Prepare a path to be passed to DB as file_target - * @param string $path path - * @return string Prepared path - */ - public static function prepFileTarget( $path ) { - - // Paths in DB are stored with leading slashes, so add one if necessary - if ( substr( $path, 0, 1 ) !== '/' ) { - - $path = '/' . $path; - - } - - return $path; - + return \OC\Share\Share::isEnabled(); } /** * Find which users can access a shared item - * @param string $path to the file + * @param $path to the file * @param $user owner of the file * @param include owner to the list of users with access to the file * @return array @@ -146,101 +71,7 @@ class Share { * not '/admin/data/file.txt' */ public static function getUsersSharingFile($path, $user, $includeOwner = false) { - - $shares = array(); - $publicShare = false; - $source = -1; - $cache = false; - - $view = new \OC\Files\View('/' . $user . '/files'); - if ($view->file_exists($path)) { - $meta = $view->getFileInfo($path); - } else { - // if the file doesn't exists yet we start with the parent folder - $meta = $view->getFileInfo(dirname($path)); - } - - if($meta !== false) { - $source = $meta['fileid']; - $cache = new \OC\Files\Cache\Cache($meta['storage']); - } - - while ($source !== -1) { - - // Fetch all shares with another user - $query = \OC_DB::prepare( - 'SELECT `share_with` - FROM - `*PREFIX*share` - WHERE - `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' - ); - - $result = $query->execute(array($source, self::SHARE_TYPE_USER)); - - if (\OCP\DB::isError($result)) { - \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); - } else { - while ($row = $result->fetchRow()) { - $shares[] = $row['share_with']; - } - } - // We also need to take group shares into account - - $query = \OC_DB::prepare( - 'SELECT `share_with` - FROM - `*PREFIX*share` - WHERE - `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' - ); - - $result = $query->execute(array($source, self::SHARE_TYPE_GROUP)); - - if (\OCP\DB::isError($result)) { - \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); - } else { - while ($row = $result->fetchRow()) { - $usersInGroup = \OC_Group::usersInGroup($row['share_with']); - $shares = array_merge($shares, $usersInGroup); - } - } - - //check for public link shares - if (!$publicShare) { - $query = \OC_DB::prepare( - 'SELECT `share_with` - FROM - `*PREFIX*share` - WHERE - `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' - ); - - $result = $query->execute(array($source, self::SHARE_TYPE_LINK)); - - if (\OCP\DB::isError($result)) { - \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); - } else { - if ($result->fetchRow()) { - $publicShare = true; - } - } - } - - // let's get the parent for the next round - $meta = $cache->get((int)$source); - if($meta !== false) { - $source = (int)$meta['parent']; - } else { - $source = -1; - } - } - // Include owner in list of users, if requested - if ($includeOwner) { - $shares[] = $user; - } - - return array("users" => array_unique($shares), "public" => $publicShare); + return \OC\Share\Share::getUsersSharingFile($path, $user, $includeOwner); } /** @@ -250,13 +81,12 @@ class Share { * @param mixed Parameters (optional) * @param int Number of items to return (optional) Returns all by default * @param bool include collections (optional) - * @param string $itemType * @return Return depends on format */ public static function getItemsSharedWith($itemType, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false) { - return self::getItems($itemType, null, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, - $parameters, $limit, $includeCollections); + + return \OC\Share\Share::getItemsSharedWith($itemType, $format, $parameters, $limit, $includeCollections); } /** @@ -266,12 +96,12 @@ class Share { * @param int $format (optional) Format type must be defined by the backend * @param mixed Parameters (optional) * @param bool include collections (optional) - * @return string depends on format + * @return Return depends on format */ public static function getItemSharedWith($itemType, $itemTarget, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) { - return self::getItems($itemType, $itemTarget, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, - $parameters, 1, $includeCollections); + + return \OC\Share\Share::getItemSharedWith($itemType, $itemTarget, $format, $parameters, $includeCollections); } /** @@ -282,45 +112,7 @@ class Share { * @return array Return list of items with file_target, permissions and expiration */ public static function getItemSharedWithUser($itemType, $itemSource, $user) { - - $shares = array(); - - // first check if there is a db entry for the specific user - $query = \OC_DB::prepare( - 'SELECT `file_target`, `permissions`, `expiration` - FROM - `*PREFIX*share` - WHERE - `item_source` = ? AND `item_type` = ? AND `share_with` = ?' - ); - - $result = \OC_DB::executeAudited($query, array($itemSource, $itemType, $user)); - - while ($row = $result->fetchRow()) { - $shares[] = $row; - } - - //if didn't found a result than let's look for a group share. - if(empty($shares)) { - $groups = \OC_Group::getUserGroups($user); - - $query = \OC_DB::prepare( - 'SELECT `file_target`, `permissions`, `expiration` - FROM - `*PREFIX*share` - WHERE - `item_source` = ? AND `item_type` = ? AND `share_with` in (?)' - ); - - $result = \OC_DB::executeAudited($query, array($itemSource, $itemType, implode(',', $groups))); - - while ($row = $result->fetchRow()) { - $shares[] = $row; - } - } - - return $shares; - + return \OC\Share\Share::getItemSharedWithUser($itemType, $itemSource, $user); } /** @@ -334,8 +126,7 @@ class Share { */ public static function getItemSharedWithBySource($itemType, $itemSource, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) { - return self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, - $parameters, 1, $includeCollections, true); + return \OC\Share\Share::getItemSharedWithBySource($itemType, $itemSource, $format, $parameters, $includeCollections); } /** @@ -346,8 +137,7 @@ class Share { * @return Item */ public static function getItemSharedWithByLink($itemType, $itemSource, $uidOwner) { - return self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, $uidOwner, self::FORMAT_NONE, - null, 1); + return \OC\Share\Share::getItemSharedWithByLink($itemType, $itemSource, $uidOwner); } /** @@ -356,25 +146,7 @@ class Share { * @return array | bool false will be returned in case the token is unknown or unauthorized */ public static function getShareByToken($token, $checkPasswordProtection = true) { - $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `token` = ?', 1); - $result = $query->execute(array($token)); - if (\OC_DB::isError($result)) { - \OC_Log::write('OCP\Share', \OC_DB::getErrorMessage($result) . ', token=' . $token, \OC_Log::ERROR); - } - $row = $result->fetchRow(); - if ($row === false) { - return false; - } - if (is_array($row) and self::expireItem($row)) { - return false; - } - - // password protected shares need to be authenticated - if ($checkPasswordProtection && !\OCP\Share::checkPasswordProtectedShare($row)) { - return false; - } - - return $row; + return \OC\Share\Share::getShareByToken($token, $checkPasswordProtection); } /** @@ -382,21 +154,8 @@ class Share { * @param $linkItem * @return $fileOwner */ - public static function resolveReShare($linkItem) - { - if (isset($linkItem['parent'])) { - $parent = $linkItem['parent']; - while (isset($parent)) { - $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `id` = ?', 1); - $item = $query->execute(array($parent))->fetchRow(); - if (isset($item['parent'])) { - $parent = $item['parent']; - } else { - return $item; - } - } - } - return $linkItem; + public static function resolveReShare($linkItem) { + return \OC\Share\Share::resolveReShare($linkItem); } @@ -407,13 +166,12 @@ class Share { * @param mixed Parameters * @param int Number of items to return (optional) Returns all by default * @param bool include collections - * @param string $itemType * @return Return depends on format */ public static function getItemsShared($itemType, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false) { - return self::getItems($itemType, null, null, null, \OC_User::getUser(), $format, - $parameters, $limit, $includeCollections); + + return \OC\Share\Share::getItemsShared($itemType, $format, $parameters, $limit, $includeCollections); } /** @@ -427,8 +185,8 @@ class Share { */ public static function getItemShared($itemType, $itemSource, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) { - return self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), $format, - $parameters, -1, $includeCollections); + + return \OC\Share\Share::getItemShared($itemType, $itemSource, $format, $parameters, $includeCollections); } /** @@ -441,19 +199,7 @@ class Share { * @return Return array of users */ public static function getUsersItemShared($itemType, $itemSource, $uidOwner, $includeCollections = false, $checkExpireDate = true) { - - $users = array(); - $items = self::getItems($itemType, $itemSource, null, null, $uidOwner, self::FORMAT_NONE, null, -1, $includeCollections, false, $checkExpireDate); - if ($items) { - foreach ($items as $item) { - if ((int)$item['share_type'] === self::SHARE_TYPE_USER) { - $users[] = $item['share_with']; - } else if ((int)$item['share_type'] === self::SHARE_TYPE_GROUP) { - $users = array_merge($users, \OC_Group::usersInGroup($item['share_with'])); - } - } - } - return $users; + return \OC\Share\Share::getUsersItemShared($itemType, $itemSource, $uidOwner, $includeCollections, $checkExpireDate); } /** @@ -473,176 +219,7 @@ class Share { * @return bool|string Returns true on success or false on failure, Returns token on success for links */ public static function shareItem($itemType, $itemSource, $shareType, $shareWith, $permissions, $itemSourceName = null) { - $uidOwner = \OC_User::getUser(); - $sharingPolicy = \OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global'); - - if (is_null($itemSourceName)) { - $itemSourceName = $itemSource; - } - - // Verify share type and sharing conditions are met - if ($shareType === self::SHARE_TYPE_USER) { - if ($shareWith == $uidOwner) { - $message = 'Sharing '.$itemSourceName.' failed, because the user '.$shareWith.' is the item owner'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - if (!\OC_User::userExists($shareWith)) { - $message = 'Sharing '.$itemSourceName.' failed, because the user '.$shareWith.' does not exist'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - if ($sharingPolicy == 'groups_only') { - $inGroup = array_intersect(\OC_Group::getUserGroups($uidOwner), \OC_Group::getUserGroups($shareWith)); - if (empty($inGroup)) { - $message = 'Sharing '.$itemSourceName.' failed, because the user ' - .$shareWith.' is not a member of any groups that '.$uidOwner.' is a member of'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } - // Check if the item source is already shared with the user, either from the same owner or a different user - if ($checkExists = self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, - $shareWith, null, self::FORMAT_NONE, null, 1, true, true)) { - // Only allow the same share to occur again if it is the same - // owner and is not a user share, this use case is for increasing - // permissions for a specific user - if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) { - $message = 'Sharing '.$itemSourceName.' failed, because this item is already shared with '.$shareWith; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } - } else if ($shareType === self::SHARE_TYPE_GROUP) { - if (!\OC_Group::groupExists($shareWith)) { - $message = 'Sharing '.$itemSourceName.' failed, because the group '.$shareWith.' does not exist'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - if ($sharingPolicy == 'groups_only' && !\OC_Group::inGroup($uidOwner, $shareWith)) { - $message = 'Sharing '.$itemSourceName.' failed, because ' - .$uidOwner.' is not a member of the group '.$shareWith; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - // Check if the item source is already shared with the group, either from the same owner or a different user - // The check for each user in the group is done inside the put() function - if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_GROUP, $shareWith, - null, self::FORMAT_NONE, null, 1, true, true)) { - // Only allow the same share to occur again if it is the same - // owner and is not a group share, this use case is for increasing - // permissions for a specific user - if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) { - $message = 'Sharing '.$itemSourceName.' failed, because this item is already shared with '.$shareWith; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } - // Convert share with into an array with the keys group and users - $group = $shareWith; - $shareWith = array(); - $shareWith['group'] = $group; - $shareWith['users'] = array_diff(\OC_Group::usersInGroup($group), array($uidOwner)); - } else if ($shareType === self::SHARE_TYPE_LINK) { - if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') == 'yes') { - // when updating a link share - if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, - $uidOwner, self::FORMAT_NONE, null, 1)) { - // remember old token - $oldToken = $checkExists['token']; - $oldPermissions = $checkExists['permissions']; - //delete the old share - self::delete($checkExists['id']); - } - - // Generate hash of password - same method as user passwords - if (isset($shareWith)) { - $forcePortable = (CRYPT_BLOWFISH != 1); - $hasher = new \PasswordHash(8, $forcePortable); - $shareWith = $hasher->HashPassword($shareWith.\OC_Config::getValue('passwordsalt', '')); - } else { - // reuse the already set password, but only if we change permissions - // otherwise the user disabled the password protection - if ($checkExists && (int)$permissions !== (int)$oldPermissions) { - $shareWith = $checkExists['share_with']; - } - } - - // Generate token - if (isset($oldToken)) { - $token = $oldToken; - } else { - $token = \OC_Util::generateRandomBytes(self::TOKEN_LENGTH); - } - $result = self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, - null, $token, $itemSourceName); - if ($result) { - return $token; - } else { - return false; - } - } - $message = 'Sharing '.$itemSourceName.' failed, because sharing with links is not allowed'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - return false; -// } else if ($shareType === self::SHARE_TYPE_CONTACT) { -// if (!\OC_App::isEnabled('contacts')) { -// $message = 'Sharing '.$itemSource.' failed, because the contacts app is not enabled'; -// \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); -// return false; -// } -// $vcard = \OC_Contacts_App::getContactVCard($shareWith); -// if (!isset($vcard)) { -// $message = 'Sharing '.$itemSource.' failed, because the contact does not exist'; -// \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); -// throw new \Exception($message); -// } -// $details = \OC_Contacts_VCard::structureContact($vcard); -// // TODO Add ownCloud user to contacts vcard -// if (!isset($details['EMAIL'])) { -// $message = 'Sharing '.$itemSource.' failed, because no email address is associated with the contact'; -// \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); -// throw new \Exception($message); -// } -// return self::shareItem($itemType, $itemSource, self::SHARE_TYPE_EMAIL, $details['EMAIL'], $permissions); - } else { - // Future share types need to include their own conditions - $message = 'Share type '.$shareType.' is not valid for '.$itemSource; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - // If the item is a folder, scan through the folder looking for equivalent item types -// if ($itemType == 'folder') { -// $parentFolder = self::put('folder', $itemSource, $shareType, $shareWith, $uidOwner, $permissions, true); -// if ($parentFolder && $files = \OC\Files\Filesystem::getDirectoryContent($itemSource)) { -// for ($i = 0; $i < count($files); $i++) { -// $name = substr($files[$i]['name'], strpos($files[$i]['name'], $itemSource) - strlen($itemSource)); -// if ($files[$i]['mimetype'] == 'httpd/unix-directory' -// && $children = \OC\Files\Filesystem::getDirectoryContent($name, '/') -// ) { -// // Continue scanning into child folders -// array_push($files, $children); -// } else { -// // Check file extension for an equivalent item type to convert to -// $extension = strtolower(substr($itemSource, strrpos($itemSource, '.') + 1)); -// foreach (self::$backends as $type => $backend) { -// if (isset($backend->dependsOn) && $backend->dependsOn == 'file' && isset($backend->supportedFileExtensions) && in_array($extension, $backend->supportedFileExtensions)) { -// $itemType = $type; -// break; -// } -// } -// // Pass on to put() to check if this item should be converted, the item won't be inserted into the database unless it can be converted -// self::put($itemType, $name, $shareType, $shareWith, $uidOwner, $permissions, $parentFolder); -// } -// } -// return true; -// } -// return false; -// } else { - // Put the item into the database - return self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, null, null, $itemSourceName); -// } + return \OC\Share\Share::shareItem($itemType, $itemSource, $shareType, $shareWith, $permissions, $itemSourceName); } /** @@ -651,88 +228,32 @@ class Share { * @param string Item source * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK * @param string User or group the item is being shared with - * @return boolean true on success or false on failure + * @return Returns true on success or false on failure */ public static function unshare($itemType, $itemSource, $shareType, $shareWith) { - if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), - self::FORMAT_NONE, null, 1)) { - self::unshareItem($item); - return true; - } - return false; + return \OC\Share\Share::unshare($itemType, $itemSource, $shareType, $shareWith); } /** * Unshare an item from all users, groups, and remove all links * @param string Item type * @param string Item source - * @param string $itemType - * @param string $itemSource - * @return boolean true on success or false on failure + * @return Returns true on success or false on failure */ public static function unshareAll($itemType, $itemSource) { - // Get all of the owners of shares of this item. - $query = \OC_DB::prepare( 'SELECT `uid_owner` from `*PREFIX*share` WHERE `item_type`=? AND `item_source`=?' ); - $result = $query->execute(array($itemType, $itemSource)); - $shares = array(); - // Add each owner's shares to the array of all shares for this item. - while ($row = $result->fetchRow()) { - $shares = array_merge($shares, self::getItems($itemType, $itemSource, null, null, $row['uid_owner'])); - } - if (!empty($shares)) { - // Pass all the vars we have for now, they may be useful - $hookParams = array( - 'itemType' => $itemType, - 'itemSource' => $itemSource, - 'shares' => $shares, - ); - \OC_Hook::emit('OCP\Share', 'pre_unshareAll', $hookParams); - foreach ($shares as $share) { - self::unshareItem($share); - } - \OC_Hook::emit('OCP\Share', 'post_unshareAll', $hookParams); - return true; - } - return false; + return \OC\Share\Share::unshareAll($itemType, $itemSource); } /** * Unshare an item shared with the current user * @param string Item type * @param string Item target - * @param string $itemType - * @param string $itemTarget - * @return boolean true on success or false on failure + * @return Returns true on success or false on failure * * Unsharing from self is not allowed for items inside collections */ public static function unshareFromSelf($itemType, $itemTarget) { - if ($item = self::getItemSharedWith($itemType, $itemTarget)) { - if ((int)$item['share_type'] === self::SHARE_TYPE_GROUP) { - // Insert an extra row for the group share and set permission - // to 0 to prevent it from showing up for the user - $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share`' - .' (`item_type`, `item_source`, `item_target`, `parent`, `share_type`,' - .' `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`)' - .' VALUES (?,?,?,?,?,?,?,?,?,?,?)'); - $query->execute(array($item['item_type'], $item['item_source'], $item['item_target'], - $item['id'], self::$shareTypeGroupUserUnique, - \OC_User::getUser(), $item['uid_owner'], 0, $item['stime'], $item['file_source'], - $item['file_target'])); - \OC_DB::insertid('*PREFIX*share'); - // Delete all reshares by this user of the group share - self::delete($item['id'], true, \OC_User::getUser()); - } else if ((int)$item['share_type'] === self::$shareTypeGroupUserUnique) { - // Set permission to 0 to prevent it from showing up for the user - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?'); - $query->execute(array(0, $item['id'])); - self::delete($item['id'], true); - } else { - self::delete($item['id']); - } - return true; - } - return false; + return \OC\Share\Share::unshareFromSelf($itemType, $itemTarget); } /** * sent status if users got informed by mail about share @@ -742,102 +263,20 @@ class Share { * @param bool $status */ public static function setSendMailStatus($itemType, $itemSource, $shareType, $status) { - $status = $status ? 1 : 0; - - $query = \OC_DB::prepare( - 'UPDATE `*PREFIX*share` - SET `mail_send` = ? - WHERE `item_type` = ? AND `item_source` = ? AND `share_type` = ?'); - - $result = $query->execute(array($status, $itemType, $itemSource, $shareType)); - - if($result === false) { - \OC_Log::write('OCP\Share', 'Couldn\'t set send mail status', \OC_Log::ERROR); - } + return \OC\Share\Share::setSendMailStatus($itemType, $itemSource, $shareType, $status); } /** * Set the permissions of an item for a specific user or group - * @param string $itemType Item type - * @param string $itemSource Item source - * @param int $shareType SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK - * @param string $shareWith User or group the item is being shared with - * @param integer|null $permissions CRUDS - * @return boolean true on success or false on failure + * @param string Item type + * @param string Item source + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string User or group the item is being shared with + * @param int CRUDS permissions + * @return Returns true on success or false on failure */ public static function setPermissions($itemType, $itemSource, $shareType, $shareWith, $permissions) { - if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, - \OC_User::getUser(), self::FORMAT_NONE, null, 1, false)) { - // Check if this item is a reshare and verify that the permissions - // granted don't exceed the parent shared item - if (isset($item['parent'])) { - $query = \OC_DB::prepare('SELECT `permissions` FROM `*PREFIX*share` WHERE `id` = ?', 1); - $result = $query->execute(array($item['parent']))->fetchRow(); - if (~(int)$result['permissions'] & $permissions) { - $message = 'Setting permissions for '.$itemSource.' failed,' - .' because the permissions exceed permissions granted to '.\OC_User::getUser(); - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?'); - $query->execute(array($permissions, $item['id'])); - if ($itemType === 'file' || $itemType === 'folder') { - \OC_Hook::emit('OCP\Share', 'post_update_permissions', array( - 'itemType' => $itemType, - 'itemSource' => $itemSource, - 'shareType' => $shareType, - 'shareWith' => $shareWith, - 'uidOwner' => \OC_User::getUser(), - 'permissions' => $permissions, - 'path' => $item['path'], - )); - } - // Check if permissions were removed - if ($item['permissions'] & ~$permissions) { - // If share permission is removed all reshares must be deleted - if (($item['permissions'] & PERMISSION_SHARE) && (~$permissions & PERMISSION_SHARE)) { - self::delete($item['id'], true); - } else { - $ids = array(); - $parents = array($item['id']); - while (!empty($parents)) { - $parents = "'".implode("','", $parents)."'"; - $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share`' - .' WHERE `parent` IN ('.$parents.')'); - $result = $query->execute(); - // Reset parents array, only go through loop again if - // items are found that need permissions removed - $parents = array(); - while ($item = $result->fetchRow()) { - // Check if permissions need to be removed - if ($item['permissions'] & ~$permissions) { - // Add to list of items that need permissions removed - $ids[] = $item['id']; - $parents[] = $item['id']; - } - } - } - // Remove the permissions for all reshares of this item - if (!empty($ids)) { - $ids = "'".implode("','", $ids)."'"; - // TODO this should be done with Doctrine platform objects - if (\OC_Config::getValue( "dbtype") === 'oci') { - $andOp = 'BITAND(`permissions`, ?)'; - } else { - $andOp = '`permissions` & ?'; - } - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = '.$andOp - .' WHERE `id` IN ('.$ids.')'); - $query->execute(array($permissions)); - } - } - } - return true; - } - $message = 'Setting permissions for '.$itemSource.' failed, because the item was not found'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + return \OC\Share\Share::setPermissions($itemType, $itemSource, $shareType, $shareWith, $permissions); } /** @@ -845,67 +284,10 @@ class Share { * @param string $itemType * @param string $itemSource * @param string $date expiration date - * @return boolean + * @return Share_Backend */ public static function setExpirationDate($itemType, $itemSource, $date) { - if ($items = self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), - self::FORMAT_NONE, null, -1, false)) { - if (!empty($items)) { - if ($date == '') { - $date = null; - } else { - $date = new \DateTime($date); - } - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `expiration` = ? WHERE `id` = ?'); - $query->bindValue(1, $date, 'datetime'); - foreach ($items as $item) { - $query->bindValue(2, (int) $item['id']); - $query->execute(); - } - return true; - } - } - return false; - } - - /** - * Checks whether a share has expired, calls unshareItem() if yes. - * @param array $item Share data (usually database row) - * @return bool True if item was expired, false otherwise. - */ - protected static function expireItem(array $item) { - if (!empty($item['expiration'])) { - $now = new \DateTime(); - $expires = new \DateTime($item['expiration']); - if ($now > $expires) { - self::unshareItem($item); - return true; - } - } - return false; - } - - /** - * Unshares a share given a share data array - * @param array $item Share data (usually database row) - * @return null - */ - protected static function unshareItem(array $item) { - // Pass all the vars we have for now, they may be useful - $hookParams = array( - 'itemType' => $item['item_type'], - 'itemSource' => $item['item_source'], - 'shareType' => $item['share_type'], - 'shareWith' => $item['share_with'], - 'itemParent' => $item['parent'], - 'uidOwner' => $item['uid_owner'], - ); - - \OC_Hook::emit('OCP\Share', 'pre_unshare', $hookParams + array( - 'fileSource' => $item['file_source'], - )); - self::delete($item['id']); - \OC_Hook::emit('OCP\Share', 'post_unshare', $hookParams); + return \OC\Share\Share::setExpirationDate($itemType, $itemSource, $date); } /** @@ -914,1018 +296,14 @@ class Share { * @return Share_Backend */ public static function getBackend($itemType) { - if (isset(self::$backends[$itemType])) { - return self::$backends[$itemType]; - } else if (isset(self::$backendTypes[$itemType]['class'])) { - $class = self::$backendTypes[$itemType]['class']; - if (class_exists($class)) { - self::$backends[$itemType] = new $class; - if (!(self::$backends[$itemType] instanceof Share_Backend)) { - $message = 'Sharing backend '.$class.' must implement the interface OCP\Share_Backend'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - return self::$backends[$itemType]; - } else { - $message = 'Sharing backend '.$class.' not found'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } - $message = 'Sharing backend for '.$itemType.' not found'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - - /** - * Check if resharing is allowed - * @return boolean true if allowed or false - * - * Resharing is allowed by default if not configured - */ - private static function isResharingAllowed() { - if (!isset(self::$isResharingAllowed)) { - if (\OC_Appconfig::getValue('core', 'shareapi_allow_resharing', 'yes') == 'yes') { - self::$isResharingAllowed = true; - } else { - self::$isResharingAllowed = false; - } - } - return self::$isResharingAllowed; - } - - /** - * Get a list of collection item types for the specified item type - * @param string Item type - * @return array - */ - private static function getCollectionItemTypes($itemType) { - $collectionTypes = array($itemType); - foreach (self::$backendTypes as $type => $backend) { - if (in_array($backend['collectionOf'], $collectionTypes)) { - $collectionTypes[] = $type; - } - } - // TODO Add option for collections to be collection of themselves, only 'folder' does it now... - if (!self::getBackend($itemType) instanceof Share_Backend_Collection || $itemType != 'folder') { - unset($collectionTypes[0]); - } - // Return array if collections were found or the item type is a - // collection itself - collections can be inside collections - if (count($collectionTypes) > 0) { - return $collectionTypes; - } - return false; - } - - /** - * Get shared items from the database - * @param string Item type - * @param string Item source or target (optional) - * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, SHARE_TYPE_LINK, $shareTypeUserAndGroups, or $shareTypeGroupUserUnique - * @param string User or group the item is being shared with - * @param string User that is the owner of shared items (optional) - * @param int Format to convert items to with formatItems() - * @param mixed Parameters to pass to formatItems() - * @param int Number of items to return, -1 to return all matches (optional) - * @param bool Include collection item types (optional) - * @param bool TODO (optional) - * @prams bool check expire date - * @return mixed - * - * See public functions getItem(s)... for parameter usage - * - */ - private static function getItems($itemType, $item = null, $shareType = null, $shareWith = null, - $uidOwner = null, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, - $includeCollections = false, $itemShareWithBySource = false, $checkExpireDate = true) { - if (!self::isEnabled()) { - if ($limit == 1 || (isset($uidOwner) && isset($item))) { - return false; - } else { - return array(); - } - } - $backend = self::getBackend($itemType); - $collectionTypes = false; - // Get filesystem root to add it to the file target and remove from the - // file source, match file_source with the file cache - if ($itemType == 'file' || $itemType == 'folder') { - if(!is_null($uidOwner)) { - $root = \OC\Files\Filesystem::getRoot(); - } else { - $root = ''; - } - $where = 'INNER JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid`'; - if (!isset($item)) { - $where .= ' WHERE `file_target` IS NOT NULL'; - } - $fileDependent = true; - $queryArgs = array(); - } else { - $fileDependent = false; - $root = ''; - if ($includeCollections && !isset($item) && ($collectionTypes = self::getCollectionItemTypes($itemType))) { - // If includeCollections is true, find collections of this item type, e.g. a music album contains songs - if (!in_array($itemType, $collectionTypes)) { - $itemTypes = array_merge(array($itemType), $collectionTypes); - } else { - $itemTypes = $collectionTypes; - } - $placeholders = join(',', array_fill(0, count($itemTypes), '?')); - $where = ' WHERE `item_type` IN ('.$placeholders.'))'; - $queryArgs = $itemTypes; - } else { - $where = ' WHERE `item_type` = ?'; - $queryArgs = array($itemType); - } - } - if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') !== 'yes') { - $where .= ' AND `share_type` != ?'; - $queryArgs[] = self::SHARE_TYPE_LINK; - } - if (isset($shareType)) { - // Include all user and group items - if ($shareType == self::$shareTypeUserAndGroups && isset($shareWith)) { - $where .= ' AND `share_type` IN (?,?,?)'; - $queryArgs[] = self::SHARE_TYPE_USER; - $queryArgs[] = self::SHARE_TYPE_GROUP; - $queryArgs[] = self::$shareTypeGroupUserUnique; - $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith)); - $placeholders = join(',', array_fill(0, count($userAndGroups), '?')); - $where .= ' AND `share_with` IN ('.$placeholders.')'; - $queryArgs = array_merge($queryArgs, $userAndGroups); - // Don't include own group shares - $where .= ' AND `uid_owner` != ?'; - $queryArgs[] = $shareWith; - } else { - $where .= ' AND `share_type` = ?'; - $queryArgs[] = $shareType; - if (isset($shareWith)) { - $where .= ' AND `share_with` = ?'; - $queryArgs[] = $shareWith; - } - } - } - if (isset($uidOwner)) { - $where .= ' AND `uid_owner` = ?'; - $queryArgs[] = $uidOwner; - if (!isset($shareType)) { - // Prevent unique user targets for group shares from being selected - $where .= ' AND `share_type` != ?'; - $queryArgs[] = self::$shareTypeGroupUserUnique; - } - if ($itemType == 'file' || $itemType == 'folder') { - $column = 'file_source'; - } else { - $column = 'item_source'; - } - } else { - if ($itemType == 'file' || $itemType == 'folder') { - $column = 'file_target'; - } else { - $column = 'item_target'; - } - } - if (isset($item)) { - if ($includeCollections && $collectionTypes = self::getCollectionItemTypes($itemType)) { - $where .= ' AND ('; - } else { - $where .= ' AND'; - } - // If looking for own shared items, check item_source else check item_target - if (isset($uidOwner) || $itemShareWithBySource) { - // If item type is a file, file source needs to be checked in case the item was converted - if ($itemType == 'file' || $itemType == 'folder') { - $where .= ' `file_source` = ?'; - $column = 'file_source'; - } else { - $where .= ' `item_source` = ?'; - $column = 'item_source'; - } - } else { - if ($itemType == 'file' || $itemType == 'folder') { - $where .= ' `file_target` = ?'; - $item = \OC\Files\Filesystem::normalizePath($item); - } else { - $where .= ' `item_target` = ?'; - } - } - $queryArgs[] = $item; - if ($includeCollections && $collectionTypes) { - $placeholders = join(',', array_fill(0, count($collectionTypes), '?')); - $where .= ' OR `item_type` IN ('.$placeholders.'))'; - $queryArgs = array_merge($queryArgs, $collectionTypes); - } - } - if ($limit != -1 && !$includeCollections) { - if ($shareType == self::$shareTypeUserAndGroups) { - // Make sure the unique user target is returned if it exists, - // unique targets should follow the group share in the database - // If the limit is not 1, the filtering can be done later - $where .= ' ORDER BY `*PREFIX*share`.`id` DESC'; - } - // The limit must be at least 3, because filtering needs to be done - if ($limit < 3) { - $queryLimit = 3; - } else { - $queryLimit = $limit; - } - } else { - $queryLimit = null; - } - // TODO Optimize selects - if ($format == self::FORMAT_STATUSES) { - if ($itemType == 'file' || $itemType == 'folder') { - $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`,' - .' `share_type`, `file_source`, `path`, `expiration`, `storage`, `share_with`, `mail_send`, `uid_owner`'; - } else { - $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `expiration`, `mail_send`, `uid_owner`'; - } - } else { - if (isset($uidOwner)) { - if ($itemType == 'file' || $itemType == 'folder') { - $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`,' - .' `share_type`, `share_with`, `file_source`, `path`, `permissions`, `stime`,' - .' `expiration`, `token`, `storage`, `mail_send`, `uid_owner`'; - } else { - $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `permissions`,' - .' `stime`, `file_source`, `expiration`, `token`, `mail_send`, `uid_owner`'; - } - } else { - if ($fileDependent) { - if (($itemType == 'file' || $itemType == 'folder') - && $format == \OC_Share_Backend_File::FORMAT_GET_FOLDER_CONTENTS - || $format == \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT - ) { - $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`, `uid_owner`, ' - .'`share_type`, `share_with`, `file_source`, `path`, `file_target`, ' - .'`permissions`, `expiration`, `storage`, `*PREFIX*filecache`.`parent` as `file_parent`, ' - .'`name`, `mtime`, `mimetype`, `mimepart`, `size`, `unencrypted_size`, `encrypted`, `etag`, `mail_send`'; - } else { - $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`, - `*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`, - `file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`, `token`, `storage`, `mail_send`'; - } - } else { - $select = '*'; - } - } - } - $root = strlen($root); - $query = \OC_DB::prepare('SELECT '.$select.' FROM `*PREFIX*share` '.$where, $queryLimit); - $result = $query->execute($queryArgs); - if (\OC_DB::isError($result)) { - \OC_Log::write('OCP\Share', - \OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=' . $where, - \OC_Log::ERROR); - } - $items = array(); - $targets = array(); - $switchedItems = array(); - $mounts = array(); - while ($row = $result->fetchRow()) { - if (isset($row['id'])) { - $row['id']=(int)$row['id']; - } - if (isset($row['share_type'])) { - $row['share_type']=(int)$row['share_type']; - } - if (isset($row['parent'])) { - $row['parent']=(int)$row['parent']; - } - if (isset($row['file_parent'])) { - $row['file_parent']=(int)$row['file_parent']; - } - if (isset($row['file_source'])) { - $row['file_source']=(int)$row['file_source']; - } - if (isset($row['permissions'])) { - $row['permissions']=(int)$row['permissions']; - } - if (isset($row['storage'])) { - $row['storage']=(int)$row['storage']; - } - if (isset($row['stime'])) { - $row['stime']=(int)$row['stime']; - } - // Filter out duplicate group shares for users with unique targets - if ($row['share_type'] == self::$shareTypeGroupUserUnique && isset($items[$row['parent']])) { - $row['share_type'] = self::SHARE_TYPE_GROUP; - $row['share_with'] = $items[$row['parent']]['share_with']; - // Remove the parent group share - unset($items[$row['parent']]); - if ($row['permissions'] == 0) { - continue; - } - } else if (!isset($uidOwner)) { - // Check if the same target already exists - if (isset($targets[$row[$column]])) { - // Check if the same owner shared with the user twice - // through a group and user share - this is allowed - $id = $targets[$row[$column]]; - if (isset($items[$id]) && $items[$id]['uid_owner'] == $row['uid_owner']) { - // Switch to group share type to ensure resharing conditions aren't bypassed - if ($items[$id]['share_type'] != self::SHARE_TYPE_GROUP) { - $items[$id]['share_type'] = self::SHARE_TYPE_GROUP; - $items[$id]['share_with'] = $row['share_with']; - } - // Switch ids if sharing permission is granted on only - // one share to ensure correct parent is used if resharing - if (~(int)$items[$id]['permissions'] & PERMISSION_SHARE - && (int)$row['permissions'] & PERMISSION_SHARE) { - $items[$row['id']] = $items[$id]; - $switchedItems[$id] = $row['id']; - unset($items[$id]); - $id = $row['id']; - } - // Combine the permissions for the item - $items[$id]['permissions'] |= (int)$row['permissions']; - continue; - } - } else { - $targets[$row[$column]] = $row['id']; - } - } - // Remove root from file source paths if retrieving own shared items - if (isset($uidOwner) && isset($row['path'])) { - if (isset($row['parent'])) { - // FIXME: Doesn't always construct the correct path, example: - // Folder '/a/b', share '/a' and '/a/b' to user2 - // user2 reshares /Shared/b and ask for share status of /Shared/a/b - // expected result: path=/Shared/a/b; actual result /Shared/b because of the parent - $query = \OC_DB::prepare('SELECT `file_target` FROM `*PREFIX*share` WHERE `id` = ?'); - $parentResult = $query->execute(array($row['parent'])); - if (\OC_DB::isError($result)) { - \OC_Log::write('OCP\Share', 'Can\'t select parent: ' . - \OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=' . $where, - \OC_Log::ERROR); - } else { - $parentRow = $parentResult->fetchRow(); - $tmpPath = '/Shared' . $parentRow['file_target']; - // find the right position where the row path continues from the target path - $pos = strrpos($row['path'], $parentRow['file_target']); - $subPath = substr($row['path'], $pos); - $splitPath = explode('/', $subPath); - foreach (array_slice($splitPath, 2) as $pathPart) { - $tmpPath = $tmpPath . '/' . $pathPart; - } - $row['path'] = $tmpPath; - } - } else { - if (!isset($mounts[$row['storage']])) { - $mountPoints = \OC\Files\Filesystem::getMountByNumericId($row['storage']); - if (is_array($mountPoints)) { - $mounts[$row['storage']] = current($mountPoints); - } - } - if ($mounts[$row['storage']]) { - $path = $mounts[$row['storage']]->getMountPoint().$row['path']; - $row['path'] = substr($path, $root); - } - } - } - if($checkExpireDate) { - if (self::expireItem($row)) { - continue; - } - } - // Check if resharing is allowed, if not remove share permission - if (isset($row['permissions']) && !self::isResharingAllowed()) { - $row['permissions'] &= ~PERMISSION_SHARE; - } - // Add display names to result - if ( isset($row['share_with']) && $row['share_with'] != '') { - $row['share_with_displayname'] = \OCP\User::getDisplayName($row['share_with']); - } - if ( isset($row['uid_owner']) && $row['uid_owner'] != '') { - $row['displayname_owner'] = \OCP\User::getDisplayName($row['uid_owner']); - } - - $items[$row['id']] = $row; - } - if (!empty($items)) { - $collectionItems = array(); - foreach ($items as &$row) { - // Return only the item instead of a 2-dimensional array - if ($limit == 1 && $row[$column] == $item && ($row['item_type'] == $itemType || $itemType == 'file')) { - if ($format == self::FORMAT_NONE) { - return $row; - } else { - break; - } - } - // Check if this is a collection of the requested item type - if ($includeCollections && $collectionTypes && in_array($row['item_type'], $collectionTypes)) { - if (($collectionBackend = self::getBackend($row['item_type'])) - && $collectionBackend instanceof Share_Backend_Collection) { - // Collections can be inside collections, check if the item is a collection - if (isset($item) && $row['item_type'] == $itemType && $row[$column] == $item) { - $collectionItems[] = $row; - } else { - $collection = array(); - $collection['item_type'] = $row['item_type']; - if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') { - $collection['path'] = basename($row['path']); - } - $row['collection'] = $collection; - // Fetch all of the children sources - $children = $collectionBackend->getChildren($row[$column]); - foreach ($children as $child) { - $childItem = $row; - $childItem['item_type'] = $itemType; - if ($row['item_type'] != 'file' && $row['item_type'] != 'folder') { - $childItem['item_source'] = $child['source']; - $childItem['item_target'] = $child['target']; - } - if ($backend instanceof Share_Backend_File_Dependent) { - if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') { - $childItem['file_source'] = $child['source']; - } else { - $meta = \OC\Files\Filesystem::getFileInfo($child['file_path']); - $childItem['file_source'] = $meta['fileid']; - } - $childItem['file_target'] = - \OC\Files\Filesystem::normalizePath($child['file_path']); - } - if (isset($item)) { - if ($childItem[$column] == $item) { - // Return only the item instead of a 2-dimensional array - if ($limit == 1) { - if ($format == self::FORMAT_NONE) { - return $childItem; - } else { - // Unset the items array and break out of both loops - $items = array(); - $items[] = $childItem; - break 2; - } - } else { - $collectionItems[] = $childItem; - } - } - } else { - $collectionItems[] = $childItem; - } - } - } - } - // Remove collection item - $toRemove = $row['id']; - if (array_key_exists($toRemove, $switchedItems)) { - $toRemove = $switchedItems[$toRemove]; - } - unset($items[$toRemove]); - } - } - if (!empty($collectionItems)) { - $items = array_merge($items, $collectionItems); - } - if (empty($items) && $limit == 1) { - return false; - } - if ($format == self::FORMAT_NONE) { - return $items; - } else if ($format == self::FORMAT_STATUSES) { - $statuses = array(); - foreach ($items as $item) { - if ($item['share_type'] == self::SHARE_TYPE_LINK) { - $statuses[$item[$column]]['link'] = true; - } else if (!isset($statuses[$item[$column]])) { - $statuses[$item[$column]]['link'] = false; - } - if ($itemType == 'file' || $itemType == 'folder') { - $statuses[$item[$column]]['path'] = $item['path']; - } - } - return $statuses; - } else { - return $backend->formatItems($items, $format, $parameters); - } - } else if ($limit == 1 || (isset($uidOwner) && isset($item))) { - return false; - } - return array(); - } - - /** - * Put shared item into the database - * @param string $itemType Item type - * @param string $itemSource Item source - * @param integer $shareType SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK - * @param string $shareWith User or group the item is being shared with - * @param string $uidOwner User that is the owner of shared item - * @param int $permissions CRUDS permissions - * @param bool|array, $parentFolder Parent folder target (optional) - * @param string $token (optional) - * @param string $itemSourceName name of the source item (optional) - * @return bool Returns true on success or false on failure - */ - private static function put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, - $permissions, $parentFolder = null, $token = null, $itemSourceName = null) { - $backend = self::getBackend($itemType); - - // Check if this is a reshare - if ($checkReshare = self::getItemSharedWithBySource($itemType, $itemSource, self::FORMAT_NONE, null, true)) { - - // Check if attempting to share back to owner - if ($checkReshare['uid_owner'] == $shareWith && $shareType == self::SHARE_TYPE_USER) { - $message = 'Sharing '.$itemSourceName.' failed, because the user '.$shareWith.' is the original sharer'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - // Check if share permissions is granted - if (self::isResharingAllowed() && (int)$checkReshare['permissions'] & PERMISSION_SHARE) { - if (~(int)$checkReshare['permissions'] & $permissions) { - $message = 'Sharing '.$itemSourceName - .' failed, because the permissions exceed permissions granted to '.$uidOwner; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } else { - // TODO Don't check if inside folder - $parent = $checkReshare['id']; - $itemSource = $checkReshare['item_source']; - $fileSource = $checkReshare['file_source']; - $suggestedItemTarget = $checkReshare['item_target']; - $suggestedFileTarget = $checkReshare['file_target']; - $filePath = $checkReshare['file_target']; - } - } else { - $message = 'Sharing '.$itemSourceName.' failed, because resharing is not allowed'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } else { - $parent = null; - $suggestedItemTarget = null; - $suggestedFileTarget = null; - if (!$backend->isValidSource($itemSource, $uidOwner)) { - $message = 'Sharing '.$itemSource.' failed, because the sharing backend for ' - .$itemType.' could not find its source'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - $parent = null; - if ($backend instanceof Share_Backend_File_Dependent) { - $filePath = $backend->getFilePath($itemSource, $uidOwner); - if ($itemType == 'file' || $itemType == 'folder') { - $fileSource = $itemSource; - } else { - $meta = \OC\Files\Filesystem::getFileInfo($filePath); - $fileSource = $meta['fileid']; - } - if ($fileSource == -1) { - $message = 'Sharing '.$itemSource.' failed, because the file could not be found in the file cache'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } else { - $filePath = null; - $fileSource = null; - } - } - $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`,' - .' `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`,' - .' `file_target`, `token`) VALUES (?,?,?,?,?,?,?,?,?,?,?,?)'); - // Share with a group - if ($shareType == self::SHARE_TYPE_GROUP) { - $groupItemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'], - $uidOwner, $suggestedItemTarget); - $run = true; - $error = ''; - \OC_Hook::emit('OCP\Share', 'pre_shared', array( - 'itemType' => $itemType, - 'itemSource' => $itemSource, - 'itemTarget' => $groupItemTarget, - 'shareType' => $shareType, - 'shareWith' => $shareWith['group'], - 'uidOwner' => $uidOwner, - 'permissions' => $permissions, - 'fileSource' => $fileSource, - 'token' => $token, - 'run' => &$run, - 'error' => &$error - )); - - if ($run === false) { - throw new \Exception($error); - } - - if (isset($fileSource)) { - if ($parentFolder) { - if ($parentFolder === true) { - $groupFileTarget = self::generateTarget('file', $filePath, $shareType, - $shareWith['group'], $uidOwner, $suggestedFileTarget); - // Set group default file target for future use - $parentFolders[0]['folder'] = $groupFileTarget; - } else { - // Get group default file target - $groupFileTarget = $parentFolder[0]['folder'].$itemSource; - $parent = $parentFolder[0]['id']; - } - } else { - $groupFileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith['group'], - $uidOwner, $suggestedFileTarget); - } - } else { - $groupFileTarget = null; - } - $query->execute(array($itemType, $itemSource, $groupItemTarget, $parent, $shareType, - $shareWith['group'], $uidOwner, $permissions, time(), $fileSource, $groupFileTarget, $token)); - // Save this id, any extra rows for this group share will need to reference it - $parent = \OC_DB::insertid('*PREFIX*share'); - // Loop through all users of this group in case we need to add an extra row - foreach ($shareWith['users'] as $uid) { - $itemTarget = self::generateTarget($itemType, $itemSource, self::SHARE_TYPE_USER, $uid, - $uidOwner, $suggestedItemTarget, $parent); - if (isset($fileSource)) { - if ($parentFolder) { - if ($parentFolder === true) { - $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, - $uidOwner, $suggestedFileTarget, $parent); - if ($fileTarget != $groupFileTarget) { - $parentFolders[$uid]['folder'] = $fileTarget; - } - } else if (isset($parentFolder[$uid])) { - $fileTarget = $parentFolder[$uid]['folder'].$itemSource; - $parent = $parentFolder[$uid]['id']; - } - } else { - $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, - $uid, $uidOwner, $suggestedFileTarget, $parent); - } - } else { - $fileTarget = null; - } - // Insert an extra row for the group share if the item or file target is unique for this user - if ($itemTarget != $groupItemTarget || (isset($fileSource) && $fileTarget != $groupFileTarget)) { - $query->execute(array($itemType, $itemSource, $itemTarget, $parent, - self::$shareTypeGroupUserUnique, $uid, $uidOwner, $permissions, time(), - $fileSource, $fileTarget, $token)); - $id = \OC_DB::insertid('*PREFIX*share'); - } - } - \OC_Hook::emit('OCP\Share', 'post_shared', array( - 'itemType' => $itemType, - 'itemSource' => $itemSource, - 'itemTarget' => $groupItemTarget, - 'parent' => $parent, - 'shareType' => $shareType, - 'shareWith' => $shareWith['group'], - 'uidOwner' => $uidOwner, - 'permissions' => $permissions, - 'fileSource' => $fileSource, - 'fileTarget' => $groupFileTarget, - 'id' => $parent, - 'token' => $token - )); - - if ($parentFolder === true) { - // Return parent folders to preserve file target paths for potential children - return $parentFolders; - } - } else { - $itemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, - $suggestedItemTarget); - $run = true; - $error = ''; - \OC_Hook::emit('OCP\Share', 'pre_shared', array( - 'itemType' => $itemType, - 'itemSource' => $itemSource, - 'itemTarget' => $itemTarget, - 'shareType' => $shareType, - 'shareWith' => $shareWith, - 'uidOwner' => $uidOwner, - 'permissions' => $permissions, - 'fileSource' => $fileSource, - 'token' => $token, - 'run' => &$run, - 'error' => &$error - )); - - if ($run === false) { - throw new \Exception($error); - } - - if (isset($fileSource)) { - if ($parentFolder) { - if ($parentFolder === true) { - $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, - $uidOwner, $suggestedFileTarget); - $parentFolders['folder'] = $fileTarget; - } else { - $fileTarget = $parentFolder['folder'].$itemSource; - $parent = $parentFolder['id']; - } - } else { - $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, - $suggestedFileTarget); - } - } else { - $fileTarget = null; - } - $query->execute(array($itemType, $itemSource, $itemTarget, $parent, $shareType, $shareWith, $uidOwner, - $permissions, time(), $fileSource, $fileTarget, $token)); - $id = \OC_DB::insertid('*PREFIX*share'); - \OC_Hook::emit('OCP\Share', 'post_shared', array( - 'itemType' => $itemType, - 'itemSource' => $itemSource, - 'itemTarget' => $itemTarget, - 'parent' => $parent, - 'shareType' => $shareType, - 'shareWith' => $shareWith, - 'uidOwner' => $uidOwner, - 'permissions' => $permissions, - 'fileSource' => $fileSource, - 'fileTarget' => $fileTarget, - 'id' => $id, - 'token' => $token - )); - if ($parentFolder === true) { - $parentFolders['id'] = $id; - // Return parent folder to preserve file target paths for potential children - return $parentFolders; - } - } - return true; - } - - /** - * Generate a unique target for the item - * @param string Item type - * @param string Item source - * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK - * @param string User or group the item is being shared with - * @param string User that is the owner of shared item - * @param string The suggested target originating from a reshare (optional) - * @param int The id of the parent group share (optional) - * @param integer $shareType - * @return string Item target - */ - private static function generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, - $suggestedTarget = null, $groupParent = null) { - $backend = self::getBackend($itemType); - if ($shareType == self::SHARE_TYPE_LINK) { - if (isset($suggestedTarget)) { - return $suggestedTarget; - } - return $backend->generateTarget($itemSource, false); - } else { - if ($itemType == 'file' || $itemType == 'folder') { - $column = 'file_target'; - $columnSource = 'file_source'; - } else { - $column = 'item_target'; - $columnSource = 'item_source'; - } - if ($shareType == self::SHARE_TYPE_USER) { - // Share with is a user, so set share type to user and groups - $shareType = self::$shareTypeUserAndGroups; - $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith)); - } else { - $userAndGroups = false; - } - $exclude = null; - // Backend has 3 opportunities to generate a unique target - for ($i = 0; $i < 2; $i++) { - // Check if suggested target exists first - if ($i == 0 && isset($suggestedTarget)) { - $target = $suggestedTarget; - } else { - if ($shareType == self::SHARE_TYPE_GROUP) { - $target = $backend->generateTarget($itemSource, false, $exclude); - } else { - $target = $backend->generateTarget($itemSource, $shareWith, $exclude); - } - if (is_array($exclude) && in_array($target, $exclude)) { - break; - } - } - // Check if target already exists - $checkTarget = self::getItems($itemType, $target, $shareType, $shareWith); - if (!empty($checkTarget)) { - foreach ($checkTarget as $item) { - // Skip item if it is the group parent row - if (isset($groupParent) && $item['id'] == $groupParent) { - if (count($checkTarget) == 1) { - return $target; - } else { - continue; - } - } - if ($item['uid_owner'] == $uidOwner) { - if ($itemType == 'file' || $itemType == 'folder') { - $meta = \OC\Files\Filesystem::getFileInfo($itemSource); - if ($item['file_source'] == $meta['fileid']) { - return $target; - } - } else if ($item['item_source'] == $itemSource) { - return $target; - } - } - } - if (!isset($exclude)) { - $exclude = array(); - } - // Find similar targets to improve backend's chances to generate a unqiue target - if ($userAndGroups) { - if ($column == 'file_target') { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' - .' WHERE `item_type` IN (\'file\', \'folder\')' - .' AND `share_type` IN (?,?,?)' - .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); - $result = $checkTargets->execute(array(self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, - self::$shareTypeGroupUserUnique)); - } else { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' - .' WHERE `item_type` = ? AND `share_type` IN (?,?,?)' - .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); - $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_USER, - self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique)); - } - } else { - if ($column == 'file_target') { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' - .' WHERE `item_type` IN (\'file\', \'folder\')' - .' AND `share_type` = ? AND `share_with` = ?'); - $result = $checkTargets->execute(array(self::SHARE_TYPE_GROUP, $shareWith)); - } else { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' - .' WHERE `item_type` = ? AND `share_type` = ? AND `share_with` = ?'); - $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_GROUP, $shareWith)); - } - } - while ($row = $result->fetchRow()) { - $exclude[] = $row[$column]; - } - } else { - return $target; - } - } - } - $message = 'Sharing backend registered for '.$itemType.' did not generate a unique target for '.$itemSource; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - - /** - * Delete all reshares of an item - * @param int Id of item to delete - * @param bool If true, exclude the parent from the delete (optional) - * @param string The user that the parent was shared with (optinal) - */ - private static function delete($parent, $excludeParent = false, $uidOwner = null) { - $ids = array($parent); - $parents = array($parent); - while (!empty($parents)) { - $parents = "'".implode("','", $parents)."'"; - // Check the owner on the first search of reshares, useful for - // finding and deleting the reshares by a single user of a group share - if (count($ids) == 1 && isset($uidOwner)) { - $query = \OC_DB::prepare('SELECT `id`, `uid_owner`, `item_type`, `item_target`, `parent`' - .' FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.') AND `uid_owner` = ?'); - $result = $query->execute(array($uidOwner)); - } else { - $query = \OC_DB::prepare('SELECT `id`, `item_type`, `item_target`, `parent`, `uid_owner`' - .' FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.')'); - $result = $query->execute(); - } - // Reset parents array, only go through loop again if items are found - $parents = array(); - while ($item = $result->fetchRow()) { - // Search for a duplicate parent share, this occurs when an - // item is shared to the same user through a group and user or the - // same item is shared by different users - $userAndGroups = array_merge(array($item['uid_owner']), \OC_Group::getUserGroups($item['uid_owner'])); - $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share`' - .' WHERE `item_type` = ?' - .' AND `item_target` = ?' - .' AND `share_type` IN (?,?,?)' - .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')' - .' AND `uid_owner` != ? AND `id` != ?'); - $duplicateParent = $query->execute(array($item['item_type'], $item['item_target'], - self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique, - $item['uid_owner'], $item['parent']))->fetchRow(); - if ($duplicateParent) { - // Change the parent to the other item id if share permission is granted - if ($duplicateParent['permissions'] & PERMISSION_SHARE) { - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `parent` = ? WHERE `id` = ?'); - $query->execute(array($duplicateParent['id'], $item['id'])); - continue; - } - } - $ids[] = $item['id']; - $parents[] = $item['id']; - } - } - if ($excludeParent) { - unset($ids[0]); - } - if (!empty($ids)) { - $ids = "'".implode("','", $ids)."'"; - $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `id` IN ('.$ids.')'); - $query->execute(); - } + return \OC\Share\Share::getBackend($itemType); } /** * Delete all shares with type SHARE_TYPE_LINK */ public static function removeAllLinkShares() { - // Delete any link shares - $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `share_type` = ?'); - $result = $query->execute(array(self::SHARE_TYPE_LINK)); - while ($item = $result->fetchRow()) { - self::delete($item['id']); - } - } - - /** - * Hook Listeners - */ - - /** - * Function that is called after a user is deleted. Cleans up the shares of that user. - * @param array arguments - */ - public static function post_deleteUser($arguments) { - // Delete any items shared with the deleted user - $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share`' - .' WHERE `share_with` = ? AND `share_type` = ? OR `share_type` = ?'); - $result = $query->execute(array($arguments['uid'], self::SHARE_TYPE_USER, self::$shareTypeGroupUserUnique)); - // Delete any items the deleted user shared - $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `uid_owner` = ?'); - $result = $query->execute(array($arguments['uid'])); - while ($item = $result->fetchRow()) { - self::delete($item['id']); - } - } - - /** - * Function that is called after a user is added to a group. - * TODO what does it do? - * @param array arguments - */ - public static function post_addToGroup($arguments) { - // Find the group shares and check if the user needs a unique target - $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'); - $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid'])); - $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`,' - .' `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`,' - .' `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)'); - while ($item = $result->fetchRow()) { - if ($item['item_type'] == 'file' || $item['item_type'] == 'file') { - $itemTarget = null; - } else { - $itemTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, - $arguments['uid'], $item['uid_owner'], $item['item_target'], $item['id']); - } - if (isset($item['file_source'])) { - $fileTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, - $arguments['uid'], $item['uid_owner'], $item['file_target'], $item['id']); - } else { - $fileTarget = null; - } - // Insert an extra row for the group share if the item or file target is unique for this user - if ($itemTarget != $item['item_target'] || $fileTarget != $item['file_target']) { - $query->execute(array($item['item_type'], $item['item_source'], $itemTarget, $item['id'], - self::$shareTypeGroupUserUnique, $arguments['uid'], $item['uid_owner'], $item['permissions'], - $item['stime'], $item['file_source'], $fileTarget)); - \OC_DB::insertid('*PREFIX*share'); - } - } - } - - /** - * Function that is called after a user is removed from a group. Shares are cleaned up. - * @param array arguments - */ - public static function post_removeFromGroup($arguments) { - // TODO Don't call if user deleted? - $sql = 'SELECT `id`, `share_type` FROM `*PREFIX*share`' - .' WHERE (`share_type` = ? AND `share_with` = ?) OR (`share_type` = ? AND `share_with` = ?)'; - $result = \OC_DB::executeAudited($sql, array(self::SHARE_TYPE_GROUP, $arguments['gid'], - self::$shareTypeGroupUserUnique, $arguments['uid'])); - while ($item = $result->fetchRow()) { - if ($item['share_type'] == self::SHARE_TYPE_GROUP) { - // Delete all reshares by this user of the group share - self::delete($item['id'], true, $arguments['uid']); - } else { - self::delete($item['id']); - } - } - } - - /** - * Function that is called after a group is removed. Cleans up the shares to that group. - * @param array arguments - */ - public static function post_deleteGroup($arguments) { - $sql = 'SELECT `id` FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'; - $result = \OC_DB::executeAudited($sql, array(self::SHARE_TYPE_GROUP, $arguments['gid'])); - while ($item = $result->fetchRow()) { - self::delete($item['id']); - } + return \OC\Share\Share::removeAllLinkShares(); } /** @@ -1935,26 +313,7 @@ class Share { * @return bool */ public static function checkPasswordProtectedShare(array $linkItem) { - if (!isset($linkItem['share_with'])) { - return true; - } - if (!isset($linkItem['share_type'])) { - return true; - } - if (!isset($linkItem['id'])) { - return true; - } - - if ($linkItem['share_type'] != \OCP\Share::SHARE_TYPE_LINK) { - return true; - } - - if ( \OC::$session->exists('public_link_authenticated') - && \OC::$session->get('public_link_authenticated') === $linkItem['id'] ) { - return true; - } - - return false; + return \OC\Share\Share::checkPasswordProtectedShare($linkItem); } } @@ -1967,9 +326,7 @@ interface Share_Backend { * Get the source of the item to be stored in the database * @param string Item source * @param string Owner of the item - * @param string $itemSource - * @param string $uidOwner - * @return boolean Source + * @return mixed|array|false Source * * Return an array if the item is file dependent, the array needs two keys: 'item' and 'file' * Return false if the item does not exist for the user @@ -1992,8 +349,8 @@ interface Share_Backend { /** * Converts the shared item sources back into the item in the specified format - * @param array $items Shared items - * @param integer $format + * @param array Shared items + * @param int Format * @return TODO * * The items array is a 3-dimensional array with the item_source as the @@ -2025,9 +382,6 @@ interface Share_Backend_File_Dependent extends Share_Backend { * Get the file path of the item * @param string Item source * @param string User that is the owner of shared item - * @param string $itemSource - * @param string $uidOwner - * @return boolean */ public function getFilePath($itemSource, $uidOwner); diff --git a/lib/public/util.php b/lib/public/util.php index 5cc7f0f4676..f02213f2446 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -266,7 +266,7 @@ class Util { $host_name = \OC_Config::getValue('mail_domain', $host_name); $defaultEmailAddress = $user_part.'@'.$host_name; - if (\OC_Mail::ValidateAddress($defaultEmailAddress)) { + if (\OC_Mail::validateAddress($defaultEmailAddress)) { return $defaultEmailAddress; } diff --git a/ocs/v1.php b/ocs/v1.php index 5d360c530a9..62a3511e611 100644 --- a/ocs/v1.php +++ b/ocs/v1.php @@ -21,11 +21,15 @@ * */ -require_once('../lib/base.php'); +require_once '../lib/base.php'; + use Symfony\Component\Routing\Exception\ResourceNotFoundException; use Symfony\Component\Routing\Exception\MethodNotAllowedException; try { + // load all apps to get all api routes properly setup + OC_App::loadApps(); + OC::$server->getRouter()->match('/ocs'.OC_Request::getRawPathInfo()); } catch (ResourceNotFoundException $e) { OC_API::setContentType(); diff --git a/public.php b/public.php index 767295b98db..e072db93d29 100644 --- a/public.php +++ b/public.php @@ -1,5 +1,4 @@ <?php -$RUNTIME_NOAPPS = true; try { diff --git a/remote.php b/remote.php index 9e18c8f80a9..15dfa8256ff 100644 --- a/remote.php +++ b/remote.php @@ -1,5 +1,4 @@ <?php -$RUNTIME_NOAPPS = true; try { diff --git a/search/ajax/search.php b/search/ajax/search.php index f0ca5752b9a..0cc1f9d30cd 100644 --- a/search/ajax/search.php +++ b/search/ajax/search.php @@ -23,7 +23,6 @@ // Check if we are a user OC_JSON::checkLoggedIn(); -OC_App::loadApps(); $query=(isset($_GET['query']))?$_GET['query']:''; if($query) { diff --git a/settings/admin.php b/settings/admin.php index 80b038d2ef6..ea8aa7af5d0 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -6,7 +6,6 @@ */ OC_Util::checkAdminUser(); -OC_App::loadApps(); OC_Util::addStyle( "settings", "settings" ); OC_Util::addScript( "settings", "admin" ); @@ -45,6 +44,8 @@ $tmpl->assign('isWebDavWorking', OC_Util::isWebDAVWorking()); $tmpl->assign('has_fileinfo', OC_Util::fileInfoLoaded()); $tmpl->assign('old_php', OC_Util::isPHPoutdated()); $tmpl->assign('backgroundjobs_mode', OC_Appconfig::getValue('core', 'backgroundjobs_mode', 'ajax')); +$tmpl->assign('cron_log', OC_Config::getValue('cron_log', true)); +$tmpl->assign('lastcron', OC_Appconfig::getValue('core', 'lastcron', false)); $tmpl->assign('shareAPIEnabled', OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes')); // Check if connected using HTTPS diff --git a/settings/ajax/lostpassword.php b/settings/ajax/lostpassword.php index b5f47bbceab..88c2bee6142 100644 --- a/settings/ajax/lostpassword.php +++ b/settings/ajax/lostpassword.php @@ -6,7 +6,7 @@ OCP\JSON::callCheck(); $l=OC_L10N::get('core'); // Get data -if( isset( $_POST['email'] ) && filter_var( $_POST['email'], FILTER_VALIDATE_EMAIL) ) { +if( isset( $_POST['email'] ) && OC_Mail::validateAddress($_POST['email']) ) { $email=trim($_POST['email']); OC_Preferences::setValue(OC_User::getUser(), 'settings', 'email', $email); OC_JSON::success(array("data" => array( "message" => $l->t("Email saved") ))); diff --git a/settings/apps.php b/settings/apps.php index 96b6d21b502..6fd2efc2018 100644 --- a/settings/apps.php +++ b/settings/apps.php @@ -22,7 +22,6 @@ */ OC_Util::checkAdminUser(); -OC_App::loadApps(); // Load the files we need OC_Util::addStyle( "settings", "settings" ); diff --git a/settings/changepassword/controller.php b/settings/changepassword/controller.php index e8c2a1943f3..9f1e7329964 100644 --- a/settings/changepassword/controller.php +++ b/settings/changepassword/controller.php @@ -8,9 +8,6 @@ class Controller { \OC_JSON::callCheck(); \OC_JSON::checkLoggedIn(); - // Manually load apps to ensure hooks work correctly (workaround for issue 1503) - \OC_App::loadApps(); - $username = \OC_User::getUser(); $password = isset($_POST['personal-password']) ? $_POST['personal-password'] : null; $oldPassword = isset($_POST['oldpassword']) ? $_POST['oldpassword'] : ''; @@ -32,9 +29,6 @@ class Controller { \OC_JSON::callCheck(); \OC_JSON::checkLoggedIn(); - // Manually load apps to ensure hooks work correctly (workaround for issue 1503) - \OC_App::loadApps(); - if (isset($_POST['username'])) { $username = $_POST['username']; } else { diff --git a/settings/css/settings.css b/settings/css/settings.css index a47e7bf6563..280d022af4e 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -167,6 +167,26 @@ table.shareAPI td { padding-bottom: 0.8em; } width: 40px; } +.cronlog { + margin-left: 10px; +} + +.cronstatus { + display: inline-block; + height: 16px; + width: 16px; + vertical-align: text-bottom; +} + +span.success { + background: #37ce02; + border-radius: 8px; +} + +span.error { + background: #ce3702; +} + /* HELP */ .pressed {background-color:#DDD;} diff --git a/settings/help.php b/settings/help.php index 88693939b84..301f50592ae 100644 --- a/settings/help.php +++ b/settings/help.php @@ -6,7 +6,6 @@ */ OC_Util::checkLoggedIn(); -OC_App::loadApps(); // Load the files we need OC_Util::addStyle( "settings", "settings" ); diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 92c5450b7dc..54fe0bbcf39 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -93,6 +93,7 @@ $TRANSLATIONS = array( "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", +"Last cron was executed at %s." => "L'últim cron s'ha executat el %s", "Execute one task with each page loaded" => "Executa una tasca per cada paquet carregat", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php està registrat en un servei webcron que fa una crida a cron.php cada 15 minuts a través de http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Utilitza el servei cron del sistema per fer una crida al fitxer cron.php cada 15 minuts.", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 1d9a554f3c7..960938b1c68 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -1,10 +1,15 @@ <?php $TRANSLATIONS = array( +"Invalid value supplied for %s" => "Uvedena nesprávná hodnota pro %s", "Saved" => "Uloženo", -"test email settings" => "nastavení zkušebního emailu", +"test email settings" => "otestovat nastavení e-mailu", +"If you received this email, the settings seem to be correct." => "Pokud jste obdrželi tento e-mail, nastavení se zdají být v pořádku.", +"A problem occurred while sending the e-mail. Please revisit your settings." => "Při odesílání e-mailu nastala chyba. Překontrolujte vaše nastavení.", "Email sent" => "E-mail odeslán", +"You need to set your user email before being able to send test emails." => "Pro možnost odeslání zkušebních e-mailů musíte nejprve nastavit svou e-mailovou adresu.", +"Send mode" => "Mód odesílání", "Encryption" => "Šifrování", -"Authentication method" => "Metoda autentifikace", +"Authentication method" => "Metoda ověření", "Unable to load list from App Store" => "Nelze načíst seznam z App Store", "Authentication error" => "Chyba přihlášení", "Your full name has been changed." => "Vaše celé jméno bylo změněno.", @@ -67,6 +72,8 @@ $TRANSLATIONS = array( "Fatal issues only" => "Pouze fatální problémy", "None" => "Žádné", "Login" => "Přihlásit", +"Plain" => "Čistý text", +"NT LAN Manager" => "Správce NT LAN", "SSL" => "SSL", "TLS" => "TLS", "Security Warning" => "Bezpečnostní upozornění", @@ -86,6 +93,9 @@ $TRANSLATIONS = array( "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", +"Last cron was executed at %s." => "Poslední cron byl spuštěn v %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Poslední cron byl spuštěn v %s. To se stalo před více než hodinu. Vypadá to, že není něco v pořádku.", +"Cron was not executed yet!" => "Cron ještě nebyl spuštěn!", "Execute one task with each page loaded" => "Spustit jednu úlohu s každým načtením stránky", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php je registrován u služby webcron, aby volal cron.php jednou za 15 minut přes http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Použít systémovou službu cron pro volání cron.php každých 15 minut.", @@ -106,16 +116,16 @@ $TRANSLATIONS = array( "Enforce HTTPS" => "Vynutit HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vynutí připojování klientů k %s šifrovaným spojením.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Připojte se k %s skrze HTTPS pro povolení nebo zakázání vynucování SSL.", -"Email Server" => "Emailový server", -"This is used for sending out notifications." => "Toto se používá při odesílání upozornění.", +"Email Server" => "E-mailový server", +"This is used for sending out notifications." => "Toto se používá pro odesílání upozornění.", "From address" => "Adresa odesílatele", -"Authentication required" => "Ověření vyžadováno", +"Authentication required" => "Vyžadováno ověření", "Server address" => "Adresa serveru", "Port" => "Port", "Credentials" => "Přihlašovací údaje", "SMTP Username" => "SMTP uživatelské jméno ", "SMTP Password" => "SMTP heslo", -"Test email settings" => "Nastavení zkušebního emailu", +"Test email settings" => "Otestovat nastavení e-mailu", "Send email" => "Odeslat e-mail", "Log" => "Záznam", "Log level" => "Úroveň zaznamenávání", @@ -147,6 +157,7 @@ $TRANSLATIONS = array( "Full Name" => "Celé jméno", "Email" => "E-mail", "Your email address" => "Vaše e-mailová adresa", +"Fill in an email address to enable password recovery and receive notifications" => "Zadejte e-mailovou adresu pro umožnění obnovy zapomenutého hesla a pro přijímání upozornění.", "Profile picture" => "Profilový obrázek", "Upload new" => "Nahrát nový", "Select new from Files" => "Vyberte nový ze souborů", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index d8ee237bed5..df8d2c419b9 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -1,6 +1,7 @@ <?php $TRANSLATIONS = array( "Saved" => "Gemt", +"test email settings" => "test email indstillinger", "Email sent" => "E-mail afsendt", "Encryption" => "Kryptering", "Unable to load list from App Store" => "Kunne ikke indlæse listen fra App Store", @@ -25,7 +26,9 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Forkert admin gendannelseskode. Se venligst koden efter og prøv igen.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Serveren understøtter ikke kodeordsskifte, men brugernes krypteringsnøgle blev opdateret.", "Unable to change password" => "Kunne ikke ændre kodeord", +"Sending..." => "Sender...", "User Documentation" => "Brugerdokumentation", +"Admin Documentation" => "Administrator Dokumentation", "Update to {appversion}" => "Opdatér til {appversion}", "Disable" => "Deaktiver", "Enable" => "Aktiver", @@ -38,6 +41,11 @@ $TRANSLATIONS = array( "Update" => "Opdater", "Updated" => "Opdateret", "Select a profile picture" => "Vælg et profilbillede", +"Very weak password" => "Meget svagt kodeord", +"Weak password" => "Svagt kodeord", +"So-so password" => "Jævnt kodeord", +"Good password" => "Godt kodeord", +"Strong password" => "Stærkt kodeord", "Decrypting files... Please wait, this can take some time." => "Dekryptere filer... Vent venligst, dette kan tage lang tid. ", "deleted" => "Slettet", "undo" => "fortryd", @@ -58,6 +66,9 @@ $TRANSLATIONS = array( "Fatal issues only" => "Kun alvorlige fejl", "None" => "Ingen", "Login" => "Login", +"NT LAN Manager" => "NT LAN Manager", +"SSL" => "SSL", +"TLS" => "TLS", "Security Warning" => "Sikkerhedsadvarsel", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Du tilgår %s via HTTP. Vi anbefaler at du konfigurerer din server til i stedet at kræve HTTPS.", "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." => "Din data mappe og dine filer er muligvis tilgængelige fra internettet. .htaccess filen virker ikke. Vi anbefaler på det kraftigste at du konfigurerer din webserver så data mappen ikke længere er tilgængelig, eller at du flytter data mappen uden for webserverens dokument rod. ", @@ -95,8 +106,16 @@ $TRANSLATIONS = array( "Enforce HTTPS" => "Gennemtving HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Tving klienten til at forbinde til %s via en kryptetet forbindelse.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Forbind venligst til din %s via HTTPS for at aktivere eller deaktivere SSL tvang.", +"Email Server" => "Email Server", +"From address" => "Fra adresse", +"Authentication required" => "Godkendelse påkrævet", "Server address" => "Serveradresse", "Port" => "Port", +"Credentials" => "Brugeroplysninger", +"SMTP Username" => "SMTP Brugernavn", +"SMTP Password" => "SMTP Kodeord", +"Test email settings" => "Test email indstillinger", +"Send email" => "Send email", "Log" => "Log", "Log level" => "Log niveau", "More" => "Mere", @@ -106,6 +125,7 @@ $TRANSLATIONS = array( "Add your App" => "Tilføj din App", "More Apps" => "Flere Apps", "Select an App" => "Vælg en App", +"Documentation:" => "Dokumentation:", "See application page at apps.owncloud.com" => "Se applikationens side på apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licenseret af <span class=\"author\"></span>", "Administrator Documentation" => "Administrator Dokumentation", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 5f1433f62ca..ffbda893018 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "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", +"Last cron was executed at %s." => "Letzter Cron wurde um %s ausgeführt.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Letzter Cron wurde um %s ausgeführt. Dies ist mehr als eine Stunde her, möglicherweise liegt ein Fehler vor.", +"Cron was not executed yet!" => "Cron wurde bis jetzt noch nicht ausgeführt!", "Execute one task with each page loaded" => "Führe eine Aufgabe mit jeder geladenen Seite aus", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php ist als Webcron-Dienst registriert, der die cron.php alle 15 Minuten per HTTP aufruft.", "Use systems cron service to call the cron.php file every 15 minutes." => "Benutze den System-Crondienst um die cron.php alle 15 Minuten aufzurufen.", @@ -144,7 +147,7 @@ $TRANSLATIONS = array( "Commercial Support" => "Kommerzieller Support", "Get the apps to sync your files" => "Lade die Apps zur Synchronisierung Deiner Daten herunter", "Show First Run Wizard again" => "Erstinstallation erneut durchführen", -"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Du verwendest <strong>%s</strong> der verfügbaren <strong>%s<strong>", +"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Du verwendest <strong>%s</strong> der verfügbaren <strong>%s</strong>", "Password" => "Passwort", "Your password was changed" => "Dein Passwort wurde geändert.", "Unable to change your password" => "Passwort konnte nicht geändert werden", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 8884afcbc3c..0b30cc0c191 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "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, dass 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 Versenden von Mail-Benachrichtigungen funktionieren eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren, wenn Sie alle Funktionen nutzen wollen.", "Cron" => "Cron", +"Last cron was executed at %s." => "Letzter Cron wurde um %s ausgeführt.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Letzter Cron wurde um %s ausgeführt. Dies ist mehr als eine Stunde her, möglicherweise liegt ein Fehler vor.", +"Cron was not executed yet!" => "Cron wurde bis jetzt noch nicht ausgeführt!", "Execute one task with each page loaded" => "Eine Aufgabe bei jedem Laden der Seite ausführen", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php ist als Webcron-Dienst registriert, der die cron.php alle 15 Minuten per HTTP aufruft.", "Use systems cron service to call the cron.php file every 15 minutes." => "Benutzen Sie den System-Crondienst, um die cron.php alle 15 Minuten aufzurufen.", diff --git a/settings/l10n/en_GB.php b/settings/l10n/en_GB.php index 2315586b187..b377a6b3381 100644 --- a/settings/l10n/en_GB.php +++ b/settings/l10n/en_GB.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "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", +"Last cron was executed at %s." => "Last cron was executed at %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Last cron was executed at %s. This is more than an hour ago, something seems wrong.", +"Cron was not executed yet!" => "Cron was not executed yet!", "Execute one task with each page loaded" => "Execute one task with each page loaded", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php is registered at a webcron service to call cron.php every 15 minutes over http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Use system's cron service to call the cron.php file every 15 minutes.", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 734149034b9..ec6e3b3bd65 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "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", +"Last cron was executed at %s." => "Cron fue ejecutado por última vez a las %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Cron fue ejecutado por última vez a las %s. Esto fue hace más de una hora, algo anda mal.", +"Cron was not executed yet!" => "¡Cron aún no ha sido ejecutado!", "Execute one task with each page loaded" => "Ejecutar una tarea con cada página cargada", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php se registra en un servicio webcron para llamar a cron.php cada 15 minutos a través de HTTP.", "Use systems cron service to call the cron.php file every 15 minutes." => "Utiliza el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos.", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 284c47e0806..7bef4092a43 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -83,6 +83,9 @@ $TRANSLATIONS = array( "We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Suosittelemme vahvasti asentamaan vaaditut paketit järjestelmään, jotta jotain seuraavista maa-asetuksista on mahdollista tukea: %s.", "Internet connection not working" => "Internet-yhteys ei toimi", "Cron" => "Cron", +"Last cron was executed at %s." => "Viimeisin cron suoritettiin %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Viimeisin cron suoritettiin %s. Siitä on yli tunti aikaa, joten jokin näyttää olevan pielessä.", +"Cron was not executed yet!" => "Cronia ei suoritettu vielä!", "Use systems cron service to call the cron.php file every 15 minutes." => "Käytä järjestelmän cron-palvelua cron.php-tiedoston kutsumiseen 15 minuutin välein", "Sharing" => "Jakaminen", "Enable Share API" => "Käytä jakamisen ohjelmointirajapintaa", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 181fd11f972..10151a0a1e1 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "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", +"Last cron was executed at %s." => "L'ultimo cron è stato eseguito alle %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "L'ultimo cron è stato eseguito alle %s. È più di un ora fa, qualcosa sembra sbagliato.", +"Cron was not executed yet!" => "Cron non è ancora stato eseguito!", "Execute one task with each page loaded" => "Esegui un'operazione con ogni pagina caricata", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php è registrato su un servizio webcron per invocare cron.php ogni 15 minuti su http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Usa il servizio cron di sistema per invocare il file cron.php ogni 15 minuti.", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 826a6a77e00..c497eb12a68 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "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", +"Last cron was executed at %s." => "Laatst uitgevoerde cron op %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Laatst uitgevoerde cron op %s. Dat is langer dan een uur geleden, er is iets fout gegaan.", +"Cron was not executed yet!" => "Cron is nog niet uitgevoerd!", "Execute one task with each page loaded" => "Bij laden van elke pagina één taak uitvoeren", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php is geregisteerd bij een webcron service om elke 15 minuten cron.php over http aan te roepen.", "Use systems cron service to call the cron.php file every 15 minutes." => "Gebruik de systeem cron service om cron.php elke 15 minuten aan te roepen.", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 33b22a147dc..640e1df9585 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "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", +"Last cron was executed at %s." => "Ostatni cron był uruchomiony %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Ostatni cron był uruchomiony %s. To jest więcej niż godzinę temu, wygląda na to, że coś jest nie tak.", +"Cron was not executed yet!" => "Cron nie został jeszcze uruchomiony!", "Execute one task with each page loaded" => "Wykonuj jedno zadanie wraz z każdą wczytaną stroną", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php jest zarejestrowany w serwisie webcron do uruchamiania cron.php raz na 15 minut przez http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Użyj systemowego cron-a do uruchamiania cron.php raz na 15 minut.", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index 4a7554499d5..dad6773d6af 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "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", +"Last cron was executed at %s." => "Último cron foi executado em %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Última cron foi executado em %s. Isso é, mais do que uma hora atrás, algo parece errado.", +"Cron was not executed yet!" => "Cron não foi executado ainda!", "Execute one task with each page loaded" => "Execute uma tarefa com cada página carregada", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php está registrado no serviço webcron para chamar cron.php a cada 15 minutos sobre http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Use o sistema de serviço cron para chamar o arquivo cron.php a cada 15 minutos.", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 49f3aeeb65d..9cbdeee2c23 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( +"Saved" => "Сохранено", "Email sent" => "Письмо отправлено", "Encryption" => "Шифрование", "Unable to load list from App Store" => "Не удалось загрузить список из App Store", @@ -37,6 +38,11 @@ $TRANSLATIONS = array( "Update" => "Обновить", "Updated" => "Обновлено", "Select a profile picture" => "Выберите картинку профиля", +"Very weak password" => "Очень слабый пароль", +"Weak password" => "Слабый пароль", +"So-so password" => "Так себе пароль", +"Good password" => "Хороший пароль", +"Strong password" => "Устойчивый к взлому пароль", "Decrypting files... Please wait, this can take some time." => "Расшифровка файлов... Пожалуйста, подождите, это может занять некоторое время.", "deleted" => "удален", "undo" => "отмена", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index e02c6701a98..68b464a5cc2 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "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", +"Last cron was executed at %s." => "Son cron %s zamanında çalıştırıldı.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Son cron %s zamanında çalıştırıldı. Bu bir saatten daha uzun bir süre, bir şeyler yanlış gibi görünüyor.", +"Cron was not executed yet!" => "Cron henüz çalıştırılmadı!", "Execute one task with each page loaded" => "Yüklenen her sayfa ile bir görev çalıştır", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php, http üzerinden her 15 dakikada bir çağrılması için webcron hizmetine kaydedilir.", "Use systems cron service to call the cron.php file every 15 minutes." => "Cron.php dosyasını her 15 dakikada bir çağırmak için sistem cron hizmetini kullan.", diff --git a/settings/personal.php b/settings/personal.php index cf1a496bdf0..be1aa6400bf 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -6,7 +6,6 @@ */ OC_Util::checkLoggedIn(); -OC_App::loadApps(); $defaults = new OC_Defaults(); // initialize themable default strings and urls diff --git a/settings/routes.php b/settings/routes.php index 6954bd3823d..a8bb0d981e8 100644 --- a/settings/routes.php +++ b/settings/routes.php @@ -6,7 +6,7 @@ * See the COPYING-README file. */ -/** @var $this OC_Router */ +/** @var $this OCP\Route\IRouter */ // Settings pages $this->create('settings_help', '/settings/help') diff --git a/settings/settings.php b/settings/settings.php index 1e05452ec4d..c08732fcf66 100644 --- a/settings/settings.php +++ b/settings/settings.php @@ -6,7 +6,6 @@ */ OC_Util::checkLoggedIn(); -OC_App::loadApps(); OC_Util::addStyle( 'settings', 'settings' ); OC_App::setActiveNavigationEntry( 'settings' ); diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 6e816c1fff6..9092d2833fd 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -157,7 +157,24 @@ if (!$_['internetconnectionworking']) { ;?> <fieldset class="personalblock" id="backgroundjobs"> - <h2><?php p($l->t('Cron'));?></h2> + <h2 class="inlineblock"><?php p($l->t('Cron'));?></h2> + <?php if ($_['cron_log']): ?> + <p class="cronlog inlineblock"> + <?php if ($_['lastcron'] !== false): + $human_time = OC_Util::formatDate($_['lastcron']) . " UTC"; + if (time() - $_['lastcron'] <= 3600): ?> + <span class="cronstatus success"></span> + <?php p($l->t("Last cron was executed at %s.", array($human_time))); + else: ?> + <span class="cronstatus error"></span> + <?php p($l->t("Last cron was executed at %s. This is more than an hour ago, something seems wrong.", array($human_time))); + endif; + else: ?> + <span class="cronstatus error"></span> + <?php p($l->t("Cron was not executed yet!")); + endif; ?> + </p> + <?php endif; ?> <p> <input type="radio" name="mode" value="ajax" id="backgroundjobs_ajax" <?php if ($_['backgroundjobs_mode'] === "ajax") { diff --git a/settings/users.php b/settings/users.php index 2f1c63a0b59..f09d0e90d3c 100644 --- a/settings/users.php +++ b/settings/users.php @@ -6,7 +6,6 @@ */ OC_Util::checkSubAdminUser(); -OC_App::loadApps(); // We have some javascript foo! OC_Util::addScript( 'settings', 'users' ); diff --git a/status.php b/status.php index 88422100f14..861eaed9cd2 100644 --- a/status.php +++ b/status.php @@ -21,8 +21,6 @@ * */ -$RUNTIME_NOAPPS = true; //no apps, yet - try { require_once 'lib/base.php'; diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 581cfcff9f3..99374d68a5c 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -3,11 +3,17 @@ define('PHPUNIT_RUN', 1); -require_once __DIR__.'/../lib/base.php'; +$configDir = getenv('CONFIG_DIR'); +if ($configDir) { + define('PHPUNIT_CONFIG_DIR', $configDir); +} + +require_once __DIR__ . '/../lib/base.php'; -if(!class_exists('PHPUnit_Framework_TestCase')) { +if (!class_exists('PHPUnit_Framework_TestCase')) { require_once('PHPUnit/Autoload.php'); } OC_Hook::clear(); OC_Log::$enabled = false; +OC_FileProxy::clearProxies(); diff --git a/tests/lib/files/cache/homecache.php b/tests/lib/files/cache/homecache.php index dbcf6e9caa0..80dc54c9d19 100644 --- a/tests/lib/files/cache/homecache.php +++ b/tests/lib/files/cache/homecache.php @@ -90,7 +90,6 @@ class HomeCache extends \PHPUnit_Framework_TestCase { // check that files and root size ignored the unknown sizes $this->assertEquals(1000, $this->cache->calculateFolderSize('files')); - $this->assertEquals(1000, $this->cache->calculateFolderSize('')); // clean up $this->cache->remove(''); diff --git a/tests/lib/files/cache/updater.php b/tests/lib/files/cache/updater.php index a6ee8c46661..e2fae0ae57f 100644 --- a/tests/lib/files/cache/updater.php +++ b/tests/lib/files/cache/updater.php @@ -65,11 +65,6 @@ class Updater extends \PHPUnit_Framework_TestCase { Filesystem::mount($this->storage, array(), '/' . self::$user . '/files'); \OC_Hook::clear('OC_Filesystem'); - - \OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Updater', 'writeHook'); - \OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Updater', 'deleteHook'); - \OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook'); - \OC_Hook::connect('OC_Filesystem', 'post_touch', '\OC\Files\Cache\Updater', 'touchHook'); } public function tearDown() { diff --git a/tests/lib/files/filesystem.php b/tests/lib/files/filesystem.php index 90f1dfe581b..53f528af793 100644 --- a/tests/lib/files/filesystem.php +++ b/tests/lib/files/filesystem.php @@ -226,4 +226,55 @@ class Filesystem extends \PHPUnit_Framework_TestCase { $path = $arguments['path']; $this->assertEquals($path, \OC\Files\Filesystem::normalizePath($path)); //the path passed to the hook should already be normalized } + + /** + * Test that the default cache dir is part of the user's home + */ + public function testMountDefaultCacheDir() { + $userId = uniqid('user_'); + $oldCachePath = \OC_Config::getValue('cache_path', ''); + // no cache path configured + \OC_Config::setValue('cache_path', ''); + + \OC_User::createUser($userId, $userId); + \OC\Files\Filesystem::initMountPoints($userId); + + $this->assertEquals( + '/' . $userId . '/', + \OC\Files\Filesystem::getMountPoint('/' . $userId . '/cache') + ); + list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath('/' . $userId . '/cache'); + $this->assertInstanceOf('\OC\Files\Storage\Home', $storage); + $this->assertEquals('cache', $internalPath); + \OC_User::deleteUser($userId); + + \OC_Config::setValue('cache_path', $oldCachePath); + } + + /** + * Test that an external cache is mounted into + * the user's home + */ + public function testMountExternalCacheDir() { + $userId = uniqid('user_'); + + $oldCachePath = \OC_Config::getValue('cache_path', ''); + // set cache path to temp dir + $cachePath = \OC_Helper::tmpFolder() . '/extcache'; + \OC_Config::setValue('cache_path', $cachePath); + + \OC_User::createUser($userId, $userId); + \OC\Files\Filesystem::initMountPoints($userId); + + $this->assertEquals( + '/' . $userId . '/cache/', + \OC\Files\Filesystem::getMountPoint('/' . $userId . '/cache') + ); + list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath('/' . $userId . '/cache'); + $this->assertInstanceOf('\OC\Files\Storage\Local', $storage); + $this->assertEquals('', $internalPath); + \OC_User::deleteUser($userId); + + \OC_Config::setValue('cache_path', $oldCachePath); + } } diff --git a/tests/lib/files/storage/storage.php b/tests/lib/files/storage/storage.php index f9291758606..f3bfba3feb8 100644 --- a/tests/lib/files/storage/storage.php +++ b/tests/lib/files/storage/storage.php @@ -64,17 +64,17 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { * @dataProvider directoryProvider */ public function testDirectories($directory) { - $this->assertFalse($this->instance->file_exists('/'.$directory)); + $this->assertFalse($this->instance->file_exists('/' . $directory)); - $this->assertTrue($this->instance->mkdir('/'.$directory)); + $this->assertTrue($this->instance->mkdir('/' . $directory)); - $this->assertTrue($this->instance->file_exists('/'.$directory)); - $this->assertTrue($this->instance->is_dir('/'.$directory)); - $this->assertFalse($this->instance->is_file('/'.$directory)); - $this->assertEquals('dir', $this->instance->filetype('/'.$directory)); - $this->assertEquals(0, $this->instance->filesize('/'.$directory)); - $this->assertTrue($this->instance->isReadable('/'.$directory)); - $this->assertTrue($this->instance->isUpdatable('/'.$directory)); + $this->assertTrue($this->instance->file_exists('/' . $directory)); + $this->assertTrue($this->instance->is_dir('/' . $directory)); + $this->assertFalse($this->instance->is_file('/' . $directory)); + $this->assertEquals('dir', $this->instance->filetype('/' . $directory)); + $this->assertEquals(0, $this->instance->filesize('/' . $directory)); + $this->assertTrue($this->instance->isReadable('/' . $directory)); + $this->assertTrue($this->instance->isUpdatable('/' . $directory)); $dh = $this->instance->opendir('/'); $content = array(); @@ -85,13 +85,13 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { } $this->assertEquals(array($directory), $content); - $this->assertFalse($this->instance->mkdir('/'.$directory)); //cant create existing folders - $this->assertTrue($this->instance->rmdir('/'.$directory)); + $this->assertFalse($this->instance->mkdir('/' . $directory)); //cant create existing folders + $this->assertTrue($this->instance->rmdir('/' . $directory)); $this->wait(); - $this->assertFalse($this->instance->file_exists('/'.$directory)); + $this->assertFalse($this->instance->file_exists('/' . $directory)); - $this->assertFalse($this->instance->rmdir('/'.$directory)); //cant remove non existing folders + $this->assertFalse($this->instance->rmdir('/' . $directory)); //cant remove non existing folders $dh = $this->instance->opendir('/'); $content = array(); @@ -103,8 +103,7 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { $this->assertEquals(array(), $content); } - public function directoryProvider() - { + public function directoryProvider() { return array( array('folder'), array(' folder'), @@ -113,6 +112,7 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { array('spéciäl földer'), ); } + /** * test the various uses of file_get_contents and file_put_contents */ @@ -298,4 +298,21 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { $this->assertFalse($this->instance->file_exists('folder/bar')); $this->assertFalse($this->instance->file_exists('folder')); } + + public function hashProvider(){ + return array( + array('Foobar', 'md5'), + array('Foobar', 'sha1'), + array('Foobar', 'sha256'), + ); + } + + /** + * @dataProvider hashProvider + */ + public function testHash($data, $type) { + $this->instance->file_put_contents('hash.txt', $data); + $this->assertEquals(hash($type, $data), $this->instance->hash($type, 'hash.txt')); + $this->assertEquals(hash($type, $data, true), $this->instance->hash($type, 'hash.txt', true)); + } } diff --git a/tests/lib/mail.php b/tests/lib/mail.php new file mode 100644 index 00000000000..a88a9d797ae --- /dev/null +++ b/tests/lib/mail.php @@ -0,0 +1,30 @@ +<?php +/** + * Copyright (c) 2014 Thomas Müller <deepdiver@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_Mail extends PHPUnit_Framework_TestCase { + + /** + * @dataProvider buildAsciiEmailProvider + * @param $expected + * @param $address + */ + public function testBuildAsciiEmail($expected, $address) { + $actual = \OC_Mail::buildAsciiEmail($address); + $this->assertEquals($expected, $actual); + } + + function buildAsciiEmailProvider() { + return array( + array('info@example.com', 'info@example.com'), + array('info@xn--cjr6vy5ejyai80u.com', 'info@國際化域名.com'), + array('info@xn--mller-kva.de', 'info@müller.de'), + array('info@xn--mller-kva.xn--mller-kva.de', 'info@müller.müller.de'), + ); + } + +} diff --git a/tests/lib/share/share.php b/tests/lib/share/share.php index b5cba9430aa..aae91fa1087 100644 --- a/tests/lib/share/share.php +++ b/tests/lib/share/share.php @@ -282,7 +282,7 @@ class Test_Share extends PHPUnit_Framework_TestCase { OC_User::setUserId($this->user2); $this->assertEquals(array(OCP\PERMISSION_READ), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_PERMISSIONS)); OC_User::setUserId($this->user3); - $this->assertFalse(OCP\Share::getItemSharedWith('test', 'test.txt')); + $this->assertSame(array(), OCP\Share::getItemSharedWith('test', 'test.txt')); // Reshare again, and then have owner unshare OC_User::setUserId($this->user1); @@ -292,9 +292,9 @@ class Test_Share extends PHPUnit_Framework_TestCase { OC_User::setUserId($this->user1); $this->assertTrue(OCP\Share::unshare('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user2)); OC_User::setUserId($this->user2); - $this->assertFalse(OCP\Share::getItemSharedWith('test', 'test.txt')); + $this->assertSame(array(), OCP\Share::getItemSharedWith('test', 'test.txt')); OC_User::setUserId($this->user3); - $this->assertFalse(OCP\Share::getItemSharedWith('test', 'test.txt')); + $this->assertSame(array(), OCP\Share::getItemSharedWith('test', 'test.txt')); // Attempt target conflict OC_User::setUserId($this->user1); @@ -325,7 +325,7 @@ class Test_Share extends PHPUnit_Framework_TestCase { ); OC_User::setUserId($this->user2); - $this->assertFalse( + $this->assertSame(array(), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE), 'Failed asserting that user 2 no longer has access to test.txt after expiration.' ); @@ -526,13 +526,13 @@ class Test_Share extends PHPUnit_Framework_TestCase { ); OC_User::setUserId($this->user2); - $this->assertFalse( + $this->assertSame(array(), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE), 'Failed asserting that user 2 no longer has access to test.txt after expiration.' ); OC_User::setUserId($this->user3); - $this->assertFalse( + $this->assertSame(array(), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE), 'Failed asserting that user 3 no longer has access to test.txt after expiration.' ); diff --git a/tests/lib/urlgenerator.php b/tests/lib/urlgenerator.php index 875a7f06580..8e605d88f32 100644 --- a/tests/lib/urlgenerator.php +++ b/tests/lib/urlgenerator.php @@ -12,17 +12,32 @@ class Test_Urlgenerator extends PHPUnit_Framework_TestCase { /** * @small * @brief test absolute URL construction - * @dataProvider provideURLs + * @dataProvider provideDocRootURLs */ - function testGetAbsoluteURL($url, $expectedResult) { + function testGetAbsoluteURLDocRoot($url, $expectedResult) { + \OC::$WEBROOT = ''; $urlGenerator = new \OC\URLGenerator(null); $result = $urlGenerator->getAbsoluteURL($url); $this->assertEquals($expectedResult, $result); } - public function provideURLs() { + /** + * @small + * @brief test absolute URL construction + * @dataProvider provideSubDirURLs + */ + function testGetAbsoluteURLSubDir($url, $expectedResult) { + + \OC::$WEBROOT = '/owncloud'; + $urlGenerator = new \OC\URLGenerator(null); + $result = $urlGenerator->getAbsoluteURL($url); + + $this->assertEquals($expectedResult, $result); + } + + public function provideDocRootURLs() { return array( array("index.php", "http://localhost/index.php"), array("/index.php", "http://localhost/index.php"), @@ -30,5 +45,14 @@ class Test_Urlgenerator extends PHPUnit_Framework_TestCase { array("apps/index.php", "http://localhost/apps/index.php"), ); } + + public function provideSubDirURLs() { + return array( + array("index.php", "http://localhost/owncloud/index.php"), + array("/index.php", "http://localhost/owncloud/index.php"), + array("/apps/index.php", "http://localhost/owncloud/apps/index.php"), + array("apps/index.php", "http://localhost/owncloud/apps/index.php"), + ); + } } |